Skip to content

Commit c71a586

Browse files
Merge branch 'main' into fix-18045
Signed-off-by: shwetathareja <[email protected]>
2 parents 4b4b81d + 998ae73 commit c71a586

File tree

29 files changed

+315
-95
lines changed

29 files changed

+315
-95
lines changed

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- name: lychee Link Checker
1515
id: lychee
16-
uses: lycheeverse/[email protected].0
16+
uses: lycheeverse/[email protected].1
1717
with:
1818
args: --accept=200,403,429 --exclude-mail **/*.html **/*.md **/*.txt **/*.json --exclude-file .lychee.excludes
1919
fail: true

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2121
- Enable testing for ExtensiblePlugins using classpath plugins ([#16908](https://github.com/opensearch-project/OpenSearch/pull/16908))
2222
- Introduce system generated ingest pipeline ([#17817](https://github.com/opensearch-project/OpenSearch/pull/17817)))
2323
- Apply cluster state metadata and routing table diff when building cluster state from remote([#18256](https://github.com/opensearch-project/OpenSearch/pull/18256))
24+
- Support create mode in pull-based ingestion and add retries for transient failures ([#18250](https://github.com/opensearch-project/OpenSearch/pull/18250)))
25+
- Decouple the init of Crypto Plugin and KeyProvider in CryptoRegistry ([18270](https://github.com/opensearch-project/OpenSearch/pull18270)))
2426

2527
### Changed
2628

2729
### Dependencies
28-
- Bump `com.google.code.gson:gson` from 2.12.1 to 2.13.0 ([#17923](https://github.com/opensearch-project/OpenSearch/pull/17923))
30+
- Bump `com.google.code.gson:gson` from 2.12.1 to 2.13.1 ([#17923](https://github.com/opensearch-project/OpenSearch/pull/17923), [#18266](https://github.com/opensearch-project/OpenSearch/pull/18266))
2931
- Bump `com.github.spotbugs:spotbugs-annotations` from 4.9.0 to 4.9.3 ([#17922](https://github.com/opensearch-project/OpenSearch/pull/17922))
3032
- Bump `com.microsoft.azure:msal4j` from 1.18.0 to 1.20.0 ([#17925](https://github.com/opensearch-project/OpenSearch/pull/17925))
3133
- Update Apache HttpClient5 and HttpCore5 (CVE-2025-27820) ([#18152](https://github.com/opensearch-project/OpenSearch/pull/18152))
3234
- Bump `org.apache.commons:commons-collections4` from 4.4 to 4.5.0 ([#18101](https://github.com/opensearch-project/OpenSearch/pull/18101))
3335
- Bump `netty` from 4.1.118.Final to 4.1.121.Final ([#18192](https://github.com/opensearch-project/OpenSearch/pull/18192))
34-
- Bump `org.apache.commons:commons-configuration2` from 2.11.0 to 2.12.0 ([#18103](https://github.com/opensearch-project/OpenSearch/pull/18103))
36+
- Bump `org.apache.commons:commons-configuration2` from 2.11.0 to 2.12.0 ([#18103](https://github.com/opensearch-project/OpenSearch/pull/18103), [#18262](https://github.com/opensearch-project/OpenSearch/pull/18262))
3537
- Bump `com.nimbusds:nimbus-jose-jwt` from 10.0.2 to 10.2 ([#18104](https://github.com/opensearch-project/OpenSearch/pull/18104))
3638
- Bump `org.apache.commons:commons-text` from 1.13.0 to 1.13.1 ([#18102](https://github.com/opensearch-project/OpenSearch/pull/18102))
3739
- Bump `reactor-netty` from 1.2.4 to 1.2.5 ([#18243](https://github.com/opensearch-project/OpenSearch/pull/18243))
3840
- Bump `reactor` from 3.5.20 to 3.7.5 ([#18243](https://github.com/opensearch-project/OpenSearch/pull/18243))
41+
- Bump `com.azure:azure-core-http-netty` from 1.15.7 to 1.15.11 ([#18265](https://github.com/opensearch-project/OpenSearch/pull/18265))
42+
- Bump `lycheeverse/lychee-action` from 2.4.0 to 2.4.1 ([#18264](https://github.com/opensearch-project/OpenSearch/pull/18264))
3943

4044
### Deprecated
4145

plugins/ingestion-kafka/src/internalClusterTest/java/org/opensearch/plugin/kafka/IngestFromKafkaIT.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public void testCloseIndex() throws Exception {
138138
client().admin().indices().close(Requests.closeIndexRequest(indexName)).get();
139139
}
140140

141-
public void testUpdateAndDelete() throws Exception {
141+
public void testMessageOperationTypes() throws Exception {
142142
// Step 1: Produce message and wait for it to be searchable
143143

144144
produceData("1", "name", "25", defaultMessageTimestamp, "index");
@@ -168,6 +168,15 @@ public void testUpdateAndDelete() throws Exception {
168168
SearchResponse response = client().prepareSearch(indexName).setQuery(query).get();
169169
return response.getHits().getTotalHits().value() == 0;
170170
});
171+
172+
// Step 4: Validate create operation
173+
produceData("2", "name", "30", defaultMessageTimestamp, "create");
174+
waitForState(() -> {
175+
BoolQueryBuilder query = new BoolQueryBuilder().must(new TermQueryBuilder("_id", "2"));
176+
SearchResponse response = client().prepareSearch(indexName).setQuery(query).get();
177+
assertThat(response.getHits().getTotalHits().value(), is(1L));
178+
return 30 == (Integer) response.getHits().getHits()[0].getSourceAsMap().get("age");
179+
});
171180
}
172181

173182
public void testUpdateWithoutIDField() throws Exception {

plugins/repository-azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies {
4848
api 'com.azure:azure-json:1.3.0'
4949
api 'com.azure:azure-xml:1.1.0'
5050
api 'com.azure:azure-storage-common:12.28.0'
51-
api 'com.azure:azure-core-http-netty:1.15.7'
51+
api 'com.azure:azure-core-http-netty:1.15.11'
5252
api "io.netty:netty-codec-dns:${versions.netty}"
5353
api "io.netty:netty-codec-socks:${versions.netty}"
5454
api "io.netty:netty-codec-http2:${versions.netty}"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ab8382243424bf5d75cd71bf253842c4a9d0ef9d

plugins/repository-azure/licenses/azure-core-http-netty-1.15.7.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.

plugins/repository-hdfs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ dependencies {
6767
api 'org.apache.htrace:htrace-core4:4.2.0-incubating'
6868
api "org.apache.logging.log4j:log4j-core:${versions.log4j}"
6969
api 'org.apache.avro:avro:1.12.0'
70-
api 'com.google.code.gson:gson:2.13.0'
70+
api 'com.google.code.gson:gson:2.13.1'
7171
runtimeOnly "com.google.guava:guava:${versions.guava}"
7272
api "commons-logging:commons-logging:${versions.commonslogging}"
7373
api 'commons-cli:commons-cli:1.9.0'

plugins/repository-hdfs/licenses/gson-2.13.0.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
853ce06c11316b33a8eae5e9095da096a9528b8f

plugins/repository-s3/src/main/java/org/opensearch/repositories/s3/S3AsyncService.java

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
import java.nio.file.Path;
5353
import java.time.Duration;
5454
import java.util.Map;
55+
import java.util.concurrent.ScheduledExecutorService;
5556

5657
import static java.util.Collections.emptyMap;
5758

@@ -75,10 +76,20 @@ class S3AsyncService implements Closeable {
7576
*/
7677
private volatile Map<Settings, S3ClientSettings> derivedClientSettings = emptyMap();
7778

78-
S3AsyncService(final Path configPath) {
79+
/**
80+
* Optional scheduled executor service to use for the client
81+
*/
82+
private final @Nullable ScheduledExecutorService clientExecutorService;
83+
84+
S3AsyncService(final Path configPath, @Nullable ScheduledExecutorService clientExecutorService) {
7985
staticClientSettings = MapBuilder.<String, S3ClientSettings>newMapBuilder()
8086
.put("default", S3ClientSettings.getClientSettings(Settings.EMPTY, "default", configPath))
8187
.immutableMap();
88+
this.clientExecutorService = clientExecutorService;
89+
}
90+
91+
S3AsyncService(final Path configPath) {
92+
this(configPath, null);
8293
}
8394

8495
/**
@@ -173,7 +184,7 @@ synchronized AmazonAsyncS3WithCredentials buildClient(
173184
) {
174185
setDefaultAwsProfilePath();
175186
final S3AsyncClientBuilder builder = S3AsyncClient.builder();
176-
builder.overrideConfiguration(buildOverrideConfiguration(clientSettings));
187+
builder.overrideConfiguration(buildOverrideConfiguration(clientSettings, clientExecutorService));
177188
final AwsCredentialsProvider credentials = buildCredentials(logger, clientSettings);
178189
builder.credentialsProvider(credentials);
179190

@@ -234,7 +245,10 @@ synchronized AmazonAsyncS3WithCredentials buildClient(
234245
return AmazonAsyncS3WithCredentials.create(client, priorityClient, urgentClient, credentials);
235246
}
236247

237-
static ClientOverrideConfiguration buildOverrideConfiguration(final S3ClientSettings clientSettings) {
248+
static ClientOverrideConfiguration buildOverrideConfiguration(
249+
final S3ClientSettings clientSettings,
250+
ScheduledExecutorService clientExecutorService
251+
) {
238252
RetryPolicy retryPolicy = SocketAccess.doPrivileged(
239253
() -> RetryPolicy.builder()
240254
.numRetries(clientSettings.maxRetries)
@@ -243,11 +257,12 @@ static ClientOverrideConfiguration buildOverrideConfiguration(final S3ClientSett
243257
)
244258
.build()
245259
);
260+
ClientOverrideConfiguration.Builder builder = ClientOverrideConfiguration.builder();
261+
if (clientExecutorService != null) {
262+
builder = builder.scheduledExecutorService(clientExecutorService);
263+
}
246264

247-
return ClientOverrideConfiguration.builder()
248-
.retryPolicy(retryPolicy)
249-
.apiCallAttemptTimeout(Duration.ofMillis(clientSettings.requestTimeoutMillis))
250-
.build();
265+
return builder.retryPolicy(retryPolicy).apiCallAttemptTimeout(Duration.ofMillis(clientSettings.requestTimeoutMillis)).build();
251266
}
252267

253268
// pkg private for tests

plugins/repository-s3/src/main/java/org/opensearch/repositories/s3/S3Service.java

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@
9292
import java.time.Duration;
9393
import java.util.Map;
9494
import java.util.concurrent.ConcurrentHashMap;
95+
import java.util.concurrent.ScheduledExecutorService;
9596

9697
import static java.util.Collections.emptyMap;
9798

@@ -115,10 +116,20 @@ class S3Service implements Closeable {
115116
*/
116117
private volatile Map<Settings, S3ClientSettings> derivedClientSettings = new ConcurrentHashMap<>();
117118

118-
S3Service(final Path configPath) {
119+
/**
120+
* Optional scheduled executor service to use for the client
121+
*/
122+
private final @Nullable ScheduledExecutorService clientExecutorService;
123+
124+
S3Service(final Path configPath, @Nullable ScheduledExecutorService clientExecutorService) {
119125
staticClientSettings = MapBuilder.<String, S3ClientSettings>newMapBuilder()
120126
.put("default", S3ClientSettings.getClientSettings(Settings.EMPTY, "default", configPath))
121127
.immutableMap();
128+
this.clientExecutorService = clientExecutorService;
129+
}
130+
131+
S3Service(final Path configPath) {
132+
this(configPath, null);
122133
}
123134

124135
/**
@@ -204,7 +215,7 @@ AmazonS3WithCredentials buildClient(final S3ClientSettings clientSettings) {
204215
final AwsCredentialsProvider credentials = buildCredentials(logger, clientSettings);
205216
builder.credentialsProvider(credentials);
206217
builder.httpClientBuilder(buildHttpClient(clientSettings));
207-
builder.overrideConfiguration(buildOverrideConfiguration(clientSettings));
218+
builder.overrideConfiguration(buildOverrideConfiguration(clientSettings, clientExecutorService));
208219

209220
String endpoint = Strings.hasLength(clientSettings.endpoint) ? clientSettings.endpoint : DEFAULT_S3_ENDPOINT;
210221
if ((endpoint.startsWith("http://") || endpoint.startsWith("https://")) == false) {
@@ -318,8 +329,14 @@ static ProxyConfiguration buildHttpProxyConfiguration(S3ClientSettings clientSet
318329
return proxyConfiguration.build();
319330
}
320331

321-
static ClientOverrideConfiguration buildOverrideConfiguration(final S3ClientSettings clientSettings) {
332+
static ClientOverrideConfiguration buildOverrideConfiguration(
333+
final S3ClientSettings clientSettings,
334+
@Nullable ScheduledExecutorService clientExecutorService
335+
) {
322336
ClientOverrideConfiguration.Builder clientOverrideConfiguration = ClientOverrideConfiguration.builder();
337+
if (clientExecutorService != null) {
338+
clientOverrideConfiguration = clientOverrideConfiguration.scheduledExecutorService(clientExecutorService);
339+
}
323340
if (Strings.hasLength(clientSettings.signerOverride)) {
324341
clientOverrideConfiguration = clientOverrideConfiguration.putAdvancedOption(
325342
SdkAdvancedClientOption.SIGNER,

plugins/repository-s3/src/test/java/org/opensearch/repositories/s3/AwsS3ServiceImplTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ private void launchAWSConfigurationTest(
358358
assertThat(proxyConfiguration.password(), is(expectedProxyPassword));
359359
}
360360

361-
final ClientOverrideConfiguration clientOverrideConfiguration = S3Service.buildOverrideConfiguration(clientSettings);
361+
final ClientOverrideConfiguration clientOverrideConfiguration = S3Service.buildOverrideConfiguration(clientSettings, null);
362362

363363
assertTrue(clientOverrideConfiguration.retryPolicy().isPresent());
364364
assertThat(clientOverrideConfiguration.retryPolicy().get().numRetries(), is(expectedMaxRetries));

plugins/repository-s3/src/test/java/org/opensearch/repositories/s3/S3BlobContainerRetriesTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ public class S3BlobContainerRetriesTests extends AbstractBlobContainerRetriesTes
130130
@Before
131131
public void setUp() throws Exception {
132132
previousOpenSearchPathConf = SocketAccess.doPrivileged(() -> System.setProperty("opensearch.path.conf", configPath().toString()));
133-
service = new S3Service(configPath());
134-
asyncService = new S3AsyncService(configPath());
133+
scheduler = new ScheduledThreadPoolExecutor(1);
134+
service = new S3Service(configPath(), scheduler);
135+
asyncService = new S3AsyncService(configPath(), scheduler);
135136

136137
futureCompletionService = Executors.newSingleThreadExecutor();
137138
streamReaderService = Executors.newSingleThreadExecutor();
138139
transferNIOGroup = new AsyncTransferEventLoopGroup(1);
139140
remoteTransferRetry = Executors.newFixedThreadPool(20);
140141
transferQueueConsumerService = Executors.newFixedThreadPool(2);
141-
scheduler = new ScheduledThreadPoolExecutor(1);
142142
GenericStatsMetricPublisher genericStatsMetricPublisher = new GenericStatsMetricPublisher(10000L, 10, 10000L, 10);
143143
normalPrioritySizeBasedBlockingQ = new SizeBasedBlockingQ(
144144
new ByteSizeValue(Runtime.getRuntime().availableProcessors() * 5L, ByteSizeUnit.GB),

plugins/repository-s3/src/test/java/org/opensearch/repositories/s3/S3ClientSettingsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,13 +314,13 @@ public void testSignerOverrideCanBeSet() {
314314
assertThat(settings.get("other").signerOverride, is(signerOverride));
315315

316316
ClientOverrideConfiguration defaultConfiguration = SocketAccess.doPrivileged(
317-
() -> S3Service.buildOverrideConfiguration(settings.get("default"))
317+
() -> S3Service.buildOverrideConfiguration(settings.get("default"), null)
318318
);
319319
Optional<Signer> defaultSigner = defaultConfiguration.advancedOption(SdkAdvancedClientOption.SIGNER);
320320
assertFalse(defaultSigner.isPresent());
321321

322322
ClientOverrideConfiguration configuration = SocketAccess.doPrivileged(
323-
() -> S3Service.buildOverrideConfiguration(settings.get("other"))
323+
() -> S3Service.buildOverrideConfiguration(settings.get("other"), null)
324324
);
325325
Optional<Signer> otherSigner = configuration.advancedOption(SdkAdvancedClientOption.SIGNER);
326326
assertTrue(otherSigner.isPresent());

release-notes/opensearch.release-notes-3.0.0-alpha1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
- Refactor the `:server` module `org.opensearch.client` to `org.opensearch.transport.client` to eliminate top level split packages for JPMS support ([#17272](https://github.com/opensearch-project/OpenSearch/pull/17272))
9191
- Use Lucene `BM25Similarity` as default since the `LegacyBM25Similarity` is marked as deprecated ([#17306](https://github.com/opensearch-project/OpenSearch/pull/17306))
9292
- Wildcard field index only 3gram of the input data [#17349](https://github.com/opensearch-project/OpenSearch/pull/17349)
93-
- Use BC libraries to parse PEM files, increase key length, allow general use of known cryptographic binary extensions, remove unused BC dependencies ([#3420](https://github.com/opensearch-project/OpenSearch/pull/14912))
93+
- Use BC libraries to parse PEM files, increase key length, allow general use of known cryptographic binary extensions, remove unused BC dependencies ([#17393](https://github.com/opensearch-project/OpenSearch/pull/17393))
9494
- Add optional enum set read / write functionality to stream input / output ([#17556](https://github.com/opensearch-project/OpenSearch/pull/17556))
9595
- Convert transport-reactor-netty4 to use gradle version catalog [#17233](https://github.com/opensearch-project/OpenSearch/pull/17233)
9696
- Increase force merge threads to 1/8th of cores [#17255](https://github.com/opensearch-project/OpenSearch/pull/17255)

release-notes/opensearch.release-notes-3.0.0-beta1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,12 @@
144144
- Refactor the `:server` module `org.opensearch.client` to `org.opensearch.transport.client` to eliminate top level split packages for JPMS support ([#17272](https://github.com/opensearch-project/OpenSearch/pull/17272))
145145
- Use Lucene `BM25Similarity` as default since the `LegacyBM25Similarity` is marked as deprecated ([#17306](https://github.com/opensearch-project/OpenSearch/pull/17306))
146146
- Wildcard field index only 3gram of the input data [#17349](https://github.com/opensearch-project/OpenSearch/pull/17349)
147-
- Use BC libraries to parse PEM files, increase key length, allow general use of known cryptographic binary extensions, remove unused BC dependencies ([#3420](https://github.com/opensearch-project/OpenSearch/pull/14912))
147+
- Use BC libraries to parse PEM files, increase key length, allow general use of known cryptographic binary extensions, remove unused BC dependencies ([#17393](https://github.com/opensearch-project/OpenSearch/pull/17393))
148148
- Add optional enum set read / write functionality to stream input / output ([#17556](https://github.com/opensearch-project/OpenSearch/pull/17556))
149149
- Convert transport-reactor-netty4 to use gradle version catalog [#17233](https://github.com/opensearch-project/OpenSearch/pull/17233)
150150
- Increase force merge threads to 1/8th of cores [#17255](https://github.com/opensearch-project/OpenSearch/pull/17255)
151151
- TieredSpilloverCache took-time threshold now guards heap tier as well as disk tier [#17190](https://github.com/opensearch-project/OpenSearch/pull/17190)
152-
- Migrate BC libs to their FIPS counterparts ([#14912](https://github.com/opensearch-project/OpenSearch/pull/14912))
152+
- Migrate BC libs to their FIPS counterparts ([#17507](https://github.com/opensearch-project/OpenSearch/pull/17507))
153153
- Increase the floor segment size to 16MB ([#17699](https://github.com/opensearch-project/OpenSearch/pull/17699))
154154
- Unwrap singleton DocValues in global ordinal value source of composite histogram aggregation ([#17740](https://github.com/opensearch-project/OpenSearch/pull/17740))
155155
- Unwrap singleton DocValues in date histogram aggregation. ([#17643](https://github.com/opensearch-project/OpenSearch/pull/17643))

release-notes/opensearch.release-notes-3.0.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@
148148
- Refactor the `:server` module `org.opensearch.client` to `org.opensearch.transport.client` to eliminate top level split packages for JPMS support ([#17272](https://github.com/opensearch-project/OpenSearch/pull/17272))
149149
- Use Lucene `BM25Similarity` as default since the `LegacyBM25Similarity` is marked as deprecated ([#17306](https://github.com/opensearch-project/OpenSearch/pull/17306))
150150
- Wildcard field index only 3gram of the input data [#17349](https://github.com/opensearch-project/OpenSearch/pull/17349)
151-
- Use BC libraries to parse PEM files, increase key length, allow general use of known cryptographic binary extensions, remove unused BC dependencies ([#3420](https://github.com/opensearch-project/OpenSearch/pull/14912))
151+
- Use BC libraries to parse PEM files, increase key length, allow general use of known cryptographic binary extensions, remove unused BC dependencies ([#17393](https://github.com/opensearch-project/OpenSearch/pull/17393))
152152
- Add optional enum set read / write functionality to stream input / output ([#17556](https://github.com/opensearch-project/OpenSearch/pull/17556))
153153
- Convert transport-reactor-netty4 to use gradle version catalog [#17233](https://github.com/opensearch-project/OpenSearch/pull/17233)
154154
- Increase force merge threads to 1/8th of cores [#17255](https://github.com/opensearch-project/OpenSearch/pull/17255)
155155
- TieredSpilloverCache took-time threshold now guards heap tier as well as disk tier [#17190](https://github.com/opensearch-project/OpenSearch/pull/17190)
156-
- Migrate BC libs to their FIPS counterparts ([#14912](https://github.com/opensearch-project/OpenSearch/pull/14912))
156+
- Migrate BC libs to their FIPS counterparts ([#17507](https://github.com/opensearch-project/OpenSearch/pull/17507))
157157
- Increase the floor segment size to 16MB ([#17699](https://github.com/opensearch-project/OpenSearch/pull/17699))
158158
- Unwrap singleton DocValues in global ordinal value source of composite histogram aggregation ([#17740](https://github.com/opensearch-project/OpenSearch/pull/17740))
159159
- Unwrap singleton DocValues in date histogram aggregation. ([#17643](https://github.com/opensearch-project/OpenSearch/pull/17643))

0 commit comments

Comments
 (0)