Hi,
I have a doubt in case of Facets. For the Facets in which the
size was unaware, For Example
searchRequestBuilder.addFacet(FacetBuilders.termsFacet("namecount").field("
namesort").size(10);
response = searchRequestBuilder.execute().actionGet();
Here I get only 10 Facets. Is there any other method to get the
entire
Facets in which the size is unaware or the facets for the complete
response?.
Let us consider,
Name Value
A 11
B 3
A 4
C 7
C 4
D 33
.
.
.
.
etc
For this if I want to get the Facets of size 3
searchRequestBuilder.addFacet(FacetBuilders.termsFacet("namecount").field("
namesort").size(3);
response = searchRequestBuilder.execute().actionGet();
I will get the Facets as
"facets" : {
"namecount" : {
"_type" : "terms",
"missing" : 0,
"total" : 280,
"other" : 0,
"terms" : [ {
"term" : "",
"count" : 259
}, {
"term" : "A",
"count" :2
}, {
"term" : "C",
"count" : 2
}, {
"term" : "B",
"count" : 1
},
Here I have infinite set of Facets in the response ...Is there any
other method to get the
Facets of all response?
Hi,
I have a doubt in case of Facets. For the Facets in which the
size was unaware, For Example
searchRequestBuilder.addFacet(FacetBuilders.termsFacet("namecount").field("
namesort").size(10);
response = searchRequestBuilder.execute().actionGet();
Here I get only 10 Facets. Is there any other method to get the
entire
Facets in which the size is unaware or the facets for the complete
response?.
Let us consider,
Name Value
A 11
B 3
A 4
C 7
C 4
D 33
.
.
.
.
etc
For this if I want to get the Facets of size 3
searchRequestBuilder.addFacet(FacetBuilders.termsFacet("namecount").field("
namesort").size(3);
response = searchRequestBuilder.execute().actionGet();
I will get the Facets as
"facets" : {
"namecount" : {
"_type" : "terms",
"missing" : 0,
"total" : 280,
"other" : 0,
"terms" : [ {
"term" : "",
"count" : 259
}, {
"term" : "A",
"count" :2
}, {
"term" : "C",
"count" : 2
}, {
"term" : "B",
"count" : 1
},
Here I have infinite set of Facets in the response ...Is there any
other method to get the
Facets of all response?
namesort").size(10);
response = searchRequestBuilder.execute().actionGet();
Here I get only 10 Facets. Is there any other method to get the
entire
Facets in which the size is unaware or the facets for the complete
response?.
Let us consider,
Name Value
A 11
B 3
A 4
C 7
C 4
D 33
.
.
.
.
etc
For this if I want to get the Facets of size 3
namesort").size(3);
response = searchRequestBuilder.execute().actionGet();
I will get the Facets as
"facets" : {
"namecount" : {
"_type" : "terms",
"missing" : 0,
"total" : 280,
"other" : 0,
"terms" : [ {
"term" : "",
"count" : 259
}, {
"term" : "A",
"count" :2
}, {
"term" : "C",
"count" : 2
}, {
"term" : "B",
"count" : 1
},
Here I have infinite set of Facets in the response ...Is there any
other method to get the
Facets of all response?
namesort").size(10);
response = searchRequestBuilder.execute().actionGet();
Here I get only 10 Facets. Is there any other method to get the
entire
Facets in which the size is unaware or the facets for the complete
response?.
Let us consider,
Name Value
A 11
B 3
A 4
C 7
C 4
D 33
.
.
.
.
etc
For this if I want to get the Facets of size 3
namesort").size(3);
response = searchRequestBuilder.execute().actionGet();
I will get the Facets as
"facets" : {
"namecount" : {
"_type" : "terms",
"missing" : 0,
"total" : 280,
"other" : 0,
"terms" : [ {
"term" : "",
"count" : 259
}, {
"term" : "A",
"count" :2
}, {
"term" : "C",
"count" : 2
}, {
"term" : "B",
"count" : 1
},
Here I have infinite set of Facets in the response ...Is there any
other method to get the
Facets of all response?
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.