Conversation
ddanielr
reviewed
Sep 12, 2026
| They can also be set using {% jlink org.apache.accumulo.core.client.admin.ResourceGroupOperations %} in the Java API: | ||
|
|
||
| ```java | ||
| client.resourceGroupOperations().setProperty("table.durability", "flush"); |
Contributor
There was a problem hiding this comment.
This example is using a table property instead of a server property.
I think this is actually a case where we would want a failure.
ddanielr
reviewed
Sep 12, 2026
Comment on lines
+97
to
+101
| client.resourceGroupOperations().modifyProperties(properties -> { | ||
| properties.remove("table.file.max"); | ||
| properties.put("table.bloom.enabled", "true"); | ||
| properties.put("table.bloom.error.rate", "0.75"); | ||
| properties.put("table.bloom.size", "128000"); |
Contributor
There was a problem hiding this comment.
These are all table properties.
Suggested change
| client.resourceGroupOperations().modifyProperties(properties -> { | |
| properties.remove("table.file.max"); | |
| properties.put("table.bloom.enabled", "true"); | |
| properties.put("table.bloom.error.rate", "0.75"); | |
| properties.put("table.bloom.size", "128000"); | |
| client.resourceGroupOperations().modifyProperties(properties -> { | |
| properties.remove("general.block.cache.manager.class"); | |
| properties.put("general.low.mem.protection.scan", "true"); | |
| properties.put("general.server.iter.opts.compression", "zstd"); | |
| properties.put("tserver.summary.retrieval.threads", "128"); |
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.
No description provided.