Upload custom plugins and bundlesedit

There are several cases where you might need your own files to be made available to your Elasticsearch cluster’s nodes:

  • Your own custom plugins, or third-party plugins that are not amongst the officially available plugins.
  • Custom dictionaries, such as synonyms, stop words, compound words, and so on.
  • Cluster configuration files, such as an Identity Provider metadata file used when you secure your clusters with SAML.

To facilitate this, we make it possible to upload a ZIP file that contains the files you want to make available. Uploaded files are stored using Amazon’s highly-available S3 service. This is necessary so we do not have to rely on the availability of third-party services, such as the official plugin repository, when provisioning nodes.

Custom plugins and bundles are collectively referred to as extensions.

Before you beginedit

The selected plugins/bundles are downloaded and provided when a node starts. Changing a plugin does not change it for nodes already running it. Refer to Updating Plugins and Bundles.

With great power comes great responsibility: your plugins can extend your deployment with new functionality, but also break it. Be careful. We obviously cannot guarantee that your custom code works.

You cannot edit or delete a custom extension after it has been used in a deployment. To remove it from your deployment, you can disable the extension and update your deployment configuration.

Uploaded files cannot be bigger than 20MB for most subscription levels, for Platinum and Enterprise the limit is 8GB.

It is important that plugins and dictionaries that you reference in mappings and configurations are available at all times. For example, if you try to upgrade Elasticsearch and de-select a dictionary that is referenced in your mapping, the new nodes will be unable to recover the cluster state and function. This is true even if the dictionary is referenced by an empty index you do not actually use.

Prepare your files for uploadedit

Plugins are uploaded as ZIP files. You need to choose whether your uploaded file should be treated as a plugin or as a bundle. Bundles are not installed as plugins. If you need to upload both a custom plugin and custom dictionaries, upload them separately.

To prepare your files, create one of the following:

Plugins

A plugin is a ZIP file that contains a plugin descriptor file and binaries.

The plugin descriptor file is called either stable-plugin-descriptor.properties for plugins built against the stable plugin API, or plugin-descriptor.properties for plugins built against the classic plugin API. A plugin ZIP file should only contain one plugin descriptor file.

Elasticsearch assumes that the uploaded ZIP file contains binaries. If it finds any source code, it fails with an error message, causing provisioning to fail. Make sure you upload binaries, and not source code.

Plugins larger than 5GB should have the plugin descriptor file at the top of the archive. This order can be achieved by specifying at time of creating the ZIP file:

zip -r name-of-plugin.zip name-of-descriptor-file.properties *
Bundles

The entire content of a bundle is made available to the node by extracting to the Elasticsearch container’s /app/config directory. This is useful to make custom dictionaries available. Dictionaries should be placed in a /dictionaries folder in the root path of your ZIP file.

Here are some examples of bundles:

Script

$ tree .
.
└── scripts
    └── test.js

The script test.js can be referred in queries as "script": "test".

Dictionary of synonyms

$ tree .
.
└── dictionaries
    └── synonyms.txt

The dictionary synonyms.txt can be used as synonyms.txt or using the full path /app/config/synonyms.txt in the synonyms_path of the synonym-filter.

To learn more about analyzing with synonyms, check Synonym token filter and Formatting Synonyms.

GeoIP database bundle

$ tree .
.
└── ingest-geoip
    └── MyGeoLite2-City.mmdb

Note that the extension must be -(City|Country|ASN).mmdb, and it must be a different name than the original file name GeoLite2-City.mmdb which already exists in Elasticsearch Add-On for Heroku. To use this bundle, you can refer it in the GeoIP ingest pipeline as MyGeoLite2-City.mmdb under database_file.

Add your extensionedit

You must upload your files before you can apply them to your cluster configuration:

  1. Log in to the Elasticsearch Add-On for Heroku console.
  2. On the deployments page, select your deployment.
  3. Under Features, select Extensions.
  4. Select Upload extension.
  5. Complete the extension fields, including the Elasticsearch version.

    • Plugins must use full version notation down to the patch level, such as 7.10.1. You cannot use wildcards. This version notation should match the version in your plugin’s plugin descriptor file. For classic plugins, it should also match the target deployment version.
    • Bundles should specify major or minor versions with wildcards, such as 7.* or *. Wildcards are recommended to ensure the bundle is compatible across all versions of these releases.
  6. Select the extension Type.
  7. Under Plugin file, choose the file to upload.
  8. Select Create extension.

After creating your extension, you can enable them for existing Elasticsearch deployments or enable them when creating new deployments.

Creating extensions larger than 200MB should be done through the extensions API.

Update your deployment configurationedit

After uploading your files, you can select to enable them when creating a new Elasticsearch deployment. For existing deployments, you must update your deployment configuration to use the new files:

  1. Log in to the Elasticsearch Add-On for Heroku console.
  2. On the deployments page, select your deployment.

    Narrow your deployments by name, ID, or choose from several other filters. To customize your view, use a combination of filters, or change the format from a grid to a list.

  3. From the Actions dropdown, select Edit deployment.
  4. Select Manage user settings and extensions.
  5. Select the Extensions tab.
  6. Select the custom extension.
  7. Select Back.
  8. Select Save. The Elasticsearch cluster is then updated with new nodes that have the plugin installed.

Update your extensionedit

While you can update the ZIP file for any plugin or bundle, these are downloaded and made available only when a node is started.

You should be careful when updating an extension. If you update an existing extension with a new file, and if the file is broken for some reason, all the nodes could be in trouble, as a restart or move node could make even HA clusters non-available.

If the extension is not in use by any deployments, then you are free to update the files or extension details as much as you like. However, if the extension is in use, and if you need to update it with a new file, it is recommended to create a new extension rather than updating the existing one that is in use.

By following this method, only the one node would be down even if the extension file is faulty. This would ensure that HA clusters remain available.

This method also supports having a test/staging deployment to test out the extension changes before applying them on a production deployment.

You may delete the old extension after updating the deployment successfully.

To update an extension with a new file version,

  1. Prepare a new plugin or bundle.
  2. On the Extensions page, upload a new extension.
  3. Make your new files available by uploading them.
  4. On the deployments page, select your deployment.

    Narrow your deployments by name, ID, or choose from several other filters. To customize your view, use a combination of filters, or change the format from a grid to a list.

  5. From the Actions dropdown, select Edit deployment.
  6. Select Manage user settings and extensions.
  7. Select the Extensions tab.
  8. Select the new extension and de-select the old one.
  9. Select Back.
  10. Select Save.