How to return big result for analysis

I want to perform full-text search against elasticsearch then i want all the possible result because i want to perform some computational heavy analysis on that data in real time and get the result back, my question is can elasticsearch will fast enough to return all result in single go?, if not then how to approach this problem.

You will most likely need to use the scroll API which means that it won't be in one go but will require multiple requests.

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