Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9BA4D102D3 for ; Fri, 6 Mar 2015 19:24:22 +0000 (UTC) Received: (qmail 68342 invoked by uid 500); 6 Mar 2015 19:24:22 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 68308 invoked by uid 500); 6 Mar 2015 19:24:22 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 68299 invoked by uid 99); 6 Mar 2015 19:24:22 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Mar 2015 19:24:22 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 538D1AC006E for ; Fri, 6 Mar 2015 19:24:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1664707 - in /accumulo/site/trunk/content: 1.5/examples/bloom.mdtext 1.5/examples/mapred.mdtext 1.6/examples/bloom.mdtext Date: Fri, 06 Mar 2015 19:24:22 -0000 To: commits@accumulo.apache.org From: elserj@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150306192422.538D1AC006E@hades.apache.org> Author: elserj Date: Fri Mar 6 19:24:21 2015 New Revision: 1664707 URL: http://svn.apache.org/r1664707 Log: ACCUMULO-3649 Fix the rest of the diffs on examples Modified: accumulo/site/trunk/content/1.5/examples/bloom.mdtext accumulo/site/trunk/content/1.5/examples/mapred.mdtext accumulo/site/trunk/content/1.6/examples/bloom.mdtext Modified: accumulo/site/trunk/content/1.5/examples/bloom.mdtext URL: http://svn.apache.org/viewvc/accumulo/site/trunk/content/1.5/examples/bloom.mdtext?rev=1664707&r1=1664706&r2=1664707&view=diff ============================================================================== --- accumulo/site/trunk/content/1.5/examples/bloom.mdtext (original) +++ accumulo/site/trunk/content/1.5/examples/bloom.mdtext Fri Mar 6 19:24:21 2015 @@ -39,7 +39,7 @@ Below 1 million random values are insert 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 qu 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 -batchThreads 20 --auths exampleVis Generating 500 random queries...finished 96.19 lookups/sec 5.20 secs num results : 500 @@ -62,7 +62,7 @@ Below another 500 queries are performed, in nothing being found. In this case the lookups are much faster because of the bloom filters. - $ ./bin/accumulo org.apache.accumulo.examples.simple.client.RandomBatchScanner --seed 8 -i instance -z zookeepers -u username -p password -t bloom_test --num 500 --min 0 --max 1000000000 --size 50 -batchThreads 20 -auths exampleVis + $ ./bin/accumulo org.apache.accumulo.examples.simple.client.RandomBatchScanner --seed 8 -i instance -z zookeepers -u username -p password -t bloom_test --num 500 --min 0 --max 1000000000 --size 50 --batchThreads 20 --auths exampleVis Generating 500 random queries...finished 2212.39 lookups/sec 0.23 secs num results : 0 @@ -113,7 +113,7 @@ The commands for creating the first tabl 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 tab 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 Modified: accumulo/site/trunk/content/1.5/examples/mapred.mdtext URL: http://svn.apache.org/viewvc/accumulo/site/trunk/content/1.5/examples/mapred.mdtext?rev=1664707&r1=1664706&r2=1664707&view=diff ============================================================================== --- accumulo/site/trunk/content/1.5/examples/mapred.mdtext (original) +++ accumulo/site/trunk/content/1.5/examples/mapred.mdtext Fri Mar 6 19:24:21 2015 @@ -50,7 +50,7 @@ for the column family count. After creating the table, run the word count map reduce job. - $ bin/tool.sh lib/accumulo-examples-simple.jar org.apache.accumulo.examples.simple.mapreduce.WordCount -i instance -z zookeepers --input /user/username/wc wordCount -u username -p password + $ bin/tool.sh lib/accumulo-examples-simple.jar org.apache.accumulo.examples.simple.mapreduce.WordCount -i instance -z zookeepers --input /user/username/wc -t wordCount -u username -p password 11/02/07 18:20:11 INFO input.FileInputFormat: Total input paths to process : 1 11/02/07 18:20:12 INFO mapred.JobClient: Running job: job_201102071740_0003 Modified: accumulo/site/trunk/content/1.6/examples/bloom.mdtext URL: http://svn.apache.org/viewvc/accumulo/site/trunk/content/1.6/examples/bloom.mdtext?rev=1664707&r1=1664706&r2=1664707&view=diff ============================================================================== --- accumulo/site/trunk/content/1.6/examples/bloom.mdtext (original) +++ accumulo/site/trunk/content/1.6/examples/bloom.mdtext Fri Mar 6 19:24:21 2015 @@ -39,7 +39,7 @@ Below 1 million random values are insert 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 qu 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 -batchThreads 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 tabl 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 tab 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