This is an automated email from the ASF dual-hosted git repository.
nizhikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new b1907143894 MINOR: Cleanup dead IgniteFeatures entries (#11709)
b1907143894 is described below
commit b190714389497fffd628c0ca616d2f8b4658f5c7
Author: Nikolay <[email protected]>
AuthorDate: Thu Dec 5 13:16:48 2024 +0300
MINOR: Cleanup dead IgniteFeatures entries (#11709)
---
.../org/apache/ignite/internal/IgniteFeatures.java | 30 ----------------------
.../opencensus/OpenCensusTracingSpiTest.java | 8 ------
2 files changed, 38 deletions(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
b/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
index dc60b4611ee..a89461b462b 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
@@ -56,12 +56,6 @@ public enum IgniteFeatures {
*/
TRANSACTION_OWNER_THREAD_DUMP_PROVIDING(6),
- /** Displaying versbose transaction information: --info option of --tx
control script command. */
- TX_INFO_COMMAND(7),
-
- /** Command which allow to detect and cleanup garbage which could left
after destroying caches in shared groups */
- FIND_AND_DELETE_GARBAGE_COMMAND(8),
-
/** Support of cluster read-only mode. */
CLUSTER_READ_ONLY_MODE(9),
@@ -77,9 +71,6 @@ public enum IgniteFeatures {
/** Replacing TcpDiscoveryNode field with nodeId field in discovery
messages. */
TCP_DISCOVERY_MESSAGE_NODE_COMPACT_REPRESENTATION(14),
- /** LRT system and user time dump settings. */
- LRT_SYSTEM_USER_TIME_DUMP_SETTINGS(18),
-
/** Partition Map Exchange-free switch on baseline node left at fully
rebalanced cluster. */
PME_FREE_SWITCH(19),
@@ -99,33 +90,12 @@ public enum IgniteFeatures {
/** Persistence caches can be snapshot. */
PERSISTENCE_CACHE_SNAPSHOT(23),
- /** Tracing. */
- TRACING(26),
-
- /** Distributed change timeout for dump long operations. */
- DISTRIBUTED_CHANGE_LONG_OPERATIONS_DUMP_TIMEOUT(30),
-
- /** New region for volatile data. */
- VOLATILE_DATA_STRUCTURES_REGION(33),
-
- /** Check secondary indexes inline size on join/by control utility
request. */
- CHECK_INDEX_INLINE_SIZES(36),
-
- /** Distributed propagation of tx collisions dump interval. */
- DISTRIBUTED_TX_COLLISIONS_DUMP(37),
-
/** Remove metadata from cluster for specified type. */
REMOVE_METADATA(39),
/** Support policy of shutdown. */
SHUTDOWN_POLICY(40),
- /** Force rebuild, list or request indexes rebuild status from control
script. */
- INDEXES_MANIPULATIONS_FROM_CONTROL_SCRIPT(42),
-
- /** Pk index keys are applied in correct order. */
- SPECIFIED_SEQ_PK_KEYS(45),
-
/** Compatibility support for new fields which are configured split. */
SPLITTED_CACHE_CONFIGURATIONS_V2(46),
diff --git
a/modules/opencensus/src/test/java/org/apache/ignite/internal/processors/monitoring/opencensus/OpenCensusTracingSpiTest.java
b/modules/opencensus/src/test/java/org/apache/ignite/internal/processors/monitoring/opencensus/OpenCensusTracingSpiTest.java
index 00939681b4a..8308e6dc8e0 100644
---
a/modules/opencensus/src/test/java/org/apache/ignite/internal/processors/monitoring/opencensus/OpenCensusTracingSpiTest.java
+++
b/modules/opencensus/src/test/java/org/apache/ignite/internal/processors/monitoring/opencensus/OpenCensusTracingSpiTest.java
@@ -25,7 +25,6 @@ import io.opencensus.trace.Status;
import io.opencensus.trace.export.SpanData;
import org.apache.ignite.events.EventType;
import org.apache.ignite.internal.IgniteEx;
-import org.apache.ignite.internal.IgniteFeatures;
import org.apache.ignite.internal.processors.tracing.MTC;
import org.apache.ignite.internal.processors.tracing.SpanTags;
import org.apache.ignite.spi.tracing.Scope;
@@ -346,13 +345,6 @@ public class OpenCensusTracingSpiTest extends
AbstractTracingTest {
assertTrue(nodejobMsgTags.stream().anyMatch(it ->
it.equals(stringAttributeValue(COMMUNICATION_JOB_EXECUTE_RESPONSE.spanName()))));
}
- /**
- */
- @Test
- public void testTracingFeatureAvailable() {
- assertTrue(IgniteFeatures.nodeSupports(IgniteFeatures.allFeatures(),
IgniteFeatures.TRACING));
- }
-
/**
* Ensure that root discovery.custom.event have message.class with
corresponding value.
*