Update index.md (#4762)
Addresses https://github.com/opensearch-project/documentation-website/issues/4706 Signed-off-by: Heather Halter <HDHALTER@AMAZON.COM>
This commit is contained in:
parent
e9be98f0e0
commit
03fdf3d130
|
@ -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.
|
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
|
## Introduction to indexing
|
||||||
|
|
Loading…
Reference in New Issue