Compatibility with AWS Open Search Serverless (AOSS)

Created on 18 March 2025, 18 days ago

Problem/Motivation

The AWS Open Search Serverless (AOSS) has a few restrictions on top of the generic Open Search for performance and security reasons:
- The ping() method doesn't work - The ping is a HEAD request to root (i.e. /). However AOSS does not allow any request to root for security reason.
- index open/close APIs - The module tries to close the index and update the settings and open the index. The open ( & close methods are disabled

You can see the list of available APIs of AOSS at https://docs.aws.amazon.com/opensearch-service/latest/developerguide/ser...

Steps to reproduce

Proposed resolution

- ping() - We could do a GET /_cat/indices which tells whether the server is up or not.
- both POST /<index>/_open and and POST /<index>/_open and are called in BackendClient::updateSettings(). we could add another backend specific to AOSS and remove the open/close calls.

We might need to decide where would we make these changes as this is not related to main module and search_api_aws_signature_connector is too specific to AWS connector related. Either we could add a new sub module for AOSS (search_api_aoss) or I am happy to have it as a separate contrib module.

Remaining tasks

User interface changes

API changes

Data model changes

✨ Feature request
Status

Active

Version

3.0

Component

Code

Created by

πŸ‡¬πŸ‡§United Kingdom vijaycs85 London, UK

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024