I think get() is just a shortcut for execute().actionGet()

Anyway, problem solved, it was a problem with my mapping not applying 
correctly with the Java API.  Looking into that now.

I'm doing this at the start of the tests to apply the mapping, but its not 
being applied.

            
client.admin().indices().prepareCreate(indexName).addMapping("product", 
mappingJson).execute().actionGet();
-Matt

On Tuesday, June 24, 2014 6:35:32 AM UTC+12, Brian wrote:
>
> Perhaps you need to insert the execute().actionGet() method calls, as 
> below?
>
> CountRequestBuilder builder = client.prepareCount(indexName)
> .setTypes("product")
> .setQuery(getQuery(req));
>
> *builder.execute().actionGet()*
>
> return builder.get().getCount();
>
>
> I don't use Count, but I have used Query and Update and Delete and they 
> all work similarly in this regard. Just a guess.
>
> Brian
>

-- 
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/5c121d44-81df-4b1f-bdeb-a2fe6ab9ed5c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to