I need to query all the URL in my index using terms since I only want to
get the unique URLs, but the number of returned record is determined by the
size, which for the example below is 10.
What should i do to query all URL in my index without specifying the size?
I actually just used the default query from Kibana below.
You will need to scan over all the documents.
This means that you will need to iterate over every N feeds at a time to
fetch all the documents , it might not be possible in a single call.
It is possible to do this in 2 calls , first to get the size of the index
and second by setting the size of the hits.
But this is highly not recommended and might lead to possible crash. -
I need to query all the URL in my index using terms since I only want to
get the unique URLs, but the number of returned record is determined by the
size, which for the example below is 10.
What should i do to query all URL in my index without specifying the size?
I actually just used the default query from Kibana below.
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.