这是我的 JDBC River 命令,用于从数据库中获取所有记录。
localhost:9200/_river/my_update_river/_meta
{
"type" : "jdbc",
"jdbc" : {
"url" : "jdbc:mysql://localhost:3306/admin",
"user" : "root",
"password" : "",
"poll" : "6s",
"index" : "updateauto",
"type" : "users",
"schedule":"0/10 * * ? * *",
"strategy" : "simple",
"sql" : "select * from users"
}
}
当我运行此命令时:我有两个问题:
- 重复记录
当我在数据库中添加新记录时,它不会更新索引文档,而是通过搜索它
{“查询”:{“过滤”:{“过滤”:{“术语”:{“名称”:“测试”}}}}}
这是我的结果。
{
"took" : 4,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 37551,
"max_score" : 1.0,
"hits" : [ {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnNHmMKBTPrby96Jg",
"_score" : 1.0,
"_source":{"ID":23,"Name":"Abudul Rafay","Email":"a","Password":"afasd"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnNHnMKBTPrby96Jk",
"_score" : 1.0,
"_source":{"ID":25,"Name":"r rafay ","Email":"r rafay","Password":"r rafay"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjngk0MKBTPrby96Ka",
"_score" : 1.0,
"_source":{"ID":23,"Name":"Abudul Rafay","Email":"a","Password":"afasd"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjngk0MKBTPrby96Kf",
" _score" : 1.0,
"_source":{"ID":24,"Name":"rafay","Email":"hello","Password":"fasfas"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnjA0MKBTPrby96Kh",
"_score" : 1.0,
"_source":{"ID":23,"Name":"Abudul Rafay","Email":"a","Password":"afasd"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnjA0MKBTPrby96Km",
"_score" : 1.0,
"_source":{"ID":24,"Name":"rafay","Email":"hello","Password":"fasfas"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnZP0MKBTPrby96KD",
"_score" : 1.0,
"_source":{"ID":24,"Name":"rafay","Email":"hello","Password":"fasfas"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnPe-MKBTPrby96Jq",
"_score" : 1.0,
"_source":{"ID":25,"Name":"r rafay ","Email":"r rafay","Password":"r rafay"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnR7NMKBTPrby96Ju",
"_score" : 1.0,
"_source":{"ID":26,"Name":"New User","Email":"New","Password":"new"}
}, {
"_index" : "updateauto",
"_type" : "users",
"_id" : "AUvjnbuLMKBTPrby96KO",
"_score" : 1.0,
"_source":{"ID":26,"Name":"New User","Email":"New","Password":"new"}
} ]
}
}
我想要没有重复记录并且自动更新的结果。