Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Connectors and ML updates for 2.9 #4554

Merged
merged 28 commits into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0296df9
Add Connectors and ML updates for 2.9
Naarcha-AWS Jul 13, 2023
e6d2dcd
Fix code block
Naarcha-AWS Jul 13, 2023
bf3ced8
Add Connectors and ML updates for 2.9
Naarcha-AWS Jul 13, 2023
492ecd7
Fix code block
Naarcha-AWS Jul 13, 2023
f219674
Add connector settings and examples
Naarcha-AWS Jul 17, 2023
a5c70e3
Add GA warning
Naarcha-AWS Jul 17, 2023
4c39f11
Add final experimental warning
Naarcha-AWS Jul 17, 2023
38b2cdd
Address tech review. Fix typos
Naarcha-AWS Jul 18, 2023
f3343df
Fix bad link. Add next steps section
Naarcha-AWS Jul 18, 2023
52466cc
Fix typo
Naarcha-AWS Jul 18, 2023
42c4a6c
Update cluster-settings.md
Naarcha-AWS Jul 18, 2023
d2b0fde
Apply suggestions from code review
Naarcha-AWS Jul 18, 2023
7b3452e
Apply suggestions from code review
Naarcha-AWS Jul 18, 2023
0c2e079
Apply suggestions from code review
Naarcha-AWS Jul 18, 2023
38c239f
Apply suggestions from code review
Naarcha-AWS Jul 18, 2023
13038e6
Update _ml-commons-plugin/connectors.md
Naarcha-AWS Jul 18, 2023
921dca0
Change cluster values for boolean. Fix typo.
Naarcha-AWS Jul 18, 2023
a761fdb
Apply suggestions from code review
Naarcha-AWS Jul 19, 2023
36b8b47
Fix cluser settings
Naarcha-AWS Jul 19, 2023
07dd6fd
Add missing config options. More technical feedback.
Naarcha-AWS Jul 19, 2023
62cf25c
Adjust cluster setting description.
Naarcha-AWS Jul 19, 2023
16f138e
Add updated ChatGPT example
Naarcha-AWS Jul 19, 2023
99bf98c
Add info and example for internal connector.
Naarcha-AWS Jul 19, 2023
d60c4c0
One last adjustment.
Naarcha-AWS Jul 19, 2023
e26a66c
Apply suggestions from code review
Naarcha-AWS Jul 19, 2023
e5f3f21
Fix dead link
Naarcha-AWS Jul 19, 2023
afa2fca
Fix one last comment.
Naarcha-AWS Jul 19, 2023
8eb225c
change ordered list to numbered.
Naarcha-AWS Jul 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion STYLE_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Use lowercase when referring to features, unless you are referring to a formally
* “*Remote-backed storage* is an experimental feature. Therefore, we do not recommend the use of *remote-backed storage* in a production environment.”
* “You can take and restore *snapshots* using the snapshot API.”
* “You can use the *VisBuilder* visualization type in OpenSearch Dashboards to create data visualizations by using a drag-and-drop gesture.” (You can refer to VisBuilder alone or qualify the term with “visualization type”.)
* “As of OpenSearch 2.4, the *model-serving framework* only supports text embedding models without GPU acceleration.”
* “As of OpenSearch 2.4, the *ML framework* only supports text-embedding models without GPU acceleration.”

#### Plugin names

Expand Down
25 changes: 20 additions & 5 deletions _ml-commons-plugin/cluster-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ plugins.ml_commons.allow_registering_model_via_url: false
### Values

- Default value: false
- Value range: [false, true]
- Valid values: `false`, `true`

## Register models using local files

Expand All @@ -163,7 +163,7 @@ plugins.ml_commons.allow_registering_model_via_local_file: false
### Values

- Default value: false
- Value range: [false, true]
- Valid values: `false`, `true`

## Add trusted URL

Expand Down Expand Up @@ -230,7 +230,7 @@ plugins.ml_commons.allow_custom_deployment_plan: false
### Values

- Default value: false
- Value range: [false, true]
- Valid values: `false`, `true`

## Enable auto redeploy

Expand All @@ -245,7 +245,7 @@ plugins.ml_commons.model_auto_redeploy.enable: false
### Values

- Default value: false
- Value range: [false, true]
- Valid values: `false`, `true`

## Set retires for auto redeploy

Expand Down Expand Up @@ -290,7 +290,22 @@ plugins.ml_commons.enable_inhouse_python_model: false
### Values

- Default value: false
- Value range: [false, true]
- Valid values: `false`, `true`

## Enable access control for connectors

When set to `true`, allows admins to control access and permissions to the connector API using `backend_roles`.

### Setting

```
plugins.ml_commons.connector_access_control_enabled: true
```

### Values

- Default value: false
- Valid values: `false`, `true`



Expand Down
Loading