Hello folks,
I'm trying to wrap my head a bit around how spicedb dispatch works.
https://authzed.com/blog/consistent-hash-load-balancing-grpc mentions that
> SpiceDB dispatches to the next N "clockwise" nodes in the ring. This N is often called the spread.
And, my understanding is that if N>1 , the request will be dispatched to N nodes, is that right? (BTW, is this were request hedging happens? we race these N requests to other nodes).
The reason I'm wondering this is that I want to know how protected are we from having hot partitions in SpiceDB (not in the underlying cockroachdb), and my understanding is that, if we forward dispatch requests to N nodes, we'd be more protected than if we only dispatched to 1 node that could be congested.