From 61688e00c5dfaef4dd54bd161f898bf224f49c2a Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:29:29 +0530 Subject: [PATCH 01/17] Update plugins.md with semver range support specification Add support for specifying 'dependencies' for a plugin in its plugin-descriptor.properties file. This property allows for specification of a range of OpenSearch versions for plugin compatibility check. Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index b18257cf3e..d287b674e8 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -247,8 +247,24 @@ bin/opensearch-plugin install --batch ## Available plugins -Major, minor, and patch plugin versions must match OpenSearch major, minor, and patch versions in order to be compatible. For example, plugins versions 2.3.0.x work only with OpenSearch 2.3.0. -{: .warning} +### Plugin Compatibility + +A plugin can specify explicit compatibility with a specific OpenSearch version. For example, a plugin with following property in its plugin-descriptor.properties is compatible only with OpenSearch 2.3.0 +```bash +opensearch.version=2.3.0 +``` +Alternately, a plugin can specify a range of compatible OpenSearch versions using the 'dependencies' property in its plugin-descriptor.properties file. Following notations are supported: +- `dependencies={ opensearch: "2.3.0" }` + Plugin is compatible only with OpenSearch version 2.3.0. +- `dependencies={ opensearch: "=2.3.0" }` + Plugin is compatible only with OpenSearch version 2.3.0. +- `dependencies={ opensearch: "~2.3.0" }` + Plugin is compatible with all versions starting from 2.3.0 upto next minor version, i.e. 2.4.0 (exclusive). +- `dependencies={ opensearch: "^2.3.0" }` + Plugin is compatible with all versions starting from 2.3.0 upto next major version, i.e. 3.0.0 (exclusive). + +Only one of `opensearch.version` or `dependencies` properties is allowed to be specified. +{: .note} ### Bundled plugins From f824bada91d5a32eb419b74c495af4efe58dc2e6 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:39:31 +0530 Subject: [PATCH 02/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index d287b674e8..2f3be3507d 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -247,7 +247,9 @@ bin/opensearch-plugin install --batch ## Available plugins -### Plugin Compatibility +OpenSearch provides several bundled plugins and additional plugins. + +### Plugin compatibility A plugin can specify explicit compatibility with a specific OpenSearch version. For example, a plugin with following property in its plugin-descriptor.properties is compatible only with OpenSearch 2.3.0 ```bash From 76273b682b965dbc730127fcf77fd71080d6e9dc Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:39:55 +0530 Subject: [PATCH 03/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 2f3be3507d..2acc7ab6fa 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -251,7 +251,8 @@ OpenSearch provides several bundled plugins and additional plugins. ### Plugin compatibility -A plugin can specify explicit compatibility with a specific OpenSearch version. For example, a plugin with following property in its plugin-descriptor.properties is compatible only with OpenSearch 2.3.0 +A plugin can explicitly specify compatibility with a specific OpenSearch version by listing that version in its `plugin-descriptor.properties` file. For example, a plugin with the following property is compatible only with OpenSearch 2.3.0: + ```bash opensearch.version=2.3.0 ``` From 69d12d56016209e65721cbce69305a7583aa735a Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:40:16 +0530 Subject: [PATCH 04/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 2acc7ab6fa..46e0aa50bb 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -256,7 +256,7 @@ A plugin can explicitly specify compatibility with a specific OpenSearch version ```bash opensearch.version=2.3.0 ``` -Alternately, a plugin can specify a range of compatible OpenSearch versions using the 'dependencies' property in its plugin-descriptor.properties file. Following notations are supported: +Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: - `dependencies={ opensearch: "2.3.0" }` Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "=2.3.0" }` From 648a0e6266286b913fb5e5ee96b0075f0390d0e3 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:40:31 +0530 Subject: [PATCH 05/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 46e0aa50bb..fd2547867b 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -253,7 +253,7 @@ OpenSearch provides several bundled plugins and additional plugins. A plugin can explicitly specify compatibility with a specific OpenSearch version by listing that version in its `plugin-descriptor.properties` file. For example, a plugin with the following property is compatible only with OpenSearch 2.3.0: -```bash +```properties opensearch.version=2.3.0 ``` Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: From 13b66c4f1aee61898197f894386c43a3c8f29701 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:41:37 +0530 Subject: [PATCH 06/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index fd2547867b..571a829ab6 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -266,7 +266,7 @@ Alternatively, a plugin can specify a range of compatible OpenSearch versions by - `dependencies={ opensearch: "^2.3.0" }` Plugin is compatible with all versions starting from 2.3.0 upto next major version, i.e. 3.0.0 (exclusive). -Only one of `opensearch.version` or `dependencies` properties is allowed to be specified. +You can only specify one of `opensearch.version` or `dependencies` properties. {: .note} ### Bundled plugins From 49acf83a637a30124b714b8b5a1aee0733a622c2 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:42:27 +0530 Subject: [PATCH 07/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 571a829ab6..ecf8bf1acf 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -261,7 +261,7 @@ Alternatively, a plugin can specify a range of compatible OpenSearch versions by Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "=2.3.0" }` Plugin is compatible only with OpenSearch version 2.3.0. -- `dependencies={ opensearch: "~2.3.0" }` +- `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). Plugin is compatible with all versions starting from 2.3.0 upto next minor version, i.e. 2.4.0 (exclusive). - `dependencies={ opensearch: "^2.3.0" }` Plugin is compatible with all versions starting from 2.3.0 upto next major version, i.e. 3.0.0 (exclusive). From 0357c7883c005f7462da8a1f44eb06be9039a9e3 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:42:34 +0530 Subject: [PATCH 08/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index ecf8bf1acf..954de17247 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -262,7 +262,6 @@ Alternatively, a plugin can specify a range of compatible OpenSearch versions by - `dependencies={ opensearch: "=2.3.0" }` Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). - Plugin is compatible with all versions starting from 2.3.0 upto next minor version, i.e. 2.4.0 (exclusive). - `dependencies={ opensearch: "^2.3.0" }` Plugin is compatible with all versions starting from 2.3.0 upto next major version, i.e. 3.0.0 (exclusive). From 8c4ad74fec9fe39fce9b03f1385dab185e0d1e6b Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:42:45 +0530 Subject: [PATCH 09/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 954de17247..6573b8065f 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -262,7 +262,7 @@ Alternatively, a plugin can specify a range of compatible OpenSearch versions by - `dependencies={ opensearch: "=2.3.0" }` Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). -- `dependencies={ opensearch: "^2.3.0" }` +- `dependencies={ opensearch: "^2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next major version, in this example, 3.0.0 (exclusive). Plugin is compatible with all versions starting from 2.3.0 upto next major version, i.e. 3.0.0 (exclusive). You can only specify one of `opensearch.version` or `dependencies` properties. From 20e01f8e08eb48624ff6786fca5f50cc65eb1c66 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:42:52 +0530 Subject: [PATCH 10/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 6573b8065f..df6c41d1a6 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -263,7 +263,6 @@ Alternatively, a plugin can specify a range of compatible OpenSearch versions by Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). - `dependencies={ opensearch: "^2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next major version, in this example, 3.0.0 (exclusive). - Plugin is compatible with all versions starting from 2.3.0 upto next major version, i.e. 3.0.0 (exclusive). You can only specify one of `opensearch.version` or `dependencies` properties. {: .note} From 0d377328736bdac47212aa62662f39eccece885a Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:44:17 +0530 Subject: [PATCH 11/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index df6c41d1a6..91079a72be 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -257,7 +257,7 @@ A plugin can explicitly specify compatibility with a specific OpenSearch version opensearch.version=2.3.0 ``` Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: -- `dependencies={ opensearch: "2.3.0" }` +- `dependencies={ opensearch: "2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "=2.3.0" }` Plugin is compatible only with OpenSearch version 2.3.0. From 37a4c283b872dfb8ed227b52696b7630a4760152 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:44:27 +0530 Subject: [PATCH 12/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 91079a72be..64f06ddd73 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -258,7 +258,6 @@ opensearch.version=2.3.0 ``` Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: - `dependencies={ opensearch: "2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. - Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "=2.3.0" }` Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). From a7c44c9c4b39cd8aa2e1f57da2f785fee8bb9a71 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:44:36 +0530 Subject: [PATCH 13/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 64f06ddd73..3de93fecc3 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -258,7 +258,7 @@ opensearch.version=2.3.0 ``` Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: - `dependencies={ opensearch: "2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. -- `dependencies={ opensearch: "=2.3.0" }` +- `dependencies={ opensearch: "=2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). - `dependencies={ opensearch: "^2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next major version, in this example, 3.0.0 (exclusive). From b017795aa1a0bead9e3d8c82184ac93016be33e9 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 10:44:43 +0530 Subject: [PATCH 14/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 3de93fecc3..63888d986b 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -259,7 +259,6 @@ opensearch.version=2.3.0 Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: - `dependencies={ opensearch: "2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "=2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. - Plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). - `dependencies={ opensearch: "^2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next major version, in this example, 3.0.0 (exclusive). From 6e3a9c92d2ed082dd729e898b13bcd24633b1014 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 22:39:28 +0530 Subject: [PATCH 15/17] Update _install-and-configure/plugins.md Co-authored-by: Nathan Bower Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 63888d986b..a6f800152b 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -256,7 +256,7 @@ A plugin can explicitly specify compatibility with a specific OpenSearch version ```properties opensearch.version=2.3.0 ``` -Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file in one of the following notations: +Alternatively, a plugin can specify a range of compatible OpenSearch versions by setting the `dependencies` property in its `plugin-descriptor.properties` file using one of the following notations: - `dependencies={ opensearch: "2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "=2.3.0" }`: The plugin is compatible only with OpenSearch version 2.3.0. - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). From 23b06d78331d64fa0091831394981d4ab952c488 Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 22:39:51 +0530 Subject: [PATCH 16/17] Update _install-and-configure/plugins.md Co-authored-by: Nathan Bower Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index a6f800152b..3b62f8fb99 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -262,7 +262,7 @@ Alternatively, a plugin can specify a range of compatible OpenSearch versions by - `dependencies={ opensearch: "~2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next minor version, in this example, 2.4.0 (exclusive). - `dependencies={ opensearch: "^2.3.0" }`: The plugin is compatible with all versions starting from 2.3.0 up to the next major version, in this example, 3.0.0 (exclusive). -You can only specify one of `opensearch.version` or `dependencies` properties. +You can specify only one of the `opensearch.version` or `dependencies` properties. {: .note} ### Bundled plugins From 71f1da6a69dff7620220416fda8826f40b35261a Mon Sep 17 00:00:00 2001 From: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> Date: Thu, 21 Mar 2024 22:40:04 +0530 Subject: [PATCH 17/17] Update _install-and-configure/plugins.md Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: abseth-amzn <109062147+abseth-amzn@users.noreply.github.com> --- _install-and-configure/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/plugins.md b/_install-and-configure/plugins.md index 3b62f8fb99..6b0b28769e 100644 --- a/_install-and-configure/plugins.md +++ b/_install-and-configure/plugins.md @@ -247,7 +247,7 @@ bin/opensearch-plugin install --batch ## Available plugins -OpenSearch provides several bundled plugins and additional plugins. +OpenSearch provides several bundled and additional plugins. ### Plugin compatibility