This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
from bf16a1d302 speeds up checking zoo locks for lots of server processes (#5058) add e560e0e0c3 Add ZooKeeper Namespace Id-to-name mapping (#4996) new d3925b7af2 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: .../java/org/apache/accumulo/core/Constants.java | 1 - .../accumulo/core/clientImpl/ClientContext.java | 6 + .../accumulo/core/clientImpl/NamespaceMapping.java | 164 +++++++++++++++++++++ .../accumulo/core/clientImpl/Namespaces.java | 56 +------ .../core/clientImpl/NamespaceMappingTest.java | 72 +++++++++ .../accumulo/server/init/ZooKeeperInitializer.java | 7 +- .../accumulo/server/tables/TableManager.java | 34 +++-- .../apache/accumulo/manager/tableOps/Utils.java | 12 -- .../create/PopulateZookeeperWithNamespace.java | 16 +- .../tableOps/namespace/rename/RenameNamespace.java | 23 +-- .../accumulo/manager/upgrade/Upgrader11to12.java | 29 +++- .../manager/upgrade/Upgrader11to12Test.java | 43 +++++- 12 files changed, 351 insertions(+), 112 deletions(-) create mode 100644 core/src/main/java/org/apache/accumulo/core/clientImpl/NamespaceMapping.java create mode 100644 core/src/test/java/org/apache/accumulo/core/clientImpl/NamespaceMappingTest.java