Frederic Fortier
Frederic Fortier
I think I figured it out. Basically, after a node joins the cluster, there's a warm up period in which the state is locked. During this time, the follower node...
> If the warm-up is to warm up the store, is it possible to warm up the store before using it? The reason for locking the state machine is at...
What I did intuitively is just raise an error as the follower. ```rust pub(super) async fn append_handler( &self, rpc: AppendEntriesRequest, ) -> Result { if self.is_locked() { return Err(Rejection::msg("I'm too...
I looked into the `example-raft-kv` and adjusted my `RaftNetwork` impl to the following: ```rust async fn send_append_entries( &self, target: u64, rpc: AppendEntriesRequest, ) -> Result { self.do_send_append_entries(target, rpc) .await //...
I'd like to understand this a bit better. I could perhaps submit a PR to suggesting an implementation. My snapshots are actually large and not file-based. The interface works afaik,...
The most urgent aspect of this is probably to confirm the root cause. If the issue is truly limited to the `bytes32` type, I can work around it for now.
I just want to say that I would love this feature: > User created playlists, random and repeat controls The workflow I want is to process new videos from all...
@SerCeMan are you guys planning to take a look at this? For me, the biggest issue is that the styling guide has this indentation scheme for multi-line functions. If you...
This is great @drmingdrmer thanks! How do we line these up for the next release?
Yes. I am using OnDemandGrid. My page size is 200. An implementation of dstore/Store controls the result set. The behavior manifests itself with any kind of attempt at scrolling (even...