I'm doing research on the capabilities of OpenSearch and I was having trouble finding certain information. Here is the information I had trouble finding or figuring out. Any help or answers to any of these would be greatly appreciated.
For question 2,3,4:
Opensearch save data as a document (similar NoSql)
Maximum Document Size: 100KB
Maximum Indexing Payload Size: 10MB
For question 5:
Results Per Query: 10,000 results
For question 1,2:
Yes, AWS will charge a fee upon instance (which contains vCPU, RAM,..) per hour. Stronger instance you get larger money you will pay
Use the following formula to calculate the maximum active threads for search requests:
int ((# of available_processors * 3) / 2) + 1
Use the following formula to calculate maximum active threads for write requests:
int (# of available_processors)