com.yelp.nrtsearch.tools.nrt_utils.state.GetRemoteStateCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server Show documentation
Show all versions of server Show documentation
GRPC lucene server using near-real-time replication
/*
* Copyright 2022 Yelp Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.yelp.nrtsearch.tools.nrt_utils.state;
import com.amazonaws.services.s3.AmazonS3;
import com.google.common.annotations.VisibleForTesting;
import com.yelp.nrtsearch.server.remote.s3.S3Backend;
import java.nio.file.Path;
import java.util.concurrent.Callable;
import picocli.CommandLine;
@CommandLine.Command(
name = GetRemoteStateCommand.GET_REMOTE_STATE,
description = "Fetch index or global state from remote backend")
public class GetRemoteStateCommand implements Callable {
public static final String GET_REMOTE_STATE = "getRemoteState";
@CommandLine.Option(
names = {"-s", "--serviceName"},
description = "Name of nrtsearch cluster",
required = true)
private String serviceName;
@CommandLine.Option(
names = {"-r", "--resourceName"},
description =
"Resource name, should be index name or \""
+ StateCommandUtils.GLOBAL_STATE_RESOURCE
+ "\"",
required = true)
private String resourceName;
@CommandLine.Option(
names = {"-b", "--bucketName"},
description = "Name of bucket containing state files",
required = true)
private String bucketName;
@CommandLine.Option(
names = {"--region"},
description = "AWS region name, such as us-west-1, us-west-2, us-east-1")
private String region;
@CommandLine.Option(
names = {"-c", "--credsFile"},
description =
"File holding AWS credentials; Will use DefaultCredentialProvider if this is unset.")
private String credsFile;
@CommandLine.Option(
names = {"-p", "--credsProfile"},
description = "Profile to use from creds file; Neglected when credsFile is unset.",
defaultValue = "default")
private String credsProfile;
@CommandLine.Option(
names = {"-o", "--outputFile"},
description = "File to write state to, or empty for stdout",
defaultValue = "")
private String outputFile;
@CommandLine.Option(
names = {"--exactResourceName"},
description = "If index resource name already has unique identifier")
private boolean exactResourceName;
@CommandLine.Option(
names = {"--maxRetry"},
description = "Maximum number of retry attempts for S3 failed requests",
defaultValue = "20")
private int maxRetry;
private AmazonS3 s3Client;
@VisibleForTesting
void setS3Client(AmazonS3 s3Client) {
this.s3Client = s3Client;
}
@Override
public Integer call() throws Exception {
if (s3Client == null) {
s3Client =
StateCommandUtils.createS3Client(bucketName, region, credsFile, credsProfile, maxRetry);
}
S3Backend s3Backend = new S3Backend(bucketName, false, s3Client);
String resolvedResourceName =
StateCommandUtils.getResourceName(s3Backend, serviceName, resourceName, exactResourceName);
String stateFileContents;
if (StateCommandUtils.isGlobalState(resourceName)) {
stateFileContents = StateCommandUtils.getGlobalStateFileContents(s3Backend, serviceName);
} else {
stateFileContents =
StateCommandUtils.getIndexStateFileContents(s3Backend, serviceName, resolvedResourceName);
}
if (stateFileContents != null) {
if (outputFile.isEmpty()) {
System.out.println("Content: " + stateFileContents);
} else {
StateCommandUtils.writeStringToFile(stateFileContents, Path.of(outputFile).toFile());
}
} else {
System.out.println("No state found in backend");
}
return 0;
}
}