Skip to main content

AWS CDK based custom resource that manages an Opensearch index.

Project description

B.CfnOpenSearchIndex

b-cfn-opensearch-index - AWS CloudFormation custom resource that handles the creation, update and removals of OpenSearch indexes.

Description

While you can create an OpenSearch index just by using a document as a base, using this AWS CDK resource lets you create an empty index for later use.
The resource supports update action, however, there are some limitations (please refer to "Known limits").
Update action triggers reindexing of documents by default to prevent data loss.
The resource also supports delete action, where removal of created index removes all previously created indexes.
Attention removal of indexes destroys all indexed documents.

Remarks

Biomapas aims to modernise life-science industry by sharing its IT knowledge with other companies and the community.

Related technology

  • Python 3.8
  • OpenSearch
  • Amazon Web Services (AWS)
  • AWS CloudFormation
  • AWS Cloud Development Kit (CDK)

Assumptions

  • You have basic-good knowledge in python programming.
  • You have basic-good knowledge in AWS and CloudFormation.
  • You have basic-good knowledge in OpenSearch.

Useful sources

Install

Use the package manager pip to install this package. This project is not in the PyPi repository yet. Install directly from source or PyPI.

pip install .

Or

pip install b-cfn-opensearch-index

Usage & Examples

Usage of this AWS CloudFormation custom resource is quite simple. Initialize it within any valid CDK scope giving a unique name, OpenSearch domain endpoint, index name prefix, and settings/mappings of the index.

Bellow is an example:

from aws_cdk.core import Stack

from b_cfn_opensearch_index.resource import OpensearchIndex


class ExampleOpensearchIndexStack(Stack):
    def __init__(self, scope: Stack, opensearch_domain_endpoint: str) -> None:
        super().__init__(scope=scope, id='ExampleOpensearchIndexStack')

        # Define index settings.
        index_settings = {
             'index.refresh_interval': '2s',
        }

        # Define index mappings.
        index_mappings = {
            'id': {
                'type': 'keyword'
            },
            'author': {
                'type': 'keyword'
            },
            'title': {
                'type': 'keyword'
            },
            'content': {
                'type': 'text'
            },
            'timestamp': {
                'type': 'date',
                'format': 'yyyy-MM-dd HH:mm:ss||epoch_millis'
            },
        }

        # Initialize AWS CloudFormation custom resource using given OpenSearch
        # domain endpoint with defined settings and mappings of the index.
        self.index = OpensearchIndex(
            scope=self,
            name='OpensearchIndex',
            opensearch_domain_endpoint=opensearch_domain_endpoint,
            index_prefix='example-index-prefix',
            index_settings=index_settings
            index_mapping_settings=index_mappings
        )

In the example above, we created an OpenSearch index with two dictionaries for settings and mappings of the index. More information about settings and mappings of the index can be found here https://opensearch.org/docs/latest/opensearch/rest-api/index-apis/create-index/.

Index prefix can be any string that complies with index naming restrictions listed in section Known limits.

On change of index name (index prefix), reindex of all documents will be triggered. If there is a need to skip reindex of the documents please set reindex parameter with the value False.

self.index = OpensearchIndex(
    scope=self,
    name='OpensearchIndex',
    opensearch_domain_endpoint=opensearch_domain_endpoint,
    index_prefix='example-index-prefix',
    index_settings=index_settings
    index_mapping_settings=index_mappings,
    reindex=False
)

Following parameters are optional and can be omitted:

  • index_settings
  • index_mappings
  • reindex

Known limits

There are some limitations. Currently, reindex of documents is not possible if the OpenSearch domain endpoint changes.

Update settings and mappings of the index have some limitations too:

  • Update of static index settings is not possible. Static index settings can be set only at the moment of index creation.
  • Change of index mappings field types is not possible. Setup of field types only at the moment of index creation. To bypass this limitation, trigger index update by changing index name with new index mappings. (example at Usage & Examples).
  • There are some index naming restrictions. Keep in mind those restriction at the moment of index prefix setup.
    • Index names can’t begin with underscores (_) or hyphens (-).
    • Index names can’t contain spaces, commas, or the following characters:
      :, ", *, +, /, \, |, ?, #, >, or <
      

Testing

This project has integration tests based on pytest. To run tests, simply run:

pytest

Contribution

Found a bug? Want to add or suggest a new feature?
Contributions of any kind are gladly welcome. You may contact us directly, create a pull-request or an issue in github platform. Lets modernize the world together.

Release history

0.0.3

  • Bump versions of the dependencies.

0.0.2

  • Update MANIFEST file. Add layer dependencies.

0.0.1

  • Initial build.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

b_cfn_opensearch_index-0.0.3.tar.gz (21.8 kB view hashes)

Uploaded Source

Built Distribution

b_cfn_opensearch_index-0.0.3-py3-none-any.whl (28.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page