There was another user having issues... see below
What version are you on?
You could set the logs to TRACE
and see if there's more detail
You can use this
PUT /_cluster/settings
{
"persistent": {
"logger.org.elasticsearch.ingest.geoip": "TRACE"
}
}
You can turn off with
PUT /_cluster/settings
{
"persistent": {
"logger.org.elasticsearch.ingest.geoip": null
}
}
Then Turn off / on the etc
PUT _cluster/settings
{
"transient": {
"ingest.geoip.downloader.enabled": false
}
}
PUT _cluster/settings
{
"transient": {
"ingest.geoip.downloader.enabled": true
}
}
PUT _cluster/settings
{
"transient": {
"ingest.geoip.downloader.eager.download": true
}
}
The downloader temporarily downloads the files to /tmp which needs to be writeable by the elasticsearch user or perhaps it's out of space
This thread goes through some of the things we tried.
If you read up this thread, you'll see some of the things that we tried.
In the end he loaded manually.