EdColeman opened a new pull request, #3003:
URL: https://github.com/apache/accumulo/pull/3003
The original rework of the prop store was using a separate ZooKeeper node
under the "original" configuration node. In ZooKeeper the structure looked
like:
```
/accumulo/[instance id]/config/encoded_props <-- system props
/accumulo/[instance id]/namespaces/[nid]/conf/encoded_props <-- namespace
props
/accumulo/[instance id]/tables/[tid]/conf/encoded_props <-- table props
```
This removed that extra node an stores the configuration directly in the
configuration node. The structure now looks like:
```
/accumulo/[instance id]/config <-- system props
/accumulo/[instance id]/namespaces/[nid]/conf <-- namespace props
/accumulo/[instance id]/tables/[tid]/conf <-- table props
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]