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