Skip to content
 
 

Repository files navigation

Python Client for Riak

Documentation

Documentation for the Riak Python Client Library is available here.

Documentation for Riak is available here.

Repository Cloning

NOTE: please clone this repository using the --recursive argument to git clone or follow the clone with git submodule update --init. This repository uses two submodules.

Install

The recommended versions of Python for use with this client are Python 2.7.x, 3.3.x, 3.4.x and 3.5.x. The latest version from each series should be preferred.

Riak TS (Timeseries)

You must use Python version 2.7.11, 3.4.4 or 3.5.1 (or greater within a version series). Otherwise you will be affected by this Python bug.

Installation

Performance Notes:

From Source

python setup.py install

There are additional dependencies on Python packages setuptools and protobuf.

From PyPI

Official packages are signed and published to PyPI.

To install from PyPI directly you can use pip.

pip install riak

Testing

To setup the default test configuration build a test Riak node (from a riak directory)

make rel

See Basic Cluster Setup for more details.

For all of the simple default values, set the RIAK_DIR environment variable to the root of your Riak installation. Then from the riak-python-client directory

make -C buildbot preconfigure

Start your Riak node with riak start from the the Riak directory, then

make -C buildbot configure
make -C buildbot test

That will run the test suite twice: once with security enabled and once without.

Connections to Riak in Tests

If your Riak server isn't running on localhost or you have built a Riak devrel from source, use the environment variables RIAK_TEST_HOST, RIAK_TEST_HTTP_PORT and RIAK_TEST_PB_PORT to specify where to find the Riak server. RIAK_TEST_PROTOCOL to specify which protocol to test. Can be either pbc or http.

Some of the connection tests need port numbers that are NOT in use. If ports 1023 and 1022 are in use on your test system, set the environment variables DUMMY_HTTP_PORT and DUMMY_PB_PORT to unused port numbers.

Testing Search

If you don't have Riak Search enabled, you can set the RUN_SEARCH environment variable to 0 skip those tests.

If you don't have Search 2.0 enabled, you can set the RUN_YZ environment variable to 0 to skip those tests.

Testing Bucket Types (Riak 2+)

To test bucket-types, you must run the create_bucket_types setup command, which will create the bucket-types used in testing, or create them manually yourself. It can be run like so (substituting $RIAK with the root of your Riak install)

./setup.py create_bucket_types --riak-admin=$RIAK/bin/riak-admin

You may alternately add these lines to setup.cfg

[create_bucket_types]
riak-admin=/Users/sean/dev/riak/rel/riak/bin/riak-admin

To skip the bucket-type tests, set the RUN_BTYPES environment variable to 0.

Testing Data Types (Riak 2+)

To test data types, you must set up bucket types (see above.)

To skip the data type tests, set the RUN_DATATYPES environment variable to 0.

Testing Timeseries (Riak 2.1+)

To test timeseries data, you must run the setup_timeseries command, which will create the bucket-types used in testing, or create them manually yourself. It can be run like so (substituting $RIAK with the root of your Riak install)

./setup.py setup_timeseries --riak-admin=$RIAK/bin/riak-admin

You may alternately add these lines to setup.cfg

[setup_timeseries]
riak-admin=/Users/sean/dev/riak/rel/riak/bin/riak-admin

To enable the timeseries tests, set the RUN_TIMESERIES environment variable to 1.

Testing Secondary Indexes

To test Secondary Indexes, the RUN_INDEXES environment variable must be set to 1 (or 0 to skip them.)

Testing Security (Riak 2+)

Ensure that the hostname riak-test resolves to your Riak host (most likely localhost). This is so the SSL host verification can succeed.

By default Security is not enabled on Riak. Once security = on is configured in the riak.conf file it can be enabled with riak-admin.

To run the tests

RUN_SECURITY=1 RIAK_TEST_HTTP_PORT=18098 python setup.py test

Using CPP Protobuf

NOTE: Python 2.7.X only. Python 3 support is not ready yet.

Using the C++ PB implementation results in improved performance when compared with the pure Python implementation.

  • Set and export environment variables

In the protobuf v2.6.1 documentation, it notes that the following environment variables must be set and exported prior to installation of either the protobuf library or libraries that depend on it:

export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp
export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION=2

If your Python application runs from init or within a web application container, you must ensure that these environment variables are set and exported prior to the Python interpreter starting up.

  • Install protobuf C++ library

Note: ensure that the required environment variables are set and exported.

If your distribution has a binary package of libprotobuf version 2.6.1 available, install that. If not, you must do the following:

git clone https://github.com/google/protobuf.git
cd protobuf
git co v2.6.1
./autogen.sh
./configure && make
sudo make install
sudo ldconfig

# NOTE: the following should print a line containing libprotoc.so
ldconfig -p -v | fgrep proto

Note: the above will install shared libraries to /usr/local/lib. Please ensure that this directory is searched by ldconfig. If not, add /usr/local/lib to /etc/ld.so.conf and re-run sudo ldconfig.

Then, install the python library. Note that --cpp_implementation must be used:

cd python
PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp \
  PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION=2 \
  python setup.py install --cpp_implementation

Confirm installation by running these commands:

$ protoc --version
libprotoc 2.6.1
$ pip list
...
...
protobuf (2.6.1)
...
...
  • Build riak-python-client from source

Note: ensure that the required environment variables are set and exported.

If you are using your system Python, you will probably have to run the install step with sudo:

git clone https://github.com/basho/riak-python-client.git
cd riak-python-client

# TODO: this step will be unnecessary after this feature ships
git co features/lrb/protobuf-cpp

# NB: confirm variables
echo PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION
echo PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION

python setup.py build
python setup.py install

Using gevent

The Riak Python client's performance can be greatly enhanced if the gevent library is loaded at the start of the python interpreter. One way to do so is follows:

pip install gevent
python -m gevent.monkey ./script-using-riak-python-client

Another way is to run the following code very early in the initialization of the interpreter:

import sys
try:
    from gevent import monkey
    monkey.patch_all()
    monkey.patch_socket(aggressive=True, dns=True)
    monkey.patch_select(aggressive=True)
except ImportError as e:
    sys.stderr.write(str(e))
    sys.stderr.write('\n')

Note that gevent may conflict with a web application framework or host. Please refer to your host's documentation.

Contributors

  • Andrew Thompson
  • Andy Gross
  • Armon Dadgar
  • Brett Hazen
  • Brett Hoerner
  • Brian Roach
  • Bryan Fink
  • Daniel Lindsley
  • Daniel Néri
  • Daniel Reverri
  • David Koblas
  • Dmitry Rozhkov
  • Eric Florenzano
  • Eric Moritz
  • Filip de Waard
  • Gilles Devaux
  • Greg Nelson
  • Gregory Burd
  • Greg Stein
  • Ian Plosker
  • Jayson Baird
  • Jeffrey Massung
  • Jon Meredith
  • Josip Lisec
  • Justin Sheehy
  • Kevin Smith
  • Luke Bakken
  • Mark Erdmann
  • Mark Phillips
  • Mathias Meyer
  • Matt Heitzenroder
  • Mikhail Sobolev
  • Reid Draper
  • Russell Brown
  • Rusty Klophaus
  • Rusty Klophaus
  • Scott Lystig Fritchie
  • Sean Cribbs
  • Shuhao Wu
  • Silas Sewell
  • Socrates Lee
  • Soren Hansen
  • Sreejith Kesavan
  • Timothée Peignier
  • William Kral

About

The Riak client for Python.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages