Index_out_of_bounds_exception

Hello All,

I have a query that was working but all the sudden it is returning index_out_of_bounds_exception. The document has a nested field events .

I ran this directly from Kibana Elasticsearch 6.

GET event_lists/_search
{
  "query": 
    {
        "bool": {
            "must": [
                {
                    "match": {"_id": "my_id"}
                },
                {
                    "nested": {
                        "path": "events",
                        "query": {
                            "bool": {
                                "must": [{
                                             "range": {
                                                 "events.starts_at": {
                                                     "gte": "2022-08-03",
                                                     "lte": "2022-08-06",
                                                     "time_zone": "-05:00"
                                                 }
                                             }
                                         }]
                            }
                        },
                        "inner_hits": {
                          "from": 0,
                          "size": 10
                        }
                    }
                }
                
            ]
        }
    }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.