Author: billie
Date: Wed Jan 23 16:06:53 2013
New Revision: 1437528
URL: http://svn.apache.org/viewvc?rev=1437528&view=rev
Log:
ACCUMULO-730 removed documentation / functional test references to
InsertWithOutputFormat
Modified:
accumulo/trunk/docs/examples/README.helloworld
accumulo/trunk/test/system/auto/simple/examples.py
Modified: accumulo/trunk/docs/examples/README.helloworld
URL:
http://svn.apache.org/viewvc/accumulo/trunk/docs/examples/README.helloworld?rev=1437528&r1=1437527&r2=1437528&view=diff
==============================================================================
--- accumulo/trunk/docs/examples/README.helloworld (original)
+++ accumulo/trunk/docs/examples/README.helloworld Wed Jan 23 16:06:53 2013
@@ -19,7 +19,6 @@ Notice: Licensed to the Apache Softwa
This tutorial uses the following Java classes, which can be found in
org.apache.accumulo.examples.simple.helloworld in the simple-examples module:
* InsertWithBatchWriter.java - Inserts 10K rows (50K entries) into accumulo
with each row having 5 entries
- * InsertWithOutputFormat.java - Example of inserting data in MapReduce
* ReadData.java - Reads all data between two rows
Log into the accumulo shell:
@@ -34,10 +33,6 @@ Launch a Java program that inserts data
$ ./bin/accumulo
org.apache.accumulo.examples.simple.helloworld.InsertWithBatchWriter -i
instance -z zookeepers -u username -p password -t hellotable
-Alternatively, the same data can be inserted using MapReduce writers:
-
- $ ./bin/accumulo
org.apache.accumulo.examples.simple.helloworld.InsertWithOutputFormat -i
instance -z zookeepers -u username -p password -t hellotable
-
On the accumulo status page at the URL below (where 'master' is replaced with
the name or IP of your accumulo master), you should see 50K entries
http://master:50095/
Modified: accumulo/trunk/test/system/auto/simple/examples.py
URL:
http://svn.apache.org/viewvc/accumulo/trunk/test/system/auto/simple/examples.py?rev=1437528&r1=1437527&r2=1437528&view=diff
==============================================================================
--- accumulo/trunk/test/system/auto/simple/examples.py (original)
+++ accumulo/trunk/test/system/auto/simple/examples.py Wed Jan 23 16:06:53 2013
@@ -253,13 +253,6 @@ class Examples(TestUtilsMixin, unittest.
'-p', ROOT_PASSWORD,
'-t', 'itest2',
'--iterations', 100000])
- self.comment("Inserting data using a map/reduce job")
-
self.runExample(['org.apache.accumulo.simple.examples.helloworld.InsertWithOutputFormat',
- '-i', INSTANCE_NAME,
- '-z', ZOOKEEPERS,
- '-t', 'helloOutputFormat',
- '-u', ROOT,
- '-p', ROOT_PASSWORD ])
self.comment("Using some example constraints")
self.ashell('\n'.join([
'createtable testConstraints',