我正在尝试使用 jdbc River 将数据输入 Elastic Search,但这条河并未获取所有数据。我在 MySQL 表中有 450000 条记录,但在 ES 中我只得到大约 230000 条记录。
这是我的 ES 河流设置:
curl -XPUT 'localhost:9200/_river/my_jdbc_river/_meta' -d '{
"type" : "jdbc",
"jdbc" : {
"url" : "jdbc:mysql://localhost:3306/test",
"user" : "test",
"password" : "test",
"sql" : "select * from test" },
"index":{
"index" : "test",
"bulk_size":600,
"max_bulk_requests":10,
"bulk_timeout":"5s",
"autocommit":"true"
}
}'
我查看了 Elastic Search 文档,但找不到解决方案。我正在使用river-jdbc-1.1.0.2 版本。