-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 3967-Add-new-or-remove-extra-tags-and-styles
Signed-off-by: Josh Romero <rmerqg@amazon.com>
- Loading branch information
Showing
241 changed files
with
6,228 additions
and
11,381 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @ananzh @kavilla @seanneumann @AMoo-Miki @ashwin-pc @joshuarrrr @abbyhu2000 @zengyan-amazon @kristenTian @zhongnansu @manasvinibs | ||
* @ananzh @kavilla @seanneumann @AMoo-Miki @ashwin-pc @joshuarrrr @abbyhu2000 @zengyan-amazon @kristenTian @zhongnansu @manasvinibs @ZilongX @Flyingliuhub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.21.3 | ||
18.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.21.3 | ||
18.16.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG NODE_VERSION=14.20.1 | ||
ARG NODE_VERSION=18.16.0 | ||
FROM node:${NODE_VERSION} AS base | ||
|
||
ENV HOME '.' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions
19
docs/saved_objects/resources/current_saved_object_service_workflow.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@startuml | ||
title: Current Saved Object Service Flow | ||
actor User | ||
participant "Saved Object Client" as Client | ||
participant "Saved Object Repository" as Repo | ||
participant "Opensearch" as OS | ||
|
||
User -> Client: Create Saved Object | ||
Client -> Repo: Create Saved Object | ||
Repo -> OS: Index Saved Object | ||
OS --> Repo: Saved Object Saved | ||
Client -> User: Saved Object Created | ||
User -> Client: Get Saved Object | ||
Client -> Repo: Get Saved Object | ||
Repo -> OS: Get Saved Object | ||
OS --> Repo: Return Saved Object | ||
Repo -> Client: Return Saved Object | ||
Client -> User: Saved Object Data | ||
@enduml |
38 changes: 38 additions & 0 deletions
38
docs/saved_objects/resources/proposed_saved_object_service_workflow.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@startuml | ||
|
||
title: Proposed Saved Object Service Flow | ||
|
||
actor User | ||
|
||
participant "OpenSearch-Dashboards" as OSD | ||
|
||
box "Saved Object Service" #LightBlue | ||
participant "Saved Object Client" as Client | ||
participant "Repository Factory Provider" as Factory | ||
end box | ||
|
||
box "Dashboards Storage Plugin" #LightYellow | ||
participant "Repository\n(e.g. PostgresRepository,\nDynamoDBRepository)" as Repo | ||
participant "Metadata Storage\n(e.g. Postgres, \nDynamoDB etc)" as Meta | ||
end box | ||
|
||
autonumber | ||
group OSD Bootstrap | ||
Repo -> Factory: Register custom repository | ||
Factory -> Client: Returns repository | ||
Client -> OSD: Returns Saved Object Client | ||
end group | ||
User -> Client: Create Saved Object | ||
Client -> Repo: Create Saved Object | ||
Repo -> Meta: Create/Update Record | ||
Meta --> Repo: Saved Object Saved | ||
Client -> User: Saved Object Created | ||
User -> Client: Get Saved Object | ||
Client -> Repo: Get Saved Object | ||
Repo -> Meta: Fetch Saved Object from storage | ||
Meta --> Repo: Return Saved Object | ||
Repo -> Client: Return Saved Object | ||
Client -> User: Saved Object Data | ||
|
||
skinparam BoxPadding 15 | ||
@enduml |
171 changes: 171 additions & 0 deletions
171
docs/saved_objects/saved_object_repository_factory_design.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
# Proposed Saved Object Service Interface for Custom Repository | ||
|
||
## Introduction | ||
|
||
The new saved object service interface for custom repository is a project that aims to improve scalability of the existing saved object service by introducing a new interface. The goal of this project is to provide a more efficient and flexible interface that will make it easier for developers to configure metadata of Dashboards in any different storage than OpenSearch, such as mysql, postgres, DDB, serverless (S3+ Athena). | ||
|
||
Currently, Dashboards stores its metadata configuration inside OpenSearch index (called .kibana). This approach is by design of Dashboards and biased towards product decision by upstream which works seamlessly and out of the box for customers but it introduces challenges while operating at scale and providing high availability for Dashboards. While choosing OpenSearch as a storage for Dashboards metadata, availability of Dashboards depends on OpenSearch cluster’s availability and other cluster parameters such as cluster health, state, versions which could make Dashboards unavailable. | ||
|
||
To mitigate above problem and unblock future extensibility of Dashboards, we are building Dashboards Meta storage adaptor to decouple Dashboards metadata storage from OpenSearch. This project will focus on introducing new interface in Saved Object Service using which developer can build their custom repository and save Dashboards metadata in storage of their choice. | ||
|
||
The stakeholders of this new interface include the developers of the Dashboards and community contributors who wants to use other metadata store. | ||
|
||
## Architecture Overview | ||
|
||
The Saved Object Service is a critical component of Dashboards that provides a way to store and manage application data. It is built using a modular architecture that provides a high degree of flexibility and extensibility. The new interface will be designed to replace [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134) implementation so that developers can build plugins that leverage the power of existing saved object service and use their own database to store and retrieve metadata of OpenSearch Dashboards. | ||
|
||
### Current Architecture | ||
|
||
The repository interface named [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134) in OpenSearch-Dashboards is a module that provides an interface for managing saved objects. The [SavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L139) is the implementation of [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134), which uses OpenSearch index as it’s data store. It is responsible for storing, retrieving, and deleting saved objects for Dashboards, such as visualizations, dashboards, and searches. | ||
|
||
The Saved Object Repository is built on top of the OpenSearch client and provides a simplified interface for working with OpenSearch. It uses the Saved Object Serializer to convert saved objects between their internal and external representations. The repository is then being consumed by Saved object client to create scoped saved object client. | ||
|
||
![img](./img/current_saved_object_service_workflow.png) | ||
|
||
### Proposed Architecture | ||
|
||
- **Approach 1 (Preferred)**: The proposed architecture will add one more layer of abstraction in Saved Object Service. `The Repository Factory Provider` in OpenSearch Dashboards will be responsible for creating and managing instances of the Repository (e.g. SavedObjectRepository, PostgresRepository, DynamoDBRepository etc.), which is used to interact with the metadata storage that stores the saved objects. Currently we have an repository interface named [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134), and the [SavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L139) is the implementation, which use an OpenSearch index as its data store. This approach would make the implementation of [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134) replaceable by plugin. | ||
|
||
![img](./img/proposed_saved_object_service_workflow.png) | ||
|
||
* Pros: | ||
* Only change needed in Dashboard is to introduce one more abstraction layer in Saved Object Service. | ||
* Adds opportunity for community developers to contribute for other meta store. | ||
|
||
* Cons | ||
* Code reusability is low. | ||
<br/> | ||
|
||
**POC**: | ||
1) Core Dashboards Change: https://github.com/bandinib-amzn/OpenSearch-Dashboards/commit/b9cfc14 | ||
2) Postgres Repository Plugin: https://github.com/bandinib-amzn/metadata_plugin/commit/dac35f0 | ||
|
||
`SavedObjectsServiceSetup` provides interface to create custom Saved Object Repository. | ||
``` | ||
/** | ||
* Set the default {@link SavedObjectRepositoryFactoryProvider | factory provider} for creating Saved Objects repository. | ||
* Only one repository can be set, subsequent calls to this method will fail. | ||
*/ | ||
registerRepositoryFactoryProvider: ( | ||
respositoryFactoryProvider: SavedObjectRepositoryFactoryProvider | ||
) => void; | ||
``` | ||
|
||
Here are the main steps involved in using the Saved Objects Repository Factory in Dashboards: | ||
1. Define the dependencies: The Saved Object Repository Factory Provider requires the function which creates instance of [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134). | ||
``` | ||
export const repositoryFactoryProvider: SavedObjectRepositoryFactoryProvider = ( | ||
options: SavedObjectsRepositoryOptions | ||
) => { | ||
. | ||
. | ||
. | ||
return new PostgresRepository({ | ||
typeRegistry, | ||
serializer, | ||
migrator, | ||
allowedTypes, | ||
}); | ||
} | ||
``` | ||
2. Register the provider: Register the repository factory provider with right dependencies. | ||
``` | ||
core.savedObjects.registerRepositoryFactoryProvider(repositoryFactoryProvider); | ||
``` | ||
3. Implement the Saved Object Operations for chosen storage type: Implement the CRUD and other operations for contracts defined in [ISavedObjectRepository](https://github.com/opensearch-project/OpenSearch-Dashboards/blob/main/src/core/server/saved_objects/service/lib/repository.ts#L134) | ||
``` | ||
async create<T = unknown>( | ||
type: string, | ||
attributes: T, | ||
options: SavedObjectsCreateOptions = {} | ||
): Promise<SavedObject<T>> { | ||
... | ||
} | ||
async get<T = unknown>( | ||
type: string, | ||
id: string, | ||
options: SavedObjectsBaseOptions = {} | ||
): Promise<SavedObject<T>> { | ||
... | ||
} | ||
async update<T = unknown>( | ||
type: string, | ||
id: string, | ||
attributes: Partial<T>, | ||
options: SavedObjectsUpdateOptions = {} | ||
): Promise<SavedObjectsUpdateResponse<T>> { | ||
... | ||
} | ||
async deleteFromNamespaces( | ||
type: string, | ||
id: string, | ||
namespaces: string[], | ||
options: SavedObjectsDeleteFromNamespacesOptions = {} | ||
): Promise<SavedObjectsDeleteFromNamespacesResponse> { | ||
... | ||
} | ||
. | ||
. | ||
. | ||
``` | ||
|
||
- **Approach 2**: Build external plugin and using saved object client wrapper or client factory provider injection mechanism we can build custom object for Postgres or other DB. | ||
|
||
* Pros: | ||
* No changes in core Dashboards. That means we can keep Dashboards as it is with very minimal changes. | ||
|
||
|
||
* Cons | ||
* Code reusability is low. | ||
* Some components of Saved object service such as Serializer, Type registry, interface to create internal and scoped repository are only available during Saved Object Service Start. As per the current architecture, first Saved Object Service Setup → Plugin Setup → Saved Object Service Start → Plugin Start. Some core plugin (e.g. opensearch_dashboards_usage_collection) calls find operation before plugin start and it fails because some components are still not available before plugin start. | ||
<br/> | ||
|
||
**POC**: https://github.com/bandinib-amzn/metadata_plugin/compare/f040daf...89213eb | ||
|
||
|
||
- **Approach 3**: In this approach, we just extend the `SavedObjectsRepository` class and override CRUD and other saved object operation in core Dashboards. | ||
|
||
* Pros: | ||
* As we are extending the repository in core saved object service itself, we can reuse the validation and utility functions for other database options. | ||
|
||
|
||
* Cons | ||
* Changes in core Dashboards : We will be making considerable changes in critical component of Dashboards. | ||
* With this approach, user will have to use the data storage option that we choose. | ||
<br/> | ||
|
||
**POC**: https://github.com/bandinib-amzn/OpenSearch-Dashboards/compare/main...22d7f30 | ||
|
||
## Implementation Details | ||
|
||
|
||
| Repository | Component | Change | | ||
| ----------- | ----------- | ----------- | | ||
| OpenSearch-Dashboards | Saved Object Service | Add Saved object repository factory provider | | ||
| OpenSearch-Dashboards | Config | Configuration for metadata storage | | ||
| MetaStorage-Plugin [Name TBD] | Plugin / Extension | We will build new plugin for Postgres. This is use case for new interface in Saved Object Repository. | | ||
|
||
### Configuration for metadata storage: | ||
``` | ||
metaStorage.enabled: true | ||
metaStorage.config: { | ||
type: 'xxxx', | ||
hostName: 'xxxx', | ||
userName: 'xxxx', | ||
password: 'xxxx', | ||
port: xxxx, | ||
} | ||
``` | ||
|
||
## Testing and Quality Assurance | ||
|
||
### Testing Approach | ||
|
||
The following testing approach will be used to ensure the quality of the system: | ||
|
||
1. **Unit testing**: Metadata store plugin will be thoroughly unit tested to ensure it meets its requirements and performs as expected. Also we will add new test cases in OpenSearch-Dashboards to test new repository factory provider. | ||
2. **Integration testing**: Components will be integrated and tested together to ensure they work together seamlessly and without conflicts. | ||
|
Oops, something went wrong.