A Vertica client for use with the locust.io load testing tool
Project description
The package includes an object that you can use as a client for the locust.io load testing tool. The client can be used to write load testing workloads that automatically connect to a Vertica database.
The client also integrates with a graphite backend to be able to flow metrics to it.
Installation
To install this package:
pip install vertica_locust_client
Locust Command Line Parameters
This will automatically add parameters to locust that will control how to connect to Vertica and the graphite backend. These parameters are also exposed in the webUI.
--user ID of user to connect to Vertica with (defaults to dbadmin)
--password Password of the Vertica user ID (defaults to empty string)
--carbon-endpoint The carbon endpoint to connect to.
The endpoint is defined as: host[:port][,host[:port]...]
--carbon-namespace The namespace for the carbon metric. This is treated as
the prefix when constructing the full metric name.
Sample locustfile
Here is a sample locustfile.py to show the client in action. This will issue a simple query to count the number of sessions in the database.
from locust import task
from vertica_locust_client import VerticaUser
class SessionCounterUser(VerticaUser):
def __init__(self, environment):
super().__init__(environment)
@task
def query_users(self):
with self.client.make_cursor(carbon_metric="query") as cur:
cur.execute('''
select count(session_id) sessions
from v_monitor.sessions
where session_id not in (
select session_id
from current_session
)
''')
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
File details
Details for the file vertica_locust_client-0.0.3.tar.gz.
File metadata
- Download URL: vertica_locust_client-0.0.3.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c587709aabc67d8220b96c9c67700cf57a6a4e287cd109eddd19353122efb5e1
|
|
| MD5 |
229a717fd67503952c6e3d0f201f14eb
|
|
| BLAKE2b-256 |
e1f2e5d403883bea211e8c754f77f6b2f3c473111d7123a860f0c53a7a9c56e0
|