This is an automated email from the ASF dual-hosted git repository.
mwalch pushed a commit to branch 1.9
in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git
The following commit(s) were added to refs/heads/1.9 by this push:
new 200c7f1 Fix package names (#19)
200c7f1 is described below
commit 200c7f1726d9e9771114ae8cb006c1297e2e996c
Author: Mike Walch <[email protected]>
AuthorDate: Thu Jul 12 14:49:11 2018 -0400
Fix package names (#19)
---
.../java/org/apache/accumulo/testing/core/stress/DataWriter.java | 2 +-
.../org/apache/accumulo/testing/core/stress/IntArgValidator.java | 2 +-
.../org/apache/accumulo/testing/core/stress/RandomByteArrays.java | 2 +-
.../org/apache/accumulo/testing/core/stress/RandomMutations.java | 2 +-
.../apache/accumulo/testing/core/stress/RandomWithinRange.java | 2 +-
.../main/java/org/apache/accumulo/testing/core/stress/Scan.java | 2 +-
.../java/org/apache/accumulo/testing/core/stress/ScanOpts.java | 2 +-
.../main/java/org/apache/accumulo/testing/core/stress/Stream.java | 2 +-
.../main/java/org/apache/accumulo/testing/core/stress/Write.java | 2 +-
.../org/apache/accumulo/testing/core/stress/WriteOptions.java | 2 +-
.../org/apache/accumulo/testing/core/stress/package-info.java | 8 ++++----
11 files changed, 14 insertions(+), 14 deletions(-)
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/DataWriter.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/DataWriter.java
index e7158e2..503d41d 100644
--- a/core/src/main/java/org/apache/accumulo/testing/core/stress/DataWriter.java
+++ b/core/src/main/java/org/apache/accumulo/testing/core/stress/DataWriter.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import org.apache.accumulo.core.client.BatchWriter;
import org.apache.accumulo.core.client.MutationsRejectedException;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/IntArgValidator.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/IntArgValidator.java
index 5a5ad3e..2265892 100644
---
a/core/src/main/java/org/apache/accumulo/testing/core/stress/IntArgValidator.java
+++
b/core/src/main/java/org/apache/accumulo/testing/core/stress/IntArgValidator.java
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomByteArrays.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomByteArrays.java
index 405fabb..d98bc37 100644
---
a/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomByteArrays.java
+++
b/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomByteArrays.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
/**
* A stream that will create random byte arrays as it is looped over.
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomMutations.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomMutations.java
index db5da55..6144dda 100644
---
a/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomMutations.java
+++
b/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomMutations.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import org.apache.accumulo.core.data.Mutation;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomWithinRange.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomWithinRange.java
index 033a1b8..1456b3c 100644
---
a/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomWithinRange.java
+++
b/core/src/main/java/org/apache/accumulo/testing/core/stress/RandomWithinRange.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import static com.google.common.base.Preconditions.checkArgument;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/Scan.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/Scan.java
index 3e8d5fd..e9db7d8 100644
--- a/core/src/main/java/org/apache/accumulo/testing/core/stress/Scan.java
+++ b/core/src/main/java/org/apache/accumulo/testing/core/stress/Scan.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import java.util.ArrayList;
import java.util.Iterator;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/ScanOpts.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/ScanOpts.java
index e3f73f7..28b1118 100644
--- a/core/src/main/java/org/apache/accumulo/testing/core/stress/ScanOpts.java
+++ b/core/src/main/java/org/apache/accumulo/testing/core/stress/ScanOpts.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import org.apache.accumulo.core.cli.ClientOnDefaultTable;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/Stream.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/Stream.java
index 72b31e5..a6eaa66 100644
--- a/core/src/main/java/org/apache/accumulo/testing/core/stress/Stream.java
+++ b/core/src/main/java/org/apache/accumulo/testing/core/stress/Stream.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import java.util.Iterator;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/Write.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/Write.java
index ea6f164..508f80a 100644
--- a/core/src/main/java/org/apache/accumulo/testing/core/stress/Write.java
+++ b/core/src/main/java/org/apache/accumulo/testing/core/stress/Write.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import org.apache.accumulo.core.cli.BatchWriterOpts;
import org.apache.accumulo.core.client.Connector;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/WriteOptions.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/WriteOptions.java
index f92a9eb..288215f 100644
---
a/core/src/main/java/org/apache/accumulo/testing/core/stress/WriteOptions.java
+++
b/core/src/main/java/org/apache/accumulo/testing/core/stress/WriteOptions.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;
import org.apache.accumulo.core.cli.ClientOnDefaultTable;
diff --git
a/core/src/main/java/org/apache/accumulo/testing/core/stress/package-info.java
b/core/src/main/java/org/apache/accumulo/testing/core/stress/package-info.java
index fdbf72e..4f3d636 100644
---
a/core/src/main/java/org/apache/accumulo/testing/core/stress/package-info.java
+++
b/core/src/main/java/org/apache/accumulo/testing/core/stress/package-info.java
@@ -18,11 +18,11 @@
* This package contains utility classes designed to test Accumulo when large
cells are being written. This is an attempt to observe the behavior Accumulo
* displays when compacting and reading these cells.
*
- * There are two components to this package: {@link
org.apache.accumulo.test.stress.random.Write} and {@link
org.apache.accumulo.test.stress.random.Scan}.
+ * There are two components to this package: {@link
org.apache.accumulo.testing.core.stress.Write} and {@link
org.apache.accumulo.testing.core.stress.Scan}.
*
- * The {@link org.apache.accumulo.test.stress.random.Write} provides
facilities for writing random sized cells. Users can configure minimum and
maximum
+ * The {@link org.apache.accumulo.testing.core.stress.Write} 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. See {@link
org.apache.accumulo.test.stress.random.WriteOptions} for available options and
default sizing
+ * distributed between the minimum and maximum values. See {@link
org.apache.accumulo.testing.core.stress.WriteOptions} for available options and
default sizing
* information.
*
* The Scan 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
@@ -32,5 +32,5 @@
* 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 distributed
* across hosts.
*/
-package org.apache.accumulo.test.stress.random;
+package org.apache.accumulo.testing.core.stress;