Index default sorting

Hi, this is not possible afaik. Documents are not stored in any sorted order in ES, but can be sorted at search time. The whole point of scan & scroll is to gain speed by not doing sorting when retrieving large amounts of data. However, it is possible to just use the scroll without scan on a search, but this will likely suffer from the known problems for deep pagination.