当 JDBC River 进行轮询时,管家作业会删除大量记录。
有人知道它的解决方案。我想停止删除记录。
如需更多参考:- https://github.com/jprante/elasticsearch-river-jdbc/issues/61
当 JDBC River 进行轮询时,管家作业会删除大量记录。
有人知道它的解决方案。我想停止删除记录。
如需更多参考:- https://github.com/jprante/elasticsearch-river-jdbc/issues/61
versioning: false
如果在JDBC River 参数中禁用了版本控制,则内务处理工作将停止,这是默认设置。
{
"jdbc" :{
"strategy" : "oneshot",
"driver" : null,
"url" : null,
"user" : null,
"password" : null,
"sql" : null,
"sqlparams" : null,
"poll" : "1h",
"rounding" : null,
"scale" : 0,
"autocommit" : false,
"fetchsize" : 10,
"max_rows" : 0,
"max_retries" : 3,
"max_retries_wait" : "10s",
"locale" : Locale.getDefault().toLanguageTag(),
"digesting" : true,
"acksql" : null,
"acksqlparams" : null
},
"index" : {
"index" : "jdbc",
"type" : "jdbc",
"bulk_size" : 100,
"max_bulk_requests" : 30,
"index_settings" : null,
"type_mapping" : null,
"versioning" : false,
"acknowledge" : false,
}
}
"versioning": true
是否应在 Elasticsearch 索引文档中使用版本控制
通过参考:- https://github.com/jprante/elasticsearch-river-jdbc/issues/133#issuecomment-30148180