Courier fetch failed to fetch 34 shards

Hi

I was trying to create a visulization with a coordinate map using the geoip.location tag but immediately gets an error in Kibana where it says "Courier fetch: 34 of 54 shards failed." I tried to increase the "thread_pool.search.queue_size" to 10000 on all elastic nodes but that had no effect so that was probably not my issue.

When i look in the elasticlogs i get the following:

org.elasticsearch.transport.RemoteTransportException: [sealikreela03-masterdata][10.229.1.13:9300][indices:data/read/search[phase/query]]
Caused by: org.elasticsearch.index.query.QueryShardException: failed to find geo_point field [geoip.location]

But in my index template i have enabled support for geotagging:

GET _template/logstash-*

"mappings": {
"doc": {
"properties": {
"geoip": {
"dynamic": true,
"properties": {
"ip": {
"type": "ip"
},
"location": {
"type": "geo_point"
},
"latitude": {
"type": "float"
},
"longitude": {
"type": "float"
}
}
}
}
}
}

What could be the issue here? Did i do something wrong when implementing geotagging?

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