You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix missing block terminator (triple backticks), which caused the
Table section to be included inside the block
* Add language types for blocks for syntax highlighting
* Replace 4-space indent with explicit backticks for blocks
* Update some dependencies also
This fixes#446
Overriding properties is useful if you can't change [accumulo.properties]. It's done when [running Accumulo using Docker](https://github.com/apache/accumulo-docker).
@@ -51,7 +51,9 @@ in their description on the [server properties] page. System configuration will
51
51
settings take effect immediately, some require a restart of the process which is indicated in the **zk mutable** section of their description. System configuration can be set using
52
52
the following shell command:
53
53
54
-
config -s PROPERTY=VALUE
54
+
```console
55
+
config -s PROPERTY=VALUE
56
+
```
55
57
56
58
They can also be set using {% jlink org.apache.accumulo.core.client.admin.InstanceOperations %} in the Java API:
Namespace configuration refers to [table.* properties] set for a certain table namespace (i.e. group of tables). These settings are stored in ZooKeeper. Namespace configuration
76
78
will override System configuration and can be set using the following shell command:
77
79
78
-
config -ns NAMESPACE -s PROPERTY=VALUE
80
+
```console
81
+
config -ns NAMESPACE -s PROPERTY=VALUE
82
+
```
79
83
80
84
It can also be set using {% jlink org.apache.accumulo.core.client.admin.NamespaceOperations %} in the Java API:
Table configuration refers to [table.* properties] set for a certain table. These settings are stored in ZooKeeper and can be set using the following shell command:
99
104
100
-
config -t TABLE-s PROPERTY=VALUE
105
+
```console
106
+
config -t TABLE -s PROPERTY=VALUE
107
+
```
101
108
102
109
They can also be set using {% jlink org.apache.accumulo.core.client.admin.TableOperations %} in the Java API:
0 commit comments