Firebase error

failed to index firebase/locations/-XXXXXXXX: [remote_transport_exception]

Is this a firebase error or and Elastic Search error

What's firebase?

"Limit of total fields [1000] in index [firebase] has been exceeded"},"status":400}"}

  1. I run flashlight-master to extract firebase data and inject it into elasticSearch.
  2. There are 2053 fields that need injected. I need to increase the total field count.

PUT firebase
{
"settings" :
{
"index.mapping.total_fields.limit": 2000
}
}

When I try to change limit to 2000, I receive an error that the index already exists.

It is googles real time database. I use flashlight-master to connect to
firebase and inject data into elasticsearch

{
"error": {
"root_cause": [
{
"type": "index_already_exists_exception",
"reason": "index [firebase/1GmNjEXhQSezEA_S3ZHprQ] already exists",
"index_uuid": "1GmNjEXhQSezEA_S3ZHprQ",
"index": "firebase"
}
],
"type": "index_already_exists_exception",
"reason": "index [firebase/1GmNjEXhQSezEA_S3ZHprQ] already exists",
"index_uuid": "1GmNjEXhQSezEA_S3ZHprQ",
"index": "firebase"
},
"status": 400
}

DELETE firebase

does not delete the index

I create an Index pattern called firebase. It had 2053 fields. If I do a get on firebase, I can see all the fields. When I try to import data from firebase into the elasticsearch I get an too many fields error.

This Put final worked!

PUT firebase/_settings
{
"index.mapping.total_fields.limit": 2200
}

Yes that is correct.

PUT INDEXNAME/_settings
{
"index.mapping.total_fields.limit": 2000
}

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