I am trying to use elasticsearch to filter millions of data. All data are in one index and I want to access them in a 'direct' way.
What I mean with direct way? Direct way means for example accessing the 700000th element of this index (not by id). Is this possible somehow?
What I tried already:
- from + size works, but seems not to be fast if number of elements > 10000
- Scrolling I didn't try, but it's seem somehow not the right thing for my use-case.
So any other ideas?