diff --git a/Makefile.am b/Makefile.am index 268436cae0a7de0ab26c2eb985b171d8f1343e4a..af6fd9361cde774641292b6f3d0d5a2f4fb276b0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 index 0000000000000000000000000000000000000000..cc8ebf99aa5e64f36f3bf5e05d0e563106bcb780 --- /dev/null +++ b/doc/examples/gnt-debug/README @@ -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 index 0000000000000000000000000000000000000000..39ade92b43b9753f949ea69c1c24cd0a4ca90c81 --- /dev/null +++ b/doc/examples/gnt-debug/delay0.json @@ -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 index 0000000000000000000000000000000000000000..6fce0c345669ca0d0acda25aeba82277f51c59c9 --- /dev/null +++ b/doc/examples/gnt-debug/delay50.json @@ -0,0 +1,3 @@ +[ +{"OP_ID": "OP_TEST_DELAY", "debug_level": 0, "dry_run": false, "duration": 0.05, "on_master": true, "on_nodes": []} +]