Skip to content

Commit

Permalink
Minor tweaks per PR self-review
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Helma <chelma+github@amazon.com>
  • Loading branch information
chelma committed Apr 4, 2024
1 parent 2f1dbf3 commit 230f8c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RFS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,5 +288,5 @@ curl -X POST "localhost:9200/another_alias/_doc" -H "Content-Type: application/j

## How to set up an OS 2.11 Target Cluster

I've only tested the scripts going from ES 6.8 to OS 2.11. For my test target, I just spun up an Amazon OpenSearch Service 2.11 cluster with a master user/password combo and otherwise default settings.
The only target cluster version this has been tested agains is OpenSearch 2.11. For my test target, I just spun up an Amazon OpenSearch Service 2.11 cluster with a master user/password combo and otherwise default settings.

2 changes: 1 addition & 1 deletion RFS/docker/TestSource_ES_7_10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
./aws/install

# Install our custom entrypoint script
COPY ./container-start.sh .
COPY ./container-start.sh /usr/share/elasticsearch/container-start.sh

# Configure Elastic
ENV ELASTIC_SEARCH_CONFIG_FILE=/usr/share/elasticsearch/config/elasticsearch.yml
Expand Down
2 changes: 1 addition & 1 deletion RFS/src/main/java/com/rfs/ReindexFromSnapshot.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class ReindexFromSnapshot {
private static final Logger logger = LogManager.getLogger(ReindexFromSnapshot.class);

public static class Args {
@Parameter(names = {"-n", "--snapshot-name"}, description = "The name of the snapshot migrate", required = true)
@Parameter(names = {"-n", "--snapshot-name"}, description = "The name of the snapshot to migrate", required = true)
public String snapshotName;

@Parameter(names = {"--snapshot-dir"}, description = "The absolute path to the source snapshot directory on local disk", required = false)
Expand Down

0 comments on commit 230f8c5

Please sign in to comment.