Skip to content

Commit bc2d6e2

Browse files
authored
Merge branch 'main' into ssl-file-entitlement-checks
2 parents 240e611 + 4be53f5 commit bc2d6e2

File tree

61 files changed

+257
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+257
-97
lines changed

docs/resiliency/index.asciidoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,10 @@ in the case of each type of failure. The plan is to have a test case that valida
118118
[discrete]
119119
=== Run Jepsen (STATUS: ONGOING)
120120

121-
We have ported the known scenarios in the Jepsen blogs that check loss of acknowledged writes to our testing infrastructure.
122-
The new tests are run continuously in our testing farm and are passing. We are also working on running Jepsen independently to verify
123-
that no failures are found.
121+
We have ported the known scenarios in the Jepsen blogs that check loss of
122+
acknowledged writes to our testing infrastructure. The new tests are run
123+
continuously in our testing farm and are passing. We will also monitor for new
124+
failure scenarios and adapt our test suite as needed.
124125

125126
== Completed
126127

server/src/main/java/org/elasticsearch/TransportVersions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ static TransportVersion def(int id) {
204204
public static final TransportVersion VOYAGE_AI_INTEGRATION_ADDED = def(9_014_0_00);
205205
public static final TransportVersion BYTE_SIZE_VALUE_ALWAYS_USES_BYTES = def(9_015_0_00);
206206
public static final TransportVersion ESQL_SERIALIZE_SOURCE_FUNCTIONS_WARNINGS = def(9_016_0_00);
207+
public static final TransportVersion ESQL_DRIVER_NODE_DESCRIPTION = def(9_017_0_00);
207208

208209
/*
209210
* STOP! READ THIS FIRST! No, really,

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/AnalyticsCollection.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import org.elasticsearch.common.io.stream.StreamOutput;
1515
import org.elasticsearch.common.io.stream.Writeable;
1616
import org.elasticsearch.common.xcontent.XContentHelper;
17+
import org.elasticsearch.core.UpdateForV10;
1718
import org.elasticsearch.xcontent.ObjectParser;
1819
import org.elasticsearch.xcontent.ToXContentObject;
1920
import org.elasticsearch.xcontent.XContentBuilder;
@@ -31,6 +32,7 @@
3132
* @deprecated in 9.0
3233
*/
3334
@Deprecated
35+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
3436
public class AnalyticsCollection implements Writeable, ToXContentObject {
3537

3638
private static final ObjectParser<AnalyticsCollection, String> PARSER = ObjectParser.fromBuilder(

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/AnalyticsCollectionResolver.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import org.elasticsearch.cluster.service.ClusterService;
1515
import org.elasticsearch.common.Strings;
1616
import org.elasticsearch.common.regex.Regex;
17+
import org.elasticsearch.core.UpdateForV10;
1718
import org.elasticsearch.injection.guice.Inject;
1819

1920
import java.util.ArrayList;
@@ -31,6 +32,7 @@
3132
* @deprecated in 9.0
3233
*/
3334
@Deprecated
35+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
3436
public class AnalyticsCollectionResolver {
3537
private final IndexNameExpressionResolver indexNameExpressionResolver;
3638

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/AnalyticsCollectionService.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.elasticsearch.client.internal.OriginSettingClient;
2020
import org.elasticsearch.cluster.ClusterState;
2121
import org.elasticsearch.core.TimeValue;
22+
import org.elasticsearch.core.UpdateForV10;
2223
import org.elasticsearch.injection.guice.Inject;
2324
import org.elasticsearch.logging.LogManager;
2425
import org.elasticsearch.logging.Logger;
@@ -36,6 +37,7 @@
3637
* @deprecated in 9.0
3738
*/
3839
@Deprecated
40+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
3941
public class AnalyticsCollectionService {
4042

4143
private static final Logger logger = LogManager.getLogger(AnalyticsCollectionService.class);

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/AnalyticsConstants.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@
77

88
package org.elasticsearch.xpack.application.analytics;
99

10+
import org.elasticsearch.core.UpdateForV10;
11+
1012
/**
1113
* @deprecated in 9.0
1214
*/
1315
@Deprecated
16+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
1417
public class AnalyticsConstants {
1518

1619
private AnalyticsConstants() {}

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/AnalyticsEventIngestService.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import org.elasticsearch.ResourceNotFoundException;
1111
import org.elasticsearch.action.ActionListener;
12+
import org.elasticsearch.core.UpdateForV10;
1213
import org.elasticsearch.injection.guice.Inject;
1314
import org.elasticsearch.xpack.application.analytics.action.PostAnalyticsEventAction;
1415
import org.elasticsearch.xpack.application.analytics.ingest.AnalyticsEventEmitter;
@@ -20,6 +21,7 @@
2021
* @deprecated in 9.0
2122
*/
2223
@Deprecated
24+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
2325
public class AnalyticsEventIngestService {
2426
private final AnalyticsCollectionResolver collectionResolver;
2527

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/AnalyticsTemplateRegistry.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import org.elasticsearch.cluster.metadata.ComposableIndexTemplate;
1212
import org.elasticsearch.cluster.service.ClusterService;
1313
import org.elasticsearch.common.settings.Settings;
14+
import org.elasticsearch.core.UpdateForV10;
1415
import org.elasticsearch.threadpool.ThreadPool;
1516
import org.elasticsearch.xcontent.NamedXContentRegistry;
1617
import org.elasticsearch.xcontent.XContentParserConfiguration;
@@ -35,6 +36,7 @@
3536
* @deprecated in 9.0
3637
*/
3738
@Deprecated
39+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
3840
public class AnalyticsTemplateRegistry extends IndexTemplateRegistry {
3941

4042
// This number must be incremented when we make changes to built-in templates.

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/action/DeleteAnalyticsCollectionAction.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import org.elasticsearch.common.io.stream.StreamInput;
1616
import org.elasticsearch.common.io.stream.StreamOutput;
1717
import org.elasticsearch.core.TimeValue;
18+
import org.elasticsearch.core.UpdateForV10;
1819
import org.elasticsearch.xcontent.ParseField;
1920
import org.elasticsearch.xcontent.ToXContentObject;
2021
import org.elasticsearch.xcontent.XContentBuilder;
@@ -28,6 +29,7 @@
2829
* @deprecated in 9.0
2930
*/
3031
@Deprecated
32+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
3133
public class DeleteAnalyticsCollectionAction {
3234

3335
public static final String NAME = "cluster:admin/xpack/application/analytics/delete";

x-pack/plugin/ent-search/src/main/java/org/elasticsearch/xpack/application/analytics/action/GetAnalyticsCollectionAction.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import org.elasticsearch.common.io.stream.StreamInput;
1515
import org.elasticsearch.common.io.stream.StreamOutput;
1616
import org.elasticsearch.core.TimeValue;
17+
import org.elasticsearch.core.UpdateForV10;
1718
import org.elasticsearch.xcontent.ParseField;
1819
import org.elasticsearch.xcontent.ToXContent;
1920
import org.elasticsearch.xcontent.ToXContentObject;
@@ -29,6 +30,7 @@
2930
* @deprecated in 9.0
3031
*/
3132
@Deprecated
33+
@UpdateForV10(owner = UpdateForV10.Owner.ENTERPRISE_SEARCH)
3234
public class GetAnalyticsCollectionAction {
3335

3436
public static final String NAME = "cluster:admin/xpack/application/analytics/get";

0 commit comments

Comments
 (0)