-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOC] [v2.4.0] Update documentation for Searchable Snapshot Feature (#…
…1795) * Update documentation for Searchable Snapshot Feature Signed-off-by: ariamarble <[email protected]> * tons of updates Signed-off-by: ariamarble <[email protected]> * minor change to return page to default Signed-off-by: ariamarble <[email protected]> * made suggested changes Signed-off-by: ariamarble <[email protected]> Signed-off-by: ariamarble <[email protected]>
- Loading branch information
1 parent
9122bbb
commit f03cad5
Showing
2 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
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,119 @@ | ||
--- | ||
layout: default | ||
title: Searchable snapshots | ||
parent: Snapshots | ||
nav_order: 40 | ||
has_children: false | ||
--- | ||
|
||
# Searchable snapshots | ||
|
||
Searchable snapshots is an experimental feature with OpenSearch 2.4. Therefore, we do not recommend the use of this feature in a production environment. For updates on progress or if you want leave feedback that could help improve the feature, see the [searchable snapshot GitHub issue](https://github.com/opensearch-project/OpenSearch/issues/2919). | ||
{: .warning } | ||
|
||
A searchable snapshot is an index where data is read from a [snapshot repository]({{site.url}}{{site.baseurl}}/opensearch/snapshots/snapshot-restore/#register-repository) on-demand at search time, rather than downloading all index data to cluster storage at restore time. Because the index data remains in the snapshot format in the repository, searchable snapshot indexes are inherently read-only. Any attempt to write to a searchable snapshot index will result in an error. | ||
|
||
To enable the searchable snapshots feature, reference the steps below. | ||
|
||
## Enabling the feature flag | ||
|
||
There are several methods for enabling searchable snapshots, depending on the install type. | ||
|
||
### Enable on a node using a tarball install | ||
|
||
The flag is toggled using a new jvm parameter that is set either in `OPENSEARCH_JAVA_OPTS` or in config/jvm.options. | ||
|
||
- Option 1: Update config/jvm.options by adding the following line: | ||
|
||
```json | ||
-Dopensearch.experimental.feature.searchable_snapshot.enabled=true | ||
``` | ||
|
||
- Option 2: Use the `OPENSEARCH_JAVA_OPTS` environment variable: | ||
|
||
```json | ||
export OPENSEARCH_JAVA_OPTS="-Dopensearch.experimental.feature.searchable_snapshot.enabled=true" | ||
``` | ||
- Option 3: For developers using Gradle, update run.gradle by adding the following lines: | ||
|
||
```json | ||
testClusters { | ||
runTask { | ||
testDistribution = 'archive' | ||
if (numZones > 1) numberOfZones = numZones | ||
if (numNodes > 1) numberOfNodes = numNodes | ||
systemProperty 'opensearch.experimental.feature.searchable_snapshot.enabled', 'true' | ||
} | ||
} | ||
``` | ||
|
||
- Finally, create a node in your opensearch.yml file and define the node role as `search`: | ||
|
||
```bash | ||
node.name: snapshots-node | ||
node.roles: [ search ] | ||
``` | ||
|
||
### Enable with Docker containers | ||
|
||
If you're running Docker, add the following line to docker-compose.yml underneath the `opensearch-node` and `environment` section: | ||
|
||
```json | ||
OPENSEARCH_JAVA_OPTS="-Dopensearch.experimental.feature.searchable_snapshot.enabled=true" # Enables searchable snapshot | ||
``` | ||
|
||
To create a node with the `search` node roll, add the line `- node.roles: [ search ]` to your docker-compose.yml file: | ||
|
||
```bash | ||
version: '3' | ||
services: | ||
opensearch-node1: | ||
image: opensearchproject/opensearch:2.4.0 | ||
container_name: opensearch-node1 | ||
environment: | ||
- cluster.name=opensearch-cluster | ||
- node.name=opensearch-node1 | ||
- node.roles: [ search ] | ||
``` | ||
|
||
## Create a searchable snapshot index | ||
|
||
Creating a searchable snapshot index is done by specifying the `remote_snapshot` storage type using the [restore snapshots API]({{site.url}}{{site.baseurl}}/opensearch/snapshots/snapshot-restore/#restore-snapshots). | ||
|
||
Request field | Description | ||
:--- | :--- | ||
`storage_type` | `local` indicates that all snapshot metadata and index data will be downloaded to local storage. <br /><br > `remote_snapshot` indicates that snapshot metadata will be downloaded to the cluster, but the remote repository will remain the authoritative store of the index data. Data will be downloaded and cached as necessary to service queries. At least one node in the cluster must be configured with the `search` node role in order to restore a snapshot using the type `remote_snapshot`. <br /><br > Defaults to `local`. | ||
|
||
## Listing indexes | ||
|
||
To determine if an index is a searchable snapshot index, look for a store type with the value of `remote_snapshot`: | ||
|
||
``` | ||
GET /my-index/_settings?pretty | ||
``` | ||
|
||
```json | ||
{ | ||
"my-index": { | ||
"settings": { | ||
"index": { | ||
"store": { | ||
"type": "remote_snapshot" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
## Potential use cases | ||
|
||
- Users who wish to offload indexes from cluster-based storage, yet retain the ability to search them. | ||
- Users who wish to have a large number of searchable indexes in media with lower costs. | ||
|
||
## Known limitations | ||
|
||
- Accessing data from a remote repository is slower than local disk reads, so higher latencies on search queries are expected. | ||
- Data is discarded immediately after being read. Subsequent searches for the same data will have to be downloaded again. Future work will address this by implementing a disk-based cache for storing frequently-accessed data. | ||
- Many remote object stores charge on a per-request basis for retrieval, so users should closely monitor any costs incurred. | ||
- Searching remote data can impact the performance of other queries running on the same node. Users are recommended to provision dedicated nodes with the `search` role for performance-critical applications. |
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