This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
ES Aggregation to get result same as result from this SQL | |
SELECT | |
fieldA, COUNT(fieldA), SUM(fieldB), AVG(fieldB) | |
from table | |
group by fieldA; | |
*/ | |
//検索クエリの発行 | |
SearchRequestBuilder searchReq = client.prepareSearch("sample_index"); | |
searchReq.setTypes("sample_types"); |