Remote transport exception

"statusCode":400,"response":"{"error":{"root_cause":[{"type":"remote_transport_exception","reason":"[Hk2keL1][127.0.0.1:9300][indices:data/write/index[p]]"}],"type":"illegal_argument_exception","reason":"Limit of total fields [10000] in index [firebase] has been exceeded"},"status":400}"}

I am receiving this error from elastic search and my json string does not have 10000 fields.

But your mapping probably has, no?

I found by increasing my total field count to 20,000 it worked

I need to figure out why value_count is 0

GET firebase*/_search
{
"aggs":
{
"RS_Id_Count" : { "value_count" : {"field" : "RS_Id"}}
}
}

Under Management : the rs_id field shows that is not aggregatable. I don't understand what causes a field to be aggregable

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