-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nrt_utils commands to get/set/list backend resource versions (#726)
- Loading branch information
1 parent
7604cc2
commit ad540a8
Showing
10 changed files
with
1,374 additions
and
2 deletions.
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
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
124 changes: 124 additions & 0 deletions
124
src/main/java/com/yelp/nrtsearch/tools/nrt_utils/state/GetResourceVersionCommand.java
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,124 @@ | ||
/* | ||
* Copyright 2024 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 static com.yelp.nrtsearch.tools.nrt_utils.state.StateCommandUtils.NOT_SET; | ||
|
||
import com.amazonaws.services.s3.AmazonS3; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import com.yelp.nrtsearch.server.remote.RemoteBackend; | ||
import com.yelp.nrtsearch.server.remote.s3.S3Backend; | ||
import java.util.concurrent.Callable; | ||
import picocli.CommandLine; | ||
|
||
@CommandLine.Command( | ||
name = GetResourceVersionCommand.GET_RESOURCE_VERSION, | ||
description = "Fetch current index resource or global state version from S3") | ||
public class GetResourceVersionCommand implements Callable<Integer> { | ||
public static final String GET_RESOURCE_VERSION = "getResourceVersion"; | ||
|
||
@CommandLine.Option( | ||
names = {"-s", "--serviceName"}, | ||
description = "Name of nrtsearch cluster", | ||
required = true) | ||
private String serviceName; | ||
|
||
@CommandLine.Option( | ||
names = {"-t", "--indexResourceType"}, | ||
description = | ||
"Type of index resource, must be set when not requesting global state. One of: " | ||
+ "INDEX_STATE, POINT_STATE, WARMING_QUERIES") | ||
private String resourceType; | ||
|
||
@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 = {"--exactResourceName"}, | ||
description = "If resource name already has unique identifier") | ||
private boolean exactResourceName; | ||
|
||
@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 = {"--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 version = NOT_SET; | ||
if (StateCommandUtils.isGlobalState(resolvedResourceName)) { | ||
if (s3Backend.exists(serviceName, RemoteBackend.GlobalResourceType.GLOBAL_STATE)) { | ||
String prefix = S3Backend.getGlobalStateResourcePrefix(serviceName); | ||
version = s3Backend.getCurrentResourceName(prefix); | ||
} | ||
} else { | ||
RemoteBackend.IndexResourceType indexResourceType = | ||
StateCommandUtils.parseIndexResourceType(resourceType); | ||
if (s3Backend.exists(serviceName, resolvedResourceName, indexResourceType)) { | ||
String prefix = | ||
S3Backend.getIndexResourcePrefix(serviceName, resolvedResourceName, indexResourceType); | ||
version = s3Backend.getCurrentResourceName(prefix); | ||
} | ||
} | ||
System.out.println("Version: " + version); | ||
return 0; | ||
} | ||
} |
159 changes: 159 additions & 0 deletions
159
src/main/java/com/yelp/nrtsearch/tools/nrt_utils/state/ListResourceVersions.java
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,159 @@ | ||
/* | ||
* Copyright 2024 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.amazonaws.services.s3.model.ListObjectsRequest; | ||
import com.amazonaws.services.s3.model.ObjectListing; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import com.yelp.nrtsearch.server.remote.RemoteBackend; | ||
import com.yelp.nrtsearch.server.remote.s3.S3Backend; | ||
import com.yelp.nrtsearch.server.utils.TimeStringUtil; | ||
import java.util.concurrent.Callable; | ||
import picocli.CommandLine; | ||
|
||
@CommandLine.Command( | ||
name = ListResourceVersions.LIST_RESOURCE_VERSIONS, | ||
description = "List index resource or global state versions in S3 by prefix") | ||
public class ListResourceVersions implements Callable<Integer> { | ||
public static final String LIST_RESOURCE_VERSIONS = "listResourceVersions"; | ||
public static final int MAX_LIST_SIZE = 1000; | ||
|
||
@CommandLine.Option( | ||
names = {"-s", "--serviceName"}, | ||
description = "Name of nrtsearch cluster", | ||
required = true) | ||
private String serviceName; | ||
|
||
@CommandLine.Option( | ||
names = {"-t", "--indexResourceType"}, | ||
description = | ||
"Type of index resource, must be set when not requesting global state. One of: " | ||
+ "INDEX_STATE, POINT_STATE, WARMING_QUERIES") | ||
private String resourceType; | ||
|
||
@CommandLine.Option( | ||
names = {"--versionPrefix"}, | ||
description = "Prefix of versions to list, default: \"\"", | ||
defaultValue = "") | ||
private String versionPrefix; | ||
|
||
@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 = {"--exactResourceName"}, | ||
description = "If resource name already has unique identifier") | ||
private boolean exactResourceName; | ||
|
||
@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 = {"--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 prefix; | ||
if (StateCommandUtils.isGlobalState(resolvedResourceName)) { | ||
prefix = S3Backend.getGlobalStateResourcePrefix(serviceName); | ||
} else { | ||
RemoteBackend.IndexResourceType indexResourceType = | ||
StateCommandUtils.parseIndexResourceType(resourceType); | ||
prefix = | ||
S3Backend.getIndexResourcePrefix(serviceName, resolvedResourceName, indexResourceType); | ||
} | ||
String listPrefix = prefix + versionPrefix; | ||
System.out.println( | ||
"Listing versions for " | ||
+ resolvedResourceName | ||
+ " with prefix " | ||
+ listPrefix | ||
+ " (max " | ||
+ MAX_LIST_SIZE | ||
+ ")"); | ||
ListObjectsRequest listObjectsRequest = | ||
new ListObjectsRequest() | ||
.withBucketName(bucketName) | ||
.withPrefix(listPrefix) | ||
.withMaxKeys(MAX_LIST_SIZE); | ||
ObjectListing listing = s3Backend.getS3().listObjects(listObjectsRequest); | ||
listing | ||
.getObjectSummaries() | ||
.forEach( | ||
object -> { | ||
String suffix = object.getKey().split(prefix)[1]; | ||
printVersion(suffix); | ||
}); | ||
return 0; | ||
} | ||
|
||
private static void printVersion(String keySuffix) { | ||
String timestampStr = ""; | ||
String[] splits = keySuffix.split("-"); | ||
if (splits.length > 1) { | ||
String timeString = splits[0]; | ||
if (TimeStringUtil.isTimeStringSec(timeString)) { | ||
timestampStr = " (" + TimeStringUtil.parseTimeStringSec(timeString).toString() + ")"; | ||
} | ||
} | ||
System.out.println(keySuffix + timestampStr); | ||
} | ||
} |
Oops, something went wrong.