Hello everyone
For instance, I have the following code:
page = es.search(
index = 'index',
scroll = '2m',
size = 20,
body = {
"size":10,
"query": {"match_all": {}}
}
)
There is size
inside the search
and another size
inside body
. What is the difference and what are the purpose of them?
Thank you