You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by uj...@apache.org on 2014/05/22 13:33:08 UTC

[2/2] git commit: Merge remote-tracking branch 'origin/1.5.2-SNAPSHOT' into 1.6.1-SNAPSHOT

Merge remote-tracking branch 'origin/1.5.2-SNAPSHOT' into 1.6.1-SNAPSHOT


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

Branch: refs/heads/1.6.1-SNAPSHOT
Commit: adaf14693ed47c3dd744795e33b44a7f705773f5
Parents: db1b63c 74acc30
Author: Bill Slacum <uj...@apache.org>
Authored: Thu May 22 07:32:56 2014 -0400
Committer: Bill Slacum <uj...@apache.org>
Committed: Thu May 22 07:32:56 2014 -0400

----------------------------------------------------------------------
 .../accumulo/test/stress/random/DataWriter.java |  50 ++++++
 .../test/stress/random/IntArgValidator.java     |  32 ++++
 .../random/RandomByteArrayMakerFunction.java    |  60 ++++++++
 .../test/stress/random/RandomByteArrays.java    |  36 +++++
 .../test/stress/random/RandomMutations.java     |  39 +++++
 .../accumulo/test/stress/random/Scan.java       | 124 +++++++++++++++
 .../accumulo/test/stress/random/ScanOpts.java   |  44 ++++++
 .../accumulo/test/stress/random/Stream.java     |  41 +++++
 .../accumulo/test/stress/random/Write.java      |  78 ++++++++++
 .../test/stress/random/WriteOptions.java        | 152 +++++++++++++++++++
 .../test/stress/random/package-info.java        |  36 +++++
 test/system/stress/README.md                    |  34 +++++
 test/system/stress/reader.sh                    |  34 +++++
 test/system/stress/writer.sh                    |  38 +++++
 14 files changed, 798 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/adaf1469/test/system/stress/README.md
----------------------------------------------------------------------
diff --cc test/system/stress/README.md
index 0000000,1a0bbae..9546b21
mode 000000,100644..100644
--- a/test/system/stress/README.md
+++ b/test/system/stress/README.md
@@@ -1,0 -1,33 +1,34 @@@
+ <!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at 
+  
+     http://www.apache.org/licenses/LICENSE-2.0
+  
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+ 
+ 
+ Accumulo Stress Test
+ --------------------
+ 
+ This is an attempt to observe the behavior Accumulo displays when compacting and reading these cells. There are two components to this package: `org.apache.accumulo.test.stress.random.Write` and `org.apache.accumulo.test.stress.random.Scan`.
+ 
+ Since this test is meant to stress the system, there is no pre-defined test period and no success criteria that we can programmatically check. During a successful test period, the Accumulo cluster should remain stable and functional. Possible failure conditions include component failures, such as tablet servers running out of memory.
+ 
+ The `org.apache.accumulo.test.stress.random.Write` utility provides facilities for writing random sized cells. Users can configure minimum and maximum sized portions of a cell. The portions users can configure are the row, column family, column qualifier and value. Note that the sizes are uniformly distributed between the minimum and maximum values
+ 
+ The `org.apache.accumulo.test.stress.random.Scan` utility provides users with the ability to query tables generated by the Write. It will pick a tablet at random and scan the entire range. The amount of times this process is performed is user configurable. By default, it happens 1,024 times. Users can also specify whether or not the scan should be isolated or not.
+ 
+ There is no shared state intended by either of these services. This allows multiple clients to be run in parallel, either on the same host or distributedacross hosts.
+ 
+ See the provided `test/system/stress/writer.sh` and `test/system/stress/reader.sh` scripts for example configuration options and how to launch the processes.
+ 
++Note that in versions of Accumulo greater than 1.6.0, users should verify that the cell sizes they supply meet the criteria set forth by the key constraints on their tables. By default, tables are configured to reject keys that are are greater than 1MB.