alt.hn

6/6/2026 at 7:01:32 PM

Rayforce

https://github.com/RayforceDB/rayforce

by tosh

6/9/2026 at 7:14:19 PM

Any relation to the smash hit SHMUP of the same name?

by arikrahman

6/9/2026 at 7:30:29 PM

No

by viktorsovietov

6/9/2026 at 7:53:49 PM

> Rayforce is a library you link, not a server you deploy. The C API is small enough to wrap from any language with an FFI.

I'm familiar with large-scale, commercial, client-server use cases for columnar analytics and graph traversal but what is the use case for an embedded server like this?

by cma256

6/10/2026 at 2:33:06 AM

Perhaps the fact that 99+% of today's workloads could be running on the client if it were as easy as shipping Rayforce and the data directly to the client.

Besides that, pure C that you can embed into your app is much easier to deploy for some (and likely 100x more performant) than stuff that comes via Helm chart [cries in JVM 'big'-data solutions]

by 392

6/9/2026 at 7:59:48 PM

[dead]

by hetoku

6/9/2026 at 7:09:33 PM

I thought "morsel-driven" was AI slop, but it turns out to be in common usage in the HPC world. So I learned something from this post!

by noelwelsh

6/9/2026 at 7:29:48 PM

afaiu morsel-driven means the workload gets turned into 'smallish' chunks (morsels)

instead of having to pre-allocate upfront (e.g. 4 nodes get 1/4 each) it is more granular and dynamic

a worker that's "done" can request another morsel

pragmatic approach because nodes might not all be equally fast (cache, cpu frequency, throttling, …) and also some morsel workloads take longer than others depending on the values they contain and what kind of work needs to get done

so this approach tends to balance out nicely

I'm sure someone else can explain it better / correct me (please do!)

by tosh

6/9/2026 at 8:30:22 PM

When I read up, it sounded like the same idea as work-stealing to me. Not surprising that different fields come up with the same idea under different terminology.

by noelwelsh

6/10/2026 at 2:24:30 AM

DuckDB and LadybugDB use the same terminology to describe internals.

by adsharma

6/9/2026 at 7:44:52 PM

Exactly!

by hetoku

6/9/2026 at 7:44:30 PM

[flagged]

by hetoku