You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bh...@apache.org on 2014/01/17 18:17:53 UTC

[03/10] git commit: ACCUMULO-2216 Add ShortEach.xml and LongEach.xml randomwalk modules

ACCUMULO-2216 Add ShortEach.xml and LongEach.xml randomwalk modules

The added modules are linear, running each nested module once and then ending.
The difference between them is in the maximum time for each nested module to run.


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

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: 7a677b596abd1ebde2e430793a099682b38e0e54
Parents: 99c4361
Author: Bill Havanki <bh...@cloudera.com>
Authored: Fri Jan 17 11:15:32 2014 -0500
Committer: Bill Havanki <bh...@cloudera.com>
Committed: Fri Jan 17 11:15:32 2014 -0500

----------------------------------------------------------------------
 .../system/randomwalk/conf/modules/LongEach.xml | 50 ++++++++++++++++++++
 .../randomwalk/conf/modules/ShortEach.xml       | 50 ++++++++++++++++++++
 2 files changed, 100 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/7a677b59/test/system/randomwalk/conf/modules/LongEach.xml
----------------------------------------------------------------------
diff --git a/test/system/randomwalk/conf/modules/LongEach.xml b/test/system/randomwalk/conf/modules/LongEach.xml
new file mode 100644
index 0000000..b1e6f54
--- /dev/null
+++ b/test/system/randomwalk/conf/modules/LongEach.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<module>
+
+<init id="Image.xml"/>
+
+<node id="Image.xml" maxSec="3600" teardown="true">
+  <edge id="Sequential.xml" weight="1"/>
+</node>
+
+<node id="Sequential.xml" maxSec="3600" teardown="true">
+  <edge id="MultiTable.xml" weight="1"/>
+</node>
+
+<node id="MultiTable.xml" maxSec="3600" teardown="true">
+  <edge id="Shard.xml" weight="1"/>
+</node>
+
+<node id="Shard.xml" maxSec="3600" teardown="true">
+  <edge id="Concurrent.xml" weight="1"/>
+</node>
+
+<node id="Concurrent.xml" maxSec="3600" teardown="true">
+  <edge id="Security.xml" weight="1"/>
+</node>
+
+<node id="Security.xml" maxSec="3600" teardown="true">
+  <edge id="Bulk.xml" weight="1"/>
+</node>
+
+<node id="Bulk.xml" maxSec="3600" teardown="true">
+  <edge id="END" weight="1"/>
+</node>
+
+</module>

http://git-wip-us.apache.org/repos/asf/accumulo/blob/7a677b59/test/system/randomwalk/conf/modules/ShortEach.xml
----------------------------------------------------------------------
diff --git a/test/system/randomwalk/conf/modules/ShortEach.xml b/test/system/randomwalk/conf/modules/ShortEach.xml
new file mode 100644
index 0000000..d9c2744
--- /dev/null
+++ b/test/system/randomwalk/conf/modules/ShortEach.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<module>
+
+<init id="Image.xml"/>
+
+<node id="Image.xml" maxSec="300" teardown="true">
+  <edge id="Sequential.xml" weight="1"/>
+</node>
+
+<node id="Sequential.xml" maxSec="300" teardown="true">
+  <edge id="MultiTable.xml" weight="1"/>
+</node>
+
+<node id="MultiTable.xml" maxSec="300" teardown="true">
+  <edge id="Shard.xml" weight="1"/>
+</node>
+
+<node id="Shard.xml" maxSec="300" teardown="true">
+  <edge id="Concurrent.xml" weight="1"/>
+</node>
+
+<node id="Concurrent.xml" maxSec="300" teardown="true">
+  <edge id="Security.xml" weight="1"/>
+</node>
+
+<node id="Security.xml" maxSec="300" teardown="true">
+  <edge id="Bulk.xml" weight="1"/>
+</node>
+
+<node id="Bulk.xml" maxSec="300" teardown="true">
+  <edge id="END" weight="1"/>
+</node>
+
+</module>