我们有一些elasticsearch的文档。文档的唯一性是由一些字段共同决定的,java多线程判断是否存在和插入时如何保证唯一性。
之前不知道有什么好的方法,所以就写了一个方法:我猜是否存在,如果不存在我就插入,这个方法是通过syncronized来修改的。但我发现这是一种非常低效的做法。
/**
* @param document
*/
synchronized void selectAndInsert(Map<String, Object> document){
//Determine if it exists, insert it if it does not exist
}
我的映射如下: {"properties":{"pt_number":{ "type":"keyword" }, "pt_name":{"type":"keyword" },"pt_longitude":{ "type":"文本"},"pt_latitude":{"type":"text" },"rd_code":{ "type":"text" }, "rd_name":{ "type":"keyword"}, "area_code": {“类型”:“关键字”} ...等等 }}
唯一性由area_code、pt_longitude 和pt_latitude 确定。插入文档时我会根据area_code、pt-longitude、pt_latitude判断是否存在,不存在则插入。java多线程运行时如何保证文档的唯一性?
这个问题困扰了我一段时间。谁能帮助我,我将非常感激。
千万里不及你
九州编程
繁花不似锦
相关分类