-
Notifications
You must be signed in to change notification settings - Fork 134
Updated 4.x design, features, and quickstart user manual pages #487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,11 +25,7 @@ process name referenced in this documentation. | |
| ## Setup for testing or development | ||
|
|
||
| If you are setting up Accumulo for **testing or development,** consider using | ||
| the following tools: | ||
|
|
||
| * [Uno] sets up Accumulo on a single machine for development | ||
| * [Muchos] sets up Accumulo on a cluster (optionally launched in Amazon EC2 and | ||
| Microsoft Azure VM) | ||
| [Uno] to set up a single instance Accumulo cluster. | ||
|
|
||
| If you are setting up Accumulo for a **production** environment, follow the | ||
| instructions below. | ||
|
|
@@ -138,7 +134,7 @@ instance. | |
| The following command will perform the initialization. | ||
|
|
||
| ``` | ||
| accumulo init | ||
| accumulo inst init | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not seeing it here, but is there an example for the group keyed maps? I looked at the raw ? I have something like this on my deployments: tserver:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are referring to the cluster.yaml file syntax? The file is mentioned at https://accumulo.apache.org/docs/4.x/configuration/files#clusteryaml, which is not part of this change. It's probably worth documenting the structure just to point out that |
||
| ``` | ||
|
|
||
| The initialization command will prompt for the following information. | ||
|
|
@@ -176,7 +172,7 @@ command followed by the service name. For example, to start only the tserver, | |
| run: | ||
|
|
||
| ``` | ||
| accumulo tserver | ||
| accumulo proc tserver | ||
| ``` | ||
|
|
||
| The process will run in the foreground. Use ctrl-c to quit. | ||
|
|
@@ -226,11 +222,9 @@ file contains sections that should be configured with a list of node names in ya | |
| * [monitor] : Node where Accumulo monitoring web server is run. | ||
| * [tserver] : Accumulo worker processes. List all of the nodes where tablet | ||
| servers should run. | ||
| * [sserver] : Optional. List of all nodes where scan servers should run. | ||
| * [compaction.coordinator] : Optional. Must specify one node. Can specify a few | ||
| for fault tolerance. | ||
| * [compaction.compactor] : Optional. Accumulo external compactor processes. List of | ||
| * [compactor] : Accumulo external compactor processes. List of | ||
| all nodes where compactors should run. | ||
| * [sserver] : Optional. List of all nodes where scan servers should run. | ||
|
|
||
| The Accumulo, Hadoop, and Zookeeper software should be present at the same | ||
| location on every node. Also, the files in the `conf` directory must be copied to | ||
|
|
@@ -290,10 +284,8 @@ When finished, use the following commands to stop Accumulo: | |
| [manager]: {% durl configuration/files#managers %} | ||
| [tserver]: {% durl configuration/files#tservers %} | ||
| [tracer]: {% durl configuration/files#tracers %} | ||
| [compaction.coordinator]: {% durl configuration/files#compaction%20coordinator %} | ||
| [compaction.compactor]: {% durl configuration/files#compaction%20compactor %} | ||
| [compactor]: {% durl configuration/files#compaction%20compactor %} | ||
| [sserver]: {% durl configuration/files#sserver %} | ||
| [Uno]: https://github.com/apache/fluo-uno | ||
| [Muchos]: https://github.com/apache/fluo-muchos | ||
| [Uno]: https://github.com/apache/accumulo-uno | ||
| [Erasure Coding]: https://hadoop.apache.org/docs/r3.2.0/hadoop-project-dist/hadoop-hdfs/HDFSErasureCoding.html | ||
| [ec-guide]: {% durl administration/erasure-coding %} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Searching for "Compaction Coordinator" and "CompactionCoordinator" yields a few more spots that can be cleaned up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated in d4f7fcc