Skip to main content

Description

The VoltDB Python client library is a native Python implementation of the VoltDB wire protocol. It provides the functionality of connecting to a VoltDB server, authenticating the client, and making procedure calls. The client supports Python 3.6 or later.

The Python client library is a single file, voltdbclient.py, contained in the VoltDB distribution tarball. This pypi package is provided for the convenience of users who don't need the full VoltDB distribution.


The core of the Python client library is the FastSerializer class. It manages the connection to the server and serializes/deserializes the VoltDB primitive types. There are higher level classes which wraps around the FastSerializer class to handle compound objects, namely procedure, response, table, and exception. VoltProcedure, VoltResponse, VoltTable, and VoltException classes handles them, respectively. Note that none of the classes in the Python client library is thread safe.

Each VoltDB primitive type is mapped to a Python primitive type. The following table shows the mapping.

VoltDB Python
NULL None
TINYINT integer
SMALLINT integer
INTEGER integer
BIGINT integer
FLOAT float
STRING string
DECIMAL decimal

Although Python does not distinguish between the different integer types, the size of the integer being serialized needs to fit the corresponding type.

The common work flow is to create a FastSerializer object and connect to the server. Then create a VoltProcedure object for each stored procedure you want to call, passing the FastSerializer object to it. For each call, you will get a VoltResponse object, which may or may not contain a list of VoltTable objects. In case of failure, a VoltException object may be included.

API

FastSerializer.VOLTTYPE_NULL FastSerializer.VOLTTYPE_TINYINT FastSerializer.VOLTTYPE_SMALLINT FastSerializer.VOLTTYPE_INTEGER FastSerializer.VOLTTYPE_BIGINT FastSerializer.VOLTTYPE_FLOAT FastSerializer.VOLTTYPE_STRING FastSerializer.VOLTTYPE_TIMESTAMP FastSerializer.VOLTTYPE_DECIMAL FastSerializer.VOLTTYPE_DECIMAL_STRING FastSerializer.VOLTTYPE_VOLTTABLE VoltDB types.

FastSerializer(host, port, username, password, dump_file) Create a connection to host (string) on port (integer). If username (string) and password (string) is given, authenticate the client using them. If dump_file (string) is given, all the data received from and sent to the server will be written into the file pointed to by dump_file.

FastSerializer.close() Closes the connection. No further use of the object is valid.

VoltProcedure(fser, name, paramtypes) Create a procedure object which can be used to call the stored procedure name (string) with parameters of types paramtypes (list). The parameter types are defined in the FastSerializer class as VoltDB types. For parameter of type array, you specify the type in the same way as primitive types. fser is the FastSerializer object with a valid connection to the server.

VoltProcedure.call(params, response, timeout) Make a stored procedure invocation with the parameters params (list). The parameters has to match the types defined in the VoltProcedure constructor. If a parameter is an array, pass it in as a list. If response (bool) is given and False, the invocation will return None. If timeout (float) is given, the invocation will wait for timeout seconds at most if the server does not respond. A socket.timeout exception will be raised if timeout seconds has elapsed. A successful invocation will return a VoltReponse object.

VoltResponse.status The status code (integer) for a stored procedure invocation. For a list of status code, please refer to the VoltDB documentation.

VoltResponse.statusString A human-friendly string of the meaning of the status code.

VoltResponse.roundtripTime The round-trip time (integer) of the invocation in milliseconds.

VoltResponse.exception The VoltException object in case of failure, may be None.

VoltResponse.tables A list of VoltTable objects as the result of the invocation. May be None.

VoltException.type The type of the VoltDB exception. Can be the following values, VOLTEXCEPTION_NONE, VOLTEXCEPTION_EEEXCEPTION, VOLTEXCEPTION_SQLEXCEPTION, VOLTEXCEPTION_CONSTRAINTFAILURE, VOLTEXCEPTION_GENERIC.

VoltException.message A string explaining the exception.

VoltTable.columns A list of VoltColumn objects, representing the columns in the table.

VoltTable.tuples A list of rows in the table. A row a list of values deserialized in Python types.

VoltColumn.type The type of the column. A list of types is defined in the FastSerializer class.

VoltColumn.name The name of the column as a string.

Example

The following example shows how to make a connection to a VoltDB server instance running on port 21212 on localhost, and make a single call to the stored procedure named "Select", which takes a single parameter of type string. Assume the server is not secure, so that it does not require authentication.

>>> from voltdbclient import *
>>> client = FastSerializer("localhost", 21212)
>>> proc = VoltProcedure(client, "@SystemInformation", [FastSerializer.VOLTTYPE_STRING])
>>> response = proc.call(["OVERVIEW"])
>>> client.close()
>>> print (response)

The output will be a human-readable form of the VoltResponse object.

Installation

You can install the package via PyPI or from source.

Install from PyPI

pip install voltdbclient

Download files

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

Source Distribution

voltdbclient-14.3.6.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

voltdbclient-14.3.6-py3-none-any.whl (23.4 kB view details)

Uploaded Python 3

File details

Details for the file voltdbclient-14.3.6.tar.gz.

File metadata

  • Download URL: voltdbclient-14.3.6.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for voltdbclient-14.3.6.tar.gz
Algorithm Hash digest
SHA256 8b5e646445f94c1474e7e5ed327b9073c47de5f3e652fa0cf806ca4ba5b6a0b2
MD5 4cf652f11502b6d183f82973a67623ac
BLAKE2b-256 0f09608af3b8dbb6edc10b1b3205f0aa548c9ca1f8c2f1588df04421330d27f1

See more details on using hashes here.

File details

Details for the file voltdbclient-14.3.6-py3-none-any.whl.

File metadata

  • Download URL: voltdbclient-14.3.6-py3-none-any.whl
  • Upload date:
  • Size: 23.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for voltdbclient-14.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 0965e52c62086d6b295c66f4c6cac03637c1f035aad2068716cec07a6eb890c9
MD5 0b2d0d0faa77ce298cdae6ced28658dc
BLAKE2b-256 696ba817951e7778307a1041986ae52aff7d676da59277454720174df0c41060

See more details on using hashes here.

Release history Release notifications | RSS feed

15.3.0

2 files

This release

14.3.6 This release

2 files

14.3.5

2 files

14.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page