Giter Club home page Giter Club logo

impyla's Introduction

impyla

Python client for the Impala distributed query engine.

Features

Fully supported:

  • Lightweight, pip-installable package for connecting to Impala databases

  • Fully DB API 2.0 (PEP 249)-compliant Python client (similar to sqlite or MySQL clients)

  • Support for HiveServer2 and Beeswax; support for Kerberos

  • Converter to pandas DataFrame, allowing easy integration into the Python data stack (including scikit-learn and matplotlib)

In various phases of maturity:

  • SQLAlchemy connector; integration with Blaze

  • BigDataFrame abstraction for performing pandas-style analytics on large datasets (similar to Spark's RDD abstraction); computation is pushed into the Impala engine.

  • scikit-learn-flavored wrapper for MADlib-style prediction, allowing for large-scale, distributed machine learning (see the Impala port of MADlib)

  • Compiling UDFs written in Python into low-level machine code for execution by Impala (powered by Numba/LLVM)

Dependencies

Required for DB API connectivity:

  • python2.6 or python2.7

  • six

  • thrift>=0.8 (Python package only; no need for code-gen)

Required for UDFs:

  • numba<=0.13.4 (which has a few requirements, like LLVM)

  • boost (because udf.h depends on boost/cstdint.hpp)

Required for SQLAlchemy integration (and Blaze):

  • sqlalchemy

Required for BigDataFrame:

  • pandas

Required for utilizing automated shipping/registering of code/UDFs/BDFs/etc:

  • hdfs[kerberos] (a Python client that wraps WebHDFS; kerberos is optional)

For manipulating results as pandas DataFrames, we recommend installing pandas regardless.

Generally, we recommend installing all the libraries above; the UDF libraries will be the most difficult, and are not required if you will not use any Python UDFs. Interacting with Impala using the ImpalaContext will simplify shipping data and will perform cleanup on temporary data/tables.

This project is installed with setuptools.

Installation

Install the latest release (0.9.0) with pip:

pip install impyla

For the latest (dev) version, clone the repo:

git clone https://github.com/cloudera/impyla.git
cd impyla
make # optional: only for Numba-compiled UDFs; requires LLVM/clang
python setup.py install

Running the tests

impyla uses the pytest toolchain, and depends on the following environment variables:

export IMPALA_HOST=your.impalad.com
# beeswax might work here too
export IMPALA_PORT=21050
export IMPALA_PROTOCOL=hiveserver2
# needed to push data to the cluster
export NAMENODE_HOST=bottou01-10g.pa.cloudera.com
export WEBHDFS_PORT=50070

To run the maximal set of tests, run

py.test --dbapi-compliance path/to/impyla/impala/tests

Leave out the --dbapi-compliance option to skip tests for DB API compliance. Add a --udf option to only run local UDF compilation tests.

Quickstart

Impyla implements the Python DB API v2.0 (PEP 249) database interface (refer to it for API details):

from impala.dbapi import connect
conn = connect(host='my.host.com', port=21050)
cursor = conn.cursor()
cursor.execute('SELECT * FROM mytable LIMIT 100')
print cursor.description # prints the result set's schema
results = cursor.fetchall()

Note: if connecting to Impala through the HiveServer2 service, make sure to set the port to the HiveServer2 port (defaults to 21050 in CM), not Beeswax (defaults to 21000) which is what the Impala shell uses.

The Cursor object also supports the iterator interface, which is buffered (controlled by cursor.arraysize):

cursor.execute('SELECT * FROM mytable LIMIT 100')
for row in cursor:
    process(row)

You can also get back a pandas DataFrame object

from impala.util import as_pandas
df = as_pandas(cur)
# carry df through scikit-learn, for example

impyla's People

Contributors

fkaufer avatar ishaan avatar laserson avatar mariusvniekerk avatar rcarneva avatar wesm avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.