Add example gnt-debug submit-job json files
authorGuido Trotter <ultrotter@google.com>
Mon, 14 Jun 2010 15:16:30 +0000 (16:16 +0100)
committerGuido Trotter <ultrotter@google.com>
Mon, 14 Jun 2010 16:41:42 +0000 (17:41 +0100)
These files are being used to test the job queue performance with
various changes and conditions. Adding them here for posterity.

Signed-off-by: Guido Trotter <ultrotter@google.com>
Reviewed-by: Iustin Pop <iustin@google.com>

Makefile.am
doc/examples/gnt-debug/README [new file with mode: 0644]
doc/examples/gnt-debug/delay0.json [new file with mode: 0644]
doc/examples/gnt-debug/delay50.json [new file with mode: 0644]

index 268436c..af6fd93 100644 (file)
@@ -289,6 +289,9 @@ EXTRA_DIST = \
        doc/examples/ganeti.default-debug \
        doc/examples/hooks/ethers \
        doc/examples/hooks/ipsec.in \
+       doc/examples/gnt-debug/README \
+       doc/examples/gnt-debug/delay0.json \
+       doc/examples/gnt-debug/delay50.json \
        test/testutils.py \
        test/mocks.py \
        $(dist_TESTS) \
diff --git a/doc/examples/gnt-debug/README b/doc/examples/gnt-debug/README
new file mode 100644 (file)
index 0000000..cc8ebf9
--- /dev/null
@@ -0,0 +1,21 @@
+In order to submit arbitrary jobs to ganeti one can call gnt-debug submit-job
+passing a suitably formatted json file. A few examples of those files are
+included here.
+
+Using delay0.json and delay50.json in conjunction with submit-job for example
+allows one to submit rapidly many short delay job (using --job-repeat),
+repeating the sleep opcode any number of times (using --op-repeat), either all
+at the same time or one at a time (with --each). This can be used to check the
+performance of the job queue.
+
+Examples:
+
+# Run 40 jobs with 10 opcodes each:
+gnt-debug submit-job --op-repeat 10 --job-repeat 40 --timing-stats delay0.json
+
+# Run 40 jobs with 1 opcode each:
+gnt-debug submit-job --op-repeat 1 --job-repeat 40 --timing-stats delay0.json
+
+# Run 40 jobs with 10 opcodes each and submit one at a time:
+gnt-debug submit-job --op-repeat 10 --job-repeat 40 --timing-stats --each delay0.json
+
diff --git a/doc/examples/gnt-debug/delay0.json b/doc/examples/gnt-debug/delay0.json
new file mode 100644 (file)
index 0000000..39ade92
--- /dev/null
@@ -0,0 +1,3 @@
+[
+{"OP_ID": "OP_TEST_DELAY", "debug_level": 0, "dry_run": false, "duration": 0.0, "on_master": true, "on_nodes": []}
+]
diff --git a/doc/examples/gnt-debug/delay50.json b/doc/examples/gnt-debug/delay50.json
new file mode 100644 (file)
index 0000000..6fce0c3
--- /dev/null
@@ -0,0 +1,3 @@
+[
+{"OP_ID": "OP_TEST_DELAY", "debug_level": 0, "dry_run": false, "duration": 0.05, "on_master": true, "on_nodes": []}
+]