crate版本:1.1.3 将数据插入包后,我发送一个密钥到activemq立即查询这个数据,但不幸的是,它每次都失败了,所以我睡了2000ms的线程,它运行了,所以我想集群需要一些时间来同步数据 这是crate.yaml:
psql.enabled: true
psql.port: 33892
prepareThreshold: 0
http.max_content_length: 150mb
indices.store.throttle.max_bytes_per_sec: 150mb
threadpool.bulk.type: fixed
threadpool.bulk.size: 128
threadpool.bulk.queue_size: 5000
cluster.name: EIn_Cluster
node.name: dscn1
index.number_of_replicas: 2
path.conf: /home/hadmin/crate/config
path.data: /home/hadmin/data/crate
path.work: /home/hadmin/data/crate/tmp
path.logs: /home/hadmin/data/crate/logs
path.plugins: /home/hadmin/crate/plugins
blobs.path: /home/hadmin/data/crate/crate_blob_data/disk
network.host: 192.168.13.50
gateway.recover_after_nodes: 3
discovery.zen.minimum_master_nodes: 3
gateway.expected_nodes: 3
discovery.zen.ping.timeout: 10s
discovery.zen.fd.ping_interval: 10s
#transport.tcp.port: 4399
discovery.zen.ping.unicast.hosts:
- dscn1:4300
- dscn2:4300
- dscn3:4300
这与多区域设置有关吗?或者我想念一些设置? 如何避免这个
感谢
答案 0 :(得分:1)
由于crate最终是一致的,并非所有插入的文档都可立即用于查询。新/已更改文档的可用性取决于不同的影响,最重要的是配置的refresh_interval
(请参阅https://crate.io/docs/reference/sql/reference/create_table.html#sql-ref-refresh-interval)。
但请注意,降低此值会导致摄取性能下降。
您也可以使用refresh table
命令强制刷新,请参阅https://crate.io/docs/reference/sql/refresh.html,如果不经常插入(例如,在插入完成后刷新,在发出下一个语句之前刷新),这是推荐的方法)。