I have a cluster with 3 physical servers and elasticsearch 1.2.3 installed.

I updated some data at yestoday and then today I got a strange issue:

I query data as following:

{
  "query": {
    "bool": {
      "must": [
        {
          "term": {
            "applicationDateRouting.patentDocumentId": "11387107"
          }
        }
      ],
      "must_not": [],
      "should": []
    }
  },
  "from": 0,
  "size": 10,
  "sort": [],
  "facets": {}
}

then I could get the expected one row data at the first time, then I query 
again, I will get nothing as following response:

{ 
   
   - took: 40
   - timed_out: false
   - _shards: { 
      - total: 10
      - successful: 10
      - failed: 0
   }
   - hits: { 
      - total: 0
      - max_score: null
      - hits: [ ]
   }

}

then, I query again, I get one row, again, nothing, again, one row, again, 
nothing....

In my application, we are using filter instead of query and we got the same 
issue as above.

It seems a bug of elasticsearch, is there any idea about how to analyze 
this issue?

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/b0b75829-e054-445b-a118-874f23ea30cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to