Is it possible to run a Neo4j cluster with strong consistency? -
the docs of neo4j state when running in ha mode, eventual consistency. quote page:
all updates propagate master other slaves write 1 slave may not visible on other slaves
my question is: there configuration allow me write cluster strong consistency, of course @ cost of reduced performance? i'm looking sort of active-passive failover cluster configuration.
there such config option. ha.tx_push_factor
determines how many slaves transaction should pushed synchronously. when setting ha.tx_push_factor=<clustersize>-1
have immediate full consistency.
Comments
Post a Comment