2 Answers
- Newest
- Most votes
- Most comments
4
Hello,
Yes, indexing compute units automatically index data and store it in Amazon S3.
Data Ingestion: Data is written to an OpenSearch Serverless collection.
Indexing: Indexing compute units automatically index the incoming data.
Storage: Indexed segments are stored in Amazon S3.
References Amazon OpenSearch Service Serverless : https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless.html
2
When you ingest data through the OpenSearch serverless collection endpoint, service will use the OCU across AZs and then write it out to Amazon S3. S3 will be the permanent storage for storing the segments.
answered 4 months ago
Relevant content
- Accepted Answerasked a year ago
- Accepted Answerasked 2 years ago
- asked 2 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 8 months ago
So, indexing here is completely different that the concept of indexes (B+ tree indexing, hash based indexing etc). What kind of a data structure (I found some details regarding inverted index on the offcial site: https://opensearch.org/docs/latest/getting-started/intro/ ) is used?