scalecube-cluster
scalecube-cluster copied to clipboard
ScaleCube Cluster is a lightweight Java VM implementation of SWIM: Scalable Weakly-consistent Infection-style Process Group Membership Protocol. features cluster membership, failure detection, and gos...
Along the way, `io.netty` transitive dependencies are upgraded as well. Current `io.netty` dependencies have CVEs.
Scalecube-cluster project hava README with examples: ```java // Start cluster node Alice as a seed node of the cluster, listen and print all incoming messages Cluster alice = Cluster.joinAwait(); alice.listen().subscribe(msg...
clusterConfig.externalPort What's the purpose of setting the port number? The actual transport startup port number is not set by externalport
Subj. As it appeared it's not always clear that via TransportConfig client can redefine default cluster transport settings. Create an example in examples module to demonstrate exactly TranspotrConfig settings. In...
currently metadata store is kept in memory. alternative is to keep metadata store offheap (mem-map-file?) option can be to be able to choose/change/plug a store
1. ClusterConfig contains configuration without javadoc and therefore without source code it is impossible to get meaning of most of configuration. 2. Add TimeUnit to all duration entries. It is...