Skip to main content

A simple multiplier task analysis tool in Python

Project description

Gorgon
======

Gorgon. A simple multiplier task analysis tool in Python

Gorgon is a framework to repeat a Python function N times, using multiprocessing and multithread to multiply the use.
A report is presented then to show the results and time on the calls, in an aggregated manner.

Gorgon started aiming to allow easy creation of relatively high loads of complex HTTP loadtests. Typically, loadtest tools like
Tsung or ab doesn't allow a lot of control over the returning values or flow control (send this request to create an object,
use the object id to do another request)
In this regard, Gorgon aspired to be an intermediate tool between creating system tests and pure loadtesting.

Then the aimed changed to be more a multiplier of a Python function, and collect stats, allowing to use any kind of task, HTTP or not.

Basic usage
===========

Create the function that you want to run. This should accept a single parameter that will be a unique number.

def operation_http(number):
import requests # Imports inside your function is required for cluster mode
result = requests.get('http://localhost')
return result.status_code

Then create a Gorgon with that operation and generate one or more runs. Each run will run the function `num_operations` times.

NUM_OPS = 4000
test = Gorgon(operation_http)
test.go(num_operations=NUM_OPS, num_processes=1, num_threads=1)
test.go(num_operations=NUM_OPS, num_processes=2, num_threads=1)
test.go(num_operations=NUM_OPS, num_processes=2, num_threads=4)
test.go(num_operations=NUM_OPS, num_processes=4, num_threads=10)

You can get the results of the whole suite with `small_report` (simple aggregated results) or with `html_report` (graphs).

Printing small_report result
Total time: 31s 226ms
Result 16000 512 ops/sec. Avg time: 725ms Max: 3s 621ms Min: 2ms
200 16000 512 ops/sec. Avg time: 725ms Max: 3s 621ms Min: 2ms

Example of graphs. Just print the result of `html_report` as HTML and take a look with a browser (it uses [Google Chart API](https://developers.google.com/chart/))

![Graph](graph_example.png)


Cluster
=======

By default, Gorgon uses the local computer to create all the tasks. To distribute the load even more, and use several nodes, add machines to the cluster.

NUM_OPS = 4000
test = Gorgon(operation_http)
test.add_to_cluster('node1', 'ssh_user', SSH_KEY)
test.add_to_cluster('node2', 'ssh_user', SSH_KEY, python_interpreter='python3.3')
...
# Run the test now as usual, over the cluster
test.go(num_operations=NUM_OPS, num_processes=1, num_threads=1)
test.go(num_operations=NUM_OPS, num_processes=2, num_threads=1)
test.go(num_operations=NUM_OPS, num_processes=2, num_threads=4)
print(test.small_report())

Each of the nodes of the cluster should have installed Gorgon over the default python interpreter, unless
the parameter `python_interpreter` is set. Using the same Python interpreter in all the nodes and controller is recommended.
`paramiko` module is a dependency in cluster mode for the controller, but not for the nodes.

As a limitation, all the code to be tested needs to be contained on the `operation` function, including any imports for external modules. Remember to install all the dependencies for the code on the nodes.


More
========

Wishlist/roadmap/comments:

- Good enough performance
- Easy to use and integrate. A full (simple) test should be possible in less than 20 lines
- Allow a test mode to check that all the calls are working as expected and debug.
- Use multithread/multiprocess/cluster
- Debug mode should not do this to allow easy debug.
- Create an example/tool to read HTTP calls from a file as input
- Good documentation
- Give a couple of good examples on how to use it
- Someone with a good knowledge of an API should be able to create a working script in 30 minutes
- Good reporting
- Interactive reporting (progress bar and stats).
- Allow partial reporting (in case a test is too long)
- Better graphs
- Help with the setup of the cluster (installing dependencies, etc)
- Not sure about installing automatically Gorgon
- The main development language is Python3 (hey, we are in 2015 after all), but, if easy possible, should be Python2 compatible. At the moment, it is

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gorgon-0.3.tar.gz (6.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page