Hi All,

I recently upgraded my ElasticSearch cluster to 1.1.0 in order to utilize 
the built in cardinality aggregation. However, whenever I try to run any 
sort of cardinality aggregation, I get back: 

{
   
   - error: SearchPhaseExecutionException[Failed to execute phase 
   [query_fetch], all shards failed; shardFailures 
   {[QOCVDBG8QrCX8arlUl6gGg][w2o_tweet][0]: 
   
RemoteTransportException[[customsearch-elastic-dev-2][inet[/10.146.214.50:9300]][search/phase/query+fetch]];
 
   nested: 
   
ElasticsearchException[org.elasticsearch.common.util.BigArrays.newObjectArray(JLorg/elasticsearch/cache/recycler/PageCacheRecycler;)Lorg/elasticsearch/common/util/ObjectArray;];
 
   nested: 
   
NoSuchMethodError[org.elasticsearch.common.util.BigArrays.newObjectArray(JLorg/elasticsearch/cache/recycler/PageCacheRecycler;)Lorg/elasticsearch/common/util/ObjectArray;];
 
   }]
   - status: 500

}

My query looks like this:

{
  "size": 0,
  "query": {
    "filtered": {
      "query": {
        "match_all": {}
      },
      "filter": {
        "and": {
          "filters": [
            {
              "range": {
                "tweet.created_at": {
                  "from": 1392613200000,
                  "to": 1396843199999,
                  "include_lower": true,
                  "include_upper": true
                },
                "_cache": true
              }
            }
          ]
        }
      }
    }
  },
  "aggs": {
    "congress_unique": {
      "filter": {
        "term": {
          "user.screen_name": "CongPalazzo"
        }
      },
      "aggs": {
        "unique": {
          "cardinality": {
            "field": "entities.hashtags.text"
          }
        }
      }
    }
  }
}

I've checked my mappings and everything looks like it should be good to go. 
Any ideas?

Thanks,
Robert

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/3f6d4148-ede7-48ab-a213-3bde272b515b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to