Replace non-public ConfigurationImpl with test utility#3381
Open
SethSmucker wants to merge 7 commits into
Open
Replace non-public ConfigurationImpl with test utility#3381SethSmucker wants to merge 7 commits into
SethSmucker wants to merge 7 commits into
Conversation
Collaborator
|
There is new code in 4.0.0 that offers this functionality in the public API. Could backport these changes to 2.1. |
Create a test utility class AccumuloConfigurationWrapper that implements PluginEnvironment.Configuration by wrapping an AccumuloConfiguration. This replaces usage of non-public org.apache.accumulo.core.util.ConfigurationImpl.
Per review feedback, this class is not inherently test-only. Moved from datawave.test to datawave.accumulo.core.util in the core/common-utils module.
d6851e8 to
b94533e
Compare
avgAGB
approved these changes
Apr 20, 2026
Collaborator
|
Created apache/accumulo#6336 based on @keith-turner's comment which would avoid the need for the AccumuloConfigurationWrapper class. |
ddanielr
reviewed
Apr 24, 2026
| } | ||
|
|
||
| @Override | ||
| public Map<String,String> getWithPrefix(String prefix) { |
Collaborator
There was a problem hiding this comment.
This method needs to add validation for the property and call
conf.getAllPropertiesWithPrefix.
The code in AccumuloConfiguration is special since most properties that use a defined accumulo prefix must be returned as a snapshot set.
This is handled in AccumuloConfiguration.getAllPropertiesWithPrefix() by using a ReentrantLock.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
AccumuloConfigurationWrappertest utility in common-test moduleorg.apache.accumulo.core.util.ConfigurationImplwith the new wrapperFixes #3375
Part of #2443