0

我将文档插入弹性搜索并尝试对所有文档中存在的给定字段进行排序。但是,每当我更新文档时,索引似乎会中断,并且我没有得到排序顺序。我通过执行以下操作创建了一个索引:

self.conn = ES(server=url)
self.conn.create_index("test.test")

例如,我想对“_ts”字段进行排序。给定以下字典和代码:

def update_or_insert(doc):
    doc_type = "string"
    index = doc['ns']
    doc['_id'] = str(doc['_id'])
    doc_id = doc['_id']        
    self.conn.index(doc, index, doc_type, doc_id)

to_insert = [
    {'_id': '4', 'name': 'John', '_ts': 3, 'ns':'test.test'},
    {'_id': '5', 'name': 'Paul', '_ts': 2', ns':'test.test'},
    {'_id': '6', 'name': 'George', '_ts': 1', ns':'test.test'},
    {'_id': '6', 'name': 'Ringo', '_ts': 4, 'ns':'test.test'} ,
] 

for x in to_insert: 
   update_or_insert(x)

result = self.conn.search(q, sort={'_ts:desc'})    
for it in result:
  print it

我希望得到“Ringo,John,Paul”的订单,而是得到“John,Paul,Ringo”的订单。为什么会出现这种情况?我看到这里有一个错误: https ://github.com/elasticsearch/elasticsearch/issues/3078 但这似乎会影响 ES .90.0,我正在使用 .90.1。

4

1 回答 1

1

它应该是:

sort={"_ts":"desc"}
于 2013-12-09T15:50:25.130 回答