ACCUMULO-3008 Fix incorrect opts for bloom and batch example readmes.

Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/967e328a
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/967e328a
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/967e328a

Branch: refs/heads/1.6.1-SNAPSHOT
Commit: 967e328af087cbf90816b8e7b70f64600a2fd10b
Parents: b2fbc06
Author: Josh Elser <els...@apache.org>
Authored: Mon Jul 21 19:39:54 2014 -0400
Committer: Josh Elser <els...@apache.org>
Committed: Mon Jul 21 19:39:54 2014 -0400

----------------------------------------------------------------------
 docs/examples/README.batch | 2 +-
 docs/examples/README.bloom | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/967e328a/docs/examples/README.batch
----------------------------------------------------------------------
diff --git a/docs/examples/README.batch b/docs/examples/README.batch
index e78e808..9aec234 100644
--- a/docs/examples/README.batch
+++ b/docs/examples/README.batch
@@ -41,7 +41,7 @@ You must also create the table, batchtest1, ahead of time. 
(In the shell, use "c
 
     $ ./bin/accumulo shell -u username -e "createtable batchtest1"
     $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.SequentialBatchWriter -i instance -z 
zookeepers -u username -p password -t batchtest1 --start 0 --num 10000 --size 
50 --batchMemory 20M --batchLatency 500 --batchThreads 20 --vis exampleVis
-    $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchScanner -i instance -z 
zookeepers -u username -p password -t batchtest1 --num 100 --min 0 --max 10000 
--size 50 --scanThreads 20 --vis exampleVis
+    $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchScanner -i instance -z 
zookeepers -u username -p password -t batchtest1 --num 100 --min 0 --max 10000 
--size 50 --scanThreads 20 --auths exampleVis
     07 11:33:11,103 [client.CountingVerifyingReceiver] INFO : Generating 100 
random queries...
     07 11:33:11,112 [client.CountingVerifyingReceiver] INFO : finished
     07 11:33:11,260 [client.CountingVerifyingReceiver] INFO : 694.44 
lookups/sec   0.14 secs

http://git-wip-us.apache.org/repos/asf/accumulo/blob/967e328a/docs/examples/README.bloom
----------------------------------------------------------------------
diff --git a/docs/examples/README.bloom b/docs/examples/README.bloom
index ca6a15c..571cbf1 100644
--- a/docs/examples/README.bloom
+++ b/docs/examples/README.bloom
@@ -39,7 +39,7 @@ Below 1 million random values are inserted into accumulo.  
The randomly
 generated rows range between 0 and 1 billion.  The random number generator is
 initialized with the seed 7.
 
-    $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchWriter --seed 7 -i 
instance -z zookeepers -u username -p password -t bloom_test --num 1000000 -min 
0 -max 1000000000 -valueSize 50 -batchMemory 2M -batchLatency 60s -batchThreads 
3 --vis exampleVis
+    $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchWriter --seed 7 -i 
instance -z zookeepers -u username -p password -t bloom_test --num 1000000 
--min 0 --max 1000000000 --size 50 --batchMemory 2M --batchLatency 60s 
--batchThreads 3 --vis exampleVis
 
 Below the table is flushed:
 
@@ -50,7 +50,7 @@ After the flush completes, 500 random queries are done 
against the table.  The
 same seed is used to generate the queries, therefore everything is found in the
 table.
 
-    $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchScanner --seed 7 -i 
instance -z zookeepers -u username -p password -t bloom_test --num 500 --min 0 
--max 1000000000 --size 50 -batchThreads 20 --vis exampleVis
+    $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchScanner --seed 7 -i 
instance -z zookeepers -u username -p password -t bloom_test --num 500 --min 0 
--max 1000000000 --size 50 --scanThreads 20 --auths exampleVis
     Generating 500 random queries...finished
     96.19 lookups/sec   5.20 secs
     num results : 500
@@ -113,7 +113,7 @@ The commands for creating the first table without bloom 
filters are below.
     username@instance bloom_test1> config -t bloom_test1 -s 
table.compaction.major.ratio=7
     username@instance bloom_test1> exit
 
-    $ ARGS="-i instance -z zookeepers -u username -p password -t bloom_test1 
--num 1000000 --min 0 --max 1000000000 --size 50 --batchMemory 2M 
--batchLatency 60s --batchThreads 3 --auths exampleVis"
+    $ ARGS="-i instance -z zookeepers -u username -p password -t bloom_test1 
--num 1000000 --min 0 --max 1000000000 --size 50 --batchMemory 2M 
--batchLatency 60s --batchThreads 3 --vis exampleVis"
     $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchWriter --seed 7 $ARGS
     $ ./bin/accumulo shell -u username -p password -e 'flush -t bloom_test1 -w'
     $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchWriter --seed 8 $ARGS
@@ -137,7 +137,7 @@ The commands for creating the second table with bloom 
filers are below.
     username@instance bloom_test2> config -t bloom_test2 -s 
table.bloom.enabled=true
     username@instance bloom_test2> exit
 
-    $ ARGS="-i instance -z zookeepers -u username -p password -t bloom_test2 
--num 1000000 --min 0 --max 1000000000 --size 50 --batchMemory 2M 
--batchLatency 60s --batchThreads 3 --auths exampleVis"
+    $ ARGS="-i instance -z zookeepers -u username -p password -t bloom_test2 
--num 1000000 --min 0 --max 1000000000 --size 50 --batchMemory 2M 
--batchLatency 60s --batchThreads 3 --vis exampleVis"
     $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchWriter --seed 7 $ARGS
     $ ./bin/accumulo shell -u username -p password -e 'flush -t bloom_test2 -w'
     $ ./bin/accumulo 
org.apache.accumulo.examples.simple.client.RandomBatchWriter --seed 8 $ARGS

Reply via email to