This is an automated email from the ASF dual-hosted git repository.
dlmarion pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
from 4777675d7e Merge remote-tracking branch 'upstream/3.1'
add f8fb87291b Enable graceful shutdown of server processes (#5193)
add 9fee5991fb Merge branch '2.1' into 3.1
new c4385208de Merge branch '3.1'
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../accumulo/core/lock/ServiceLockSupport.java | 30 +-
.../accumulo/core/rpc/clients/ManagerClient.java | 10 +-
....java => ServerProcessServiceThriftClient.java} | 35 +-
.../core/rpc/clients/ThriftClientTypes.java | 3 +
.../core/util/threads/ThreadPoolNames.java | 1 +
core/src/main/scripts/generate-thrift.sh | 2 +-
core/src/main/spotbugs/exclude-filter.xml | 1 +
.../core/manager/thrift/ManagerClientService.java | 1271 ++++++++++++++++++++
.../core/process/thrift/ServerProcessService.java | 619 ++++++++++
core/src/main/thrift/manager.thrift | 9 +
.../process.thrift} | 14 +-
.../MiniAccumuloClusterControl.java | 64 +
.../org/apache/accumulo/server/AbstractServer.java | 66 +-
.../accumulo/server/manager/LiveTServerSet.java | 22 +-
.../accumulo/server/rpc/ThriftProcessorTypes.java | 35 +-
.../org/apache/accumulo/server/util/Admin.java | 33 +
.../server/zookeeper/DistributedWorkQueue.java | 26 +-
.../org/apache/accumulo/compactor/Compactor.java | 337 +++---
.../apache/accumulo/gc/SimpleGarbageCollector.java | 255 ++--
.../java/org/apache/accumulo/manager/Manager.java | 32 +-
.../manager/ManagerClientServiceHandler.java | 12 +
.../accumulo/manager/recovery/RecoveryManager.java | 4 +-
.../apache/accumulo/monitor/EmbeddedWebServer.java | 2 +-
.../java/org/apache/accumulo/monitor/Monitor.java | 19 +-
.../org/apache/accumulo/tserver/ScanServer.java | 56 +-
.../org/apache/accumulo/tserver/TabletServer.java | 116 +-
.../org/apache/accumulo/tserver/log/LogSorter.java | 17 +-
.../apache/accumulo/tserver/ScanServerTest.java | 5 +
.../tserver/log/RecoveryLogsIteratorTest.java | 11 +-
.../tserver/log/SortedLogRecoveryTest.java | 48 +-
.../tserver/log/TestUpgradePathForWALogs.java | 17 +-
.../accumulo/test/SelfStoppingScanServer.java | 2 +-
.../compaction/ExternalDoNothingCompactor.java | 2 +-
.../accumulo/test/fate/FateExecutionOrderIT.java | 1 +
.../test/functional/GracefulShutdownIT.java | 295 +++++
35 files changed, 3043 insertions(+), 429 deletions(-)
copy
core/src/main/java/org/apache/accumulo/core/rpc/clients/{ManagerClient.java =>
ServerProcessServiceThriftClient.java} (58%)
create mode 100644
core/src/main/thrift-gen-java/org/apache/accumulo/core/process/thrift/ServerProcessService.java
copy
core/src/main/{java/org/apache/accumulo/core/fate/StackOverflowException.java
=> thrift/process.thrift} (76%)
create mode 100644
test/src/main/java/org/apache/accumulo/test/functional/GracefulShutdownIT.java