From cdda4ec1794b6a241fdc8f2c128f0ee5fe52131d Mon Sep 17 00:00:00 2001 From: Heather Halter Date: Fri, 11 Aug 2023 14:12:26 -0700 Subject: [PATCH] Update index.md (#4762) Addresses https://github.com/opensearch-project/documentation-website/issues/4706 Signed-off-by: Heather Halter --- _im-plugin/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_im-plugin/index.md b/_im-plugin/index.md index 5804a236664..fd48aa28980 100644 --- a/_im-plugin/index.md +++ b/_im-plugin/index.md @@ -16,7 +16,7 @@ You index data using the OpenSearch REST API. Two APIs exist: the index API and For situations in which new data arrives incrementally (for example, customer orders from a small business), you might use the index API to add documents individually as they arrive. For situations in which the flow of data is less frequent (for example, weekly updates to a marketing website), you might prefer to generate a file and send it to the `_bulk` API. For large numbers of documents, lumping requests together and using the `_bulk` API offers superior performance. If your documents are enormous, however, you might need to index them individually. -When indexing documents, the document `_id` must be 512 MB or less in size. +When indexing documents, the document `_id` must be 512 bytes or less in size. ## Introduction to indexing