This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit 4cbb3d3751873af647d6a2901f8663382255e7ee
Merge: f2aa47dbbc 78d7c9fb94
Author: Keith Turner <[email protected]>
AuthorDate: Thu Dec 4 21:30:26 2025 +0000

    Merge branch '2.1'

 core/src/main/java/org/apache/accumulo/core/conf/Property.java | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --cc core/src/main/java/org/apache/accumulo/core/conf/Property.java
index 986e774c49,81e5a87532..8c9a3b1ac2
--- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java
+++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
@@@ -290,13 -274,30 +290,19 @@@ public enum Property 
            + " This does not equate to how often tickets are actually renewed 
(which is"
            + " performed at 80% of the ticket lifetime).",
        "1.6.5"),
 -  @Deprecated(since = "2.1.3")
 -  @ReplacedBy(property = RPC_MAX_MESSAGE_SIZE)
 -  GENERAL_MAX_MESSAGE_SIZE("general.server.message.size.max", "1G", 
PropertyType.BYTES,
 -      "The maximum size of a message that can be sent to a server.", "1.5.0"),
 -  @Experimental
    GENERAL_OPENTELEMETRY_ENABLED("general.opentelemetry.enabled", "false", 
PropertyType.BOOLEAN,
-       "Enables tracing functionality using OpenTelemetry (assuming 
OpenTelemetry is configured).",
+       "Enables tracing for all spans in the process using OpenTelemetry 
(assuming OpenTelemetry is "
+           + "configured). When true, if a thread with no active trace 
encounters a span, then a new trace with "
+           + "a new id is started. When this property is false, RPC requests 
that arrive at a process with tracing "
+           + "set will still emit traces for all spans as long as 
OpenTelemetry is properly configured. For example, "
+           + "if this property is only set for the Accumulo GC server, then 
all RPCs initiated by the GC would emit "
+           + "trace data across the cluster. However, threads on non gc server 
processes with no active trace would "
+           + "not emit anything when they encounter a span.",
        "2.1.0"),
 -  GENERAL_THREADPOOL_SIZE("general.server.threadpool.size", "1", 
PropertyType.COUNT,
 +  GENERAL_THREADPOOL_SIZE("general.server.threadpool.size", "3", 
PropertyType.COUNT,
        "The number of threads to use for server-internal scheduled tasks.", 
"2.1.0"),
 -  @Deprecated(since = "2.1.0")
 -  @ReplacedBy(property = GENERAL_THREADPOOL_SIZE)
 -  
GENERAL_SIMPLETIMER_THREADPOOL_SIZE("general.server.simpletimer.threadpool.size",
 "1",
 -      PropertyType.COUNT, "The number of threads to use for server-internal 
scheduled tasks.",
 -      "1.7.0"),
    // If you update the default type, be sure to update the default used for 
initialization failures
    // in VolumeManagerImpl
 -  @Experimental
    GENERAL_VOLUME_CHOOSER("general.volume.chooser", 
RandomVolumeChooser.class.getName(),
        PropertyType.CLASSNAME,
        "The class that will be used to select which volume will be used to 
create new files.",

Reply via email to