|
5 | 5 |
|
6 | 6 | package org.opensearch.flint.core;
|
7 | 7 |
|
| 8 | +import org.opensearch.action.admin.cluster.repositories.put.PutRepositoryRequest; |
| 9 | +import org.opensearch.action.admin.cluster.snapshots.restore.RestoreSnapshotRequest; |
| 10 | +import org.opensearch.action.admin.cluster.snapshots.restore.RestoreSnapshotResponse; |
8 | 11 | import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
9 | 12 | import org.opensearch.action.bulk.BulkRequest;
|
10 | 13 | import org.opensearch.action.bulk.BulkResponse;
|
|
19 | 22 | import org.opensearch.action.search.SearchRequest;
|
20 | 23 | import org.opensearch.action.search.SearchResponse;
|
21 | 24 | import org.opensearch.action.search.SearchScrollRequest;
|
| 25 | +import org.opensearch.action.support.master.AcknowledgedResponse; |
22 | 26 | import org.opensearch.action.update.UpdateRequest;
|
23 | 27 | import org.opensearch.action.update.UpdateResponse;
|
24 | 28 | import org.opensearch.client.RequestOptions;
|
|
35 | 39 | import org.opensearch.client.opensearch.indices.IndicesStatsRequest;
|
36 | 40 | import org.opensearch.client.opensearch.indices.IndicesStatsResponse;
|
37 | 41 | import org.opensearch.client.transport.rest_client.RestClientTransport;
|
38 |
| - |
39 |
| -import java.io.IOException; |
| 42 | +import org.opensearch.common.settings.Settings; |
40 | 43 | import org.opensearch.flint.core.storage.BulkRequestRateLimiter;
|
41 | 44 | import org.opensearch.flint.core.storage.OpenSearchBulkRetryWrapper;
|
| 45 | +import org.opensearch.flint.core.table.OpenSearchCluster; |
| 46 | +import org.opensearch.rest.RestStatus; |
| 47 | + |
| 48 | +import java.io.IOException; |
| 49 | +import java.util.Map; |
| 50 | +import java.util.logging.Logger; |
42 | 51 |
|
43 | 52 | import static org.opensearch.flint.core.metrics.MetricConstants.OS_READ_OP_METRIC_PREFIX;
|
44 | 53 | import static org.opensearch.flint.core.metrics.MetricConstants.OS_WRITE_OP_METRIC_PREFIX;
|
|
48 | 57 | * with integrated metrics tracking.
|
49 | 58 | */
|
50 | 59 | public class RestHighLevelClientWrapper implements IRestHighLevelClient {
|
| 60 | + |
| 61 | + private static final Logger LOG = Logger.getLogger(RestHighLevelClientWrapper.class.getName()); |
| 62 | + |
51 | 63 | private final RestHighLevelClient client;
|
52 | 64 | private final BulkRequestRateLimiter rateLimiter;
|
53 | 65 | private final OpenSearchBulkRetryWrapper bulkRetryWrapper;
|
@@ -153,6 +165,67 @@ public CreatePitResponse createPit(CreatePitRequest request) throws IOException
|
153 | 165 | return execute(OS_WRITE_OP_METRIC_PREFIX, () -> openSearchClient().createPit(request));
|
154 | 166 | }
|
155 | 167 |
|
| 168 | + @Override |
| 169 | + public AcknowledgedResponse createRepository(PutRepositoryRequest request) throws IOException { |
| 170 | + return execute(OS_WRITE_OP_METRIC_PREFIX, |
| 171 | + () -> client.snapshot().createRepository(request, RequestOptions.DEFAULT)); |
| 172 | + } |
| 173 | + |
| 174 | + @Override |
| 175 | + public RestoreSnapshotResponse restoreSnapshot(RestoreSnapshotRequest request) throws IOException { |
| 176 | + return execute(OS_WRITE_OP_METRIC_PREFIX, () -> client.snapshot().restore(request, RequestOptions.DEFAULT)); |
| 177 | + } |
| 178 | + |
| 179 | + @Override |
| 180 | + public void prepare(String indexName) { |
| 181 | + try { |
| 182 | + if (doesIndexExist(new GetIndexRequest(indexName), RequestOptions.DEFAULT)) { |
| 183 | + LOG.info("Index [" + indexName + "] already exists"); |
| 184 | + } else { |
| 185 | + String repoName = "my-s3-repository"; |
| 186 | + String snapshotName = "s001"; |
| 187 | + String bucket = "flint-data-dp-us-west-2-beta"; |
| 188 | + String snapshotPath = "data/quickwit/generated-logs-v1/213_snapshot_001"; |
| 189 | + |
| 190 | + PutRepositoryRequest putRepositoryRequest = new PutRepositoryRequest(repoName); |
| 191 | + putRepositoryRequest.type("s3"); |
| 192 | + putRepositoryRequest.settings(Settings.builder() |
| 193 | + .put("base_path", snapshotPath) |
| 194 | + .put("bucket", bucket) |
| 195 | + .build()); |
| 196 | + AcknowledgedResponse createRepoResp = createRepository(putRepositoryRequest); |
| 197 | + if (!createRepoResp.isAcknowledged()) { |
| 198 | + LOG.severe("Failed to create repository"); |
| 199 | + throw new RuntimeException("Failed to create repository"); |
| 200 | + } |
| 201 | + LOG.info("Created repository [" + repoName + "]"); |
| 202 | + RestoreSnapshotRequest |
| 203 | + restoreSnapshotRequest = |
| 204 | + new RestoreSnapshotRequest(repoName, snapshotName); |
| 205 | + restoreSnapshotRequest.indices(indexName); |
| 206 | + restoreSnapshotRequest.source(Map.of("storage_type", "remote_snapshot")); |
| 207 | + RestoreSnapshotResponse |
| 208 | + restoreSnapshotResponse = |
| 209 | + restoreSnapshot(restoreSnapshotRequest); |
| 210 | + if (restoreSnapshotResponse.status() != RestStatus.OK && restoreSnapshotResponse.status() != RestStatus.CREATED && restoreSnapshotResponse.status() != RestStatus.ACCEPTED) { |
| 211 | + LOG.severe("Failed to restore snapshot " + restoreSnapshotResponse.status()); |
| 212 | + throw new RuntimeException("Failed to restore snapshot " + restoreSnapshotResponse.status()); |
| 213 | + } |
| 214 | + LOG.info("Restored repository [" + repoName + "]" + "snapshot [" + snapshotName + "]"); |
| 215 | + |
| 216 | + IndicesStatsResponse stats = stats(new IndicesStatsRequest.Builder().index(indexName).build()); |
| 217 | + while (stats.shards().successful().intValue() != stats.shards().total().intValue()) { |
| 218 | + LOG.info("wait..., successful:" + stats.shards().successful() + " total:" + stats.shards().total()); |
| 219 | + Thread.sleep(100); |
| 220 | + stats = stats(new IndicesStatsRequest.Builder().index(indexName).build()); |
| 221 | + } |
| 222 | + } |
| 223 | + } catch (Exception e) { |
| 224 | + LOG.severe(e.getMessage()); |
| 225 | + throw new RuntimeException(e); |
| 226 | + } |
| 227 | + } |
| 228 | + |
156 | 229 | /**
|
157 | 230 | * Executes a given operation, tracks metrics, and handles exceptions.
|
158 | 231 | *
|
|
0 commit comments