Unable to retrieve all documents from elastic

Hello, I am fairly new to elastic. As a test, I loaded 500 documents into elasticsearch (6.4.2) via a bulk query. When I run a query/match_all to see them (e.g. in Kibana) I only get 10 - like so (excerpt below). Why am I not seeing all 500? The logs do not show anything unusual and the bulk load query returned no errors when I ran it. Any help would be appreciated on what to investigate further. Thanks!

{
"took": 2,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 500,
"max_score": 1,
"hits": [
{
"_index": "regions",
"_type": "region",
"_id": "F_naNWgBSUyiJincrQbS",
"_score": 1,
"_source": {
"segID": "testsegmentation::31d0635b-8012-4cba-9ec5-d813bd80de46",
"segChr": "1",
"segStart": 29737,
"segEnd": 30137
}
},
{
"_index": "regions",
"_type": "region",
"_id": "GvnaNWgBSUyiJincrQbS",
"_score": 1,
"_source": {
"segID": "testsegmentation::38c746c5-9136-4044-90e2-5832ed36f9b3",
"segChr": "1",
"segStart": 36937,
"segEnd": 57937
}
}

Read https://www.elastic.co/guide/en/elasticsearch/reference/6.5/search-request-from-size.html

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.