_shards problem when create query

Hi!!! I have response like this, when I create a query
{
"took": 3568,
"timed_out": false,
"_shards": {
"total": 20,
"successful": 10,
"failed": 10,
"failures": [
{
"index": "mygame",
"shard": 0,
"status": 500,
"reason": "QueryPhaseExecutionException[[mygame][0]: query[filtered(message:craftcard)->cache(_type:logs)],from[0],size[10],sort[<custom:"@timestamp": org.elasticsearch.index.fielddata.fieldcomparator.LongValuesComparatorSource@4ef480a>!]: Query Failed [Failed to execute main query]]; nested: ElasticsearchException[org.elasticsearch.common.breaker.CircuitBreakingException: [PARENT] Data too large, data for [@timestamp] would be larger than limit of [17990051430/16.7gb]]; nested: UncheckedExecutionException[org.elasticsearch.common.breaker.CircuitBreakingException: [PARENT] Data too large, data for [@timestamp] would be larger than limit of [17990051430/16.7gb]]; nested: CircuitBreakingException[[PARENT] Data too large, data for [@timestamp] would be larger than limit of [17990051430/16.7gb]]; "
},
what is the problem?

See https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules-fielddata.html#circuit-breaker

Basically you have too much data for the amount of heap you have.