I have a File Share Indexer which made using this tutorial
https://learn.microsoft.com/en-us/azure/search/search-file-storage-integration
My File Share has pdf files and I'm using Python SDK for Azure.
The problem now is,
I need to fetch all of the result at once, and the documents there are exceeding 100k.
Since the result is only limited to 100k using skip parameter.
What way I can use to get all of them ?
I cannot use facet or filter.
Facet cannot be done because the field data is added and filled by the indexer.
Filter also not an option since nothing can be filtered. The pdf file name are random.
I searched for continuation token in Python Azure SDK, but it is not clear enough and I have not find the suitable samples yet. Instead of returning continuation token, the search method throw exception.
Please give me more information or alternative solution for this.
Thank you.