I have a question on crate write behavior.
From crate documentation
One reason is that replicas are written synchronously. Thus making a write task wait for the replicas to be written somewhere in a data center hundreds of miles away can lead to noticeable latency and cause the cluster to slow down.
If I have a cluster of three nodes and if one node is down, what will be the behavior when I insert some data? Will it fail or crate will sync the data with the node that was down when it is up?
Regards Albin