We need to add 130 MB data into a searchable string field in the index,
However API has limit of 16 MB as mentioned into limit page listed below, besides, since its per call it;
"....Primitive collection example: If the document contains a field "Tags" of type Collection(Edm.String) with value ["budget"], and you execute a merge with value ["economy", "pool"] for "Tags", the final value of the "Tags" field will be ["economy", "pool"]. It will not be ["budget", "economy", "pool"]...."
Question: Can I divide the data across multiple calls and upload full 130 MB data into a single index document? as that data belong to one record/entity on our index.
PS: merge at below link seems performing the replace instead of addition