Skip to content

etos/faust

Repository files navigation

https://cvws.icloud-content.com/B/AQ-5ONKf_2xkCnWQ_XMtia0tbndwARN2xwL8kmWyu_-tb_fxF416JOcp/banner-alt1.png?o=AqSVxE8R4imqrOmeNdCGVwSKJKzwOckJ0j4nLTHN3UcZ&v=1&x=3&a=BxOV_v_q7I9WnbosECERXZ_YGJV3A3DOQQEAAANhzkE&e=1521065243&k=kwXcZp0stenUozNHQRaUHA&fl=&r=6bc3bc40-28b9-4774-8263-9a8429b37fc3-1&ckc=com.apple.clouddocs&ckz=com.apple.CloudDocs&p=35&s=GjIOslf-IebItUjncRcVqcj253U&cd=i

Python Stream Processing

Build status BSD License faust can be installed via wheel Supported Python versions. Support Python implementations.

Version:0.9.61
Web:http://fauststream.com
Download:http://pypi.python.org/pypi/faust
Source:http://github.com/fauststream/faust
Keywords:distributed, stream, async, processing, data, queue
# Python Streams
# Forever scalable event processing & in-memory durable K/V store;
# as a library w/ asyncio & static typing.
import faust

Faust is a Python library for writing streaming applications that are fault-tolerant and easy to use.

It is used at Robinhood to build high performance distributed systems, and real-time data pipelines.

Faust provides both stream processing and event processing, sharing similarity with tools such as Celery, Kafka Streams, Apache Spark/Storm/Samza, and Flink.

Faust is heavily inspired by Kafka Streams, but uses asynchronous generators instead of a DSL. This way it blends into Python code, so you can use NumPy, PyTorch, Pandas, NLTK, Django, Flask, SQLAlchemy, and all the other tools that you like in Python.

Faust takes advantage of the new async/await syntax added recently to Python, and so requires Python 3.6 or later.

Here's an example agent processing "order events":

# The application is our project.
# It's the core API of Faust, and also provides configuration.
app = faust.App('myapp', broker='kafka://localhost')

# Models describe how keys and values in streams are serialized.
# They use the new static typing features of Python 3.6,
# and look a lot like Python dataclasses.
class Order(faust.Record):
    account_id: str
    amount: int

# The Agent is a stream processor that can execute on
# many machines, and have many instances running on each CPU core.
# This to help build high performance distributed applications
# for parallel processing.
#
# This agent below will process incoming orders from a Kafka topic,
# which is like a queue but keeps history, and can be partitioned
# for the purpose of sharding data across instances.
#
@app.agent(value_type=Order)
async def order(orders):
    async for order in orders:
        print(f'Order for {order.account_id}: {order.amount}')
        # do something with order

This "agent" can execute on many machines at the same time so that you can distribute work across a cluster of worker instances.

So what does the async stuff do for us anyway?

The async for expression enables you to perform web requests and other I/O as a side effect of processing the stream.

The only external dependency required by Faust is Apache Kafka. In the future, we hope to support more messaging systems.

Faust also lets you create "tables", which are like named distributed key/value stores. We store the data locally using RocksDB - an embedded database library written in C++, then publish changes to a Kafka topic for recovery (a write-ahead log).

To the user, a table is just a dictionary so that you can do things like count page views by URL:

# data sent to 'clicks' topic with key="http://example.com" value="1"
click_topic = app.topic('clicks', key_type=str, value_type=str)

# default value for missing URL will be 0 with `default=int`
counts = app.Table('click_counts', default=int)

@app.agent(click_topic)
async def count_click(clicks):
    async for url, count in clicks.items():  # key, value
        counts[url] += int(count)

The data sent to a Kafka topic is partitioned, and since we use the URL as a key in the "clicks" topic, that is how Kafka will shard the data in such a way that every count from the same URL delivers to the same Faust worker instance.

The state stored in tables may also be "windowed" so you can keep track of "number of clicks from the last day," or "number of clicks in the last hour.". We support tumbling, hopping and sliding windows of time, and old windows can be expired to stop data from filling up.

The data found in streams and tables can be anything: we support byte streams, Unicode, and manually deserialized data structures. Taking this further we have "Models" that use modern Python syntax to describe how keys and values are serialized and deserialized:

class Order(faust.Record):
    account_id: str
    product_id: str
    price: float
    amount: float = 1.0

orders_topic = app.topic('orders', key_type=str, value_type=Order)

@app.agent(orders_topic)
async def process_order(orders):
    async for order in orders:
        total_price = order.price * order.amount
        await send_order_received_email(order.account_id, order)

Faust is statically typed, using the mypy type checker, so you can take advantage of static types when writing applications.

Learn more about Faust in the introduction introduction page
to read more about Faust, system requirements, installation instructions, community resources, and more.
or go directly to the quickstart tutorial
to see Faust in action by programming a streaming application.
then explore the User Guide
for in-depth information organized by topic.

Faust is...

Simple

Faust is extremely easy to use compared to other stream processing solutions. There's no DSL to limit your creativity, no restricted set of operations to work from, and since Faust is a library, it can integrate with just about anything.

Here's one of the easier applications you can make:

import faust

class Greeting(faust.Record):
    from_name: str
    to_name: str

app = faust.App('hello-app', broker='kafka://localhost')
topic = app.topic('hello-topic', value_type=Greeting)

@app.agent(topic)
async def hello(greetings):
    async for greeting in greetings:
        print(f'Hello from {greeting.from_name} to {greeting.to_name}')

@app.timer(interval=1.0)
async def example_sender(app):
    await hello.send(
        value=Greeting(from_name='Faust', to_name='you'),
    )

if __name__ == '__main__':
    app.main()

You're probably a bit intimidated by the async and await keywords, but you don't have to know how asyncio works to use Faust: just mimic the examples, and you'll be fine.

The example application starts two tasks: one is processing a stream, the other is a background thread sending events to that stream. In a real-life application, your system will publish events to Kafka topics that your processors can consume from, and the background thread is only needed to feed data into our example.

Highly Available
Faust is highly available and can survive network problems and server crashes. In the case of node failure, it can automatically recover, and tables have standby nodes that will take over.
Distributed
Start more instances of your application as needed.
Fast
A single-core Faust worker instance can already process tens of thousands of events every second, and we are reasonably confident that throughput will increase once we can support a more optimized Kafka client.
Flexible
Faust is just Python, and a stream is an infinite asynchronous iterator. If you know how to use Python, you already know how to use Faust, and it works with your favorite Python libraries like Django, Flask, SQLAlchemy, NTLK, NumPy, Scikit, TensorFlow, etc.

Installation

You can install Faust either via the Python Package Index (PyPI) or from source.

To install using pip:

$ pip install -U faust

Bundles

Faust also defines a group of setuptools extensions that can be used to install Faust and the dependencies for a given feature.

You can specify these in your requirements or on the pip command-line by using brackets. Separate multiple bundles using the comma:

$ pip install "faust[rocksdb]"

$ pip install "faust[ckafka,rocksdb,uvloop,fast]"

The following bundles are available:

Brokers
faust[ckafka]:for using the production Kafka transport. The ckafka:// transport mixes the aiokafka and confluent-kafka client libraries to achieve better performance and reliability.
Stores
faust[rocksdb]:

for using RocksDB for storing Faust table state.

Recommended in production.

Optimization
faust[fast]:for installing all the available C speedup extensions to Faust core.
Sensors
faust[statsd]:for using the Statsd Faust monitor.
Event Loops
faust[uvloop]:for using Faust with uvloop.
faust[gevent]:for using Faust with gevent.
faust[eventlet]:for using Faust with eventlet
Debugging
faust[debug]:for using aiomonitor to connect and debug a running Faust worker.
faust[setproctitle]:when the setproctitle module is installed the Faust worker will use it to set a nicer process name in ps/top listings. Also installed with the fast and debug bundles.

Downloading and installing from source

Download the latest version of Faust from http://pypi.python.org/pypi/faust

You can install it by doing:

$ tar xvfz faust-0.0.0.tar.gz
$ cd faust-0.0.0
$ python setup.py build
# python setup.py install

The last command must be executed as a privileged user if you are not currently using a virtualenv.

Using the development version

With pip

You can install the latest snapshot of Faust using the following pip command:

$ pip install https://github.com/fauststream/faust/zipball/master#egg=faust

FAQ

Can I use Faust with Django/Flask/etc.?

Yes! Use gevent or eventlet as a bridge to integrate with asyncio.

Using gevent

This approach works with any blocking Python library that can work with gevent.

Using gevent requires you to install the aiogevent module, and you can install this as a bundle with Faust:

$ pip install -U faust[gevent]

Then to actually use gevent as the event loop you have to either use the -L <faust --loop> option to the faust program:

$ faust -L gevent -A myproj worker -l info

or add import mode.loop.gevent at the top of your entry point script:

#!/usr/bin/env python3
import mode.loop.gevent

REMEMBER: It's very important that this is at the very top of the module, and that it executes before you import libraries.

Using eventlet

This approach works with any blocking Python library that can work with eventlet.

Using eventlet requires you to install the aioeventlet module, and you can install this as a bundle along with Faust:

$ pip install -U faust[eventlet]

Then to actually use eventlet as the event loop you have to either use the -L <faust --loop> argument to the faust program:

$ faust -L eventlet -A myproj worker -l info

or add import mode.loop.eventlet at the top of your entry point script:

#!/usr/bin/env python3
import mode.loop.eventlet  # noqa

Warning

It's very important this is at the very top of the module, and that it executes before you import libraries.

Can I use Faust with Tornado?

Yes! Use the tornado.platform.asyncio bridge: http://www.tornadoweb.org/en/stable/asyncio.html

Can I use Faust with Twisted?

Yes! Use the asyncio reactor implementation: https://twistedmatrix.com/documents/17.1.0/api/twisted.internet.asyncioreactor.html

Will you support Python 3.5 or earlier?

There are no immediate plans to support Python 3.5, but you are welcome to contribute to the project.

Here are some of the steps required to accomplish this:

  • Source code transformation to rewrite variable annotations to comments

    for example, the code:

         class Point:
             x: int = 0
             y: int = 0
    
    must be rewritten into::
    
         class Point:
             x = 0  # type: int
             y = 0  # type: int
    
  • Source code transformation to rewrite async functions

    for example, the code:

    async def foo():
        await asyncio.sleep(1.0)
    

    must be rewritten into:

    @coroutine
    def foo():
        yield from asyncio.sleep(1.0)
    

Will you support Python 2?

There are no plans to support Python 2, but you are welcome to contribute to the project (details in the question above is relevant also for Python 2).

I get a maximum number of open files exceeded error by RocksDB when running a Faust app locally. How can I fix this?

You may need to increase the limit for the maximum number of open files. The following post explains how to do so on OS X: https://blog.dekstroza.io/ulimit-shenanigans-on-osx-el-capitan/

Getting Help

Mailing list

For discussions about the usage, development, and future of Faust, please join the faust-users mailing list.

Slack

Come chat with us on Slack:

https://fauststream.slack.com

Resources

Bug tracker

If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/fauststream/faust/issues/

Wiki

https://wiki.github.com/fauststream/faust/

License

This software is licensed under the New BSD License. See the LICENSE file in the top distribution directory for the full license text.

Contributing

Development of Faust happens at GitHub: https://github.com/fauststream/faust

You're highly encouraged to participate in the development of Faust.

Be sure to also read the Contributing to Faust section in the documentation.

Code of Conduct

Everyone interacting in the project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the Faust Code of Conduct.

As contributors and maintainers of these projects, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.

We are committed to making participation in these projects a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.

Examples of unacceptable behavior by participants include:

  • The use of sexualized language or imagery
  • Personal attacks
  • Trolling or insulting/derogatory comments
  • Public or private harassment
  • Publishing other's private information, such as physical or electronic addresses, without explicit permission
  • Other unethical or unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.

This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the Contributor Covenant, version 1.2.0 available at http://contributor-covenant.org/version/1/2/0/.

About

Python Stream Processing

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.9%
  • Other 1.1%