Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
canonical_url='https://faust-streaming.github.io/faust',
webdomain='',
github_project='faust-streaming/faust',
copyright='2017-2020, 2021-2022 Community',
copyright='2017-2020, 2021-2026 Community',
html_logo='images/logo.png',
html_favicon='images/favicon.ico',
html_prepend_sidebars=[],
Expand Down
2 changes: 2 additions & 0 deletions docs/copyright.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Copyright

Copyright |copy| 2017-2020, Robinhood Markets, Inc.

Copyright |copy| 2021-2026, the faust-streaming project.

All rights reserved. This material may be copied or distributed only
subject to the terms and conditions set forth in the `Creative Commons
Attribution-ShareAlike 4.0 International`
Expand Down
17 changes: 17 additions & 0 deletions docs/includes/installation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ Stores

**Recommended in production.**

:``faust[rocksdict]``:
for storing Faust table state in `RocksDB`_ through the
:pypi:`rocksdict` bindings.


.. _`RocksDB`: http://rocksdb.org

Expand All @@ -46,6 +50,13 @@ Caching
:``faust[redis]``:
for using `Redis_` as a simple caching backend (Memcached-style).

Transports
~~~~~~~~~~

:``faust[ckafka]``:
for using the :pypi:`confluent-kafka` client through the ``confluent://``
transport.

Codecs
~~~~~~

Expand All @@ -67,6 +78,12 @@ Sensors
:``faust[statsd]``:
for using the Statsd Faust monitor.

:``faust[prometheus]``:
for using the Prometheus Faust monitor.

:``faust[sentry]``:
for reporting worker errors to Sentry via :pypi:`sentry-sdk`.

Event Loops
~~~~~~~~~~~

Expand Down
6 changes: 3 additions & 3 deletions docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ What do I need?
==================

.. sidebar:: Version Requirements
:subtitle: Faust version 1.0 runs on
:subtitle: Faust runs on

**Core**

- Python 3.8 or later.
- Python 3.10 or later.
- Kafka 0.10.1 or later.

**Extensions**
Expand All @@ -176,7 +176,7 @@ Extensions
+--------------+-------------+--------------------------------------------------+
| ``rocksdb`` | 5.0 | ``pip install faust-streaming[rocksdb]`` |
+--------------+-------------+--------------------------------------------------+
| ``redis`` | aredis 1.1 | ``pip install faust-streaming[redis]`` |
| ``redis`` | redis-py | ``pip install faust-streaming[redis]`` |
+--------------+-------------+--------------------------------------------------+
| ``datadog`` | 0.20.0 | ``pip install faust-streaming[datadog]`` |
+--------------+-------------+--------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/application.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ the driver that you want to use (it can also be the fully qualified
path to a Python class).

The storage driver decides how to keep distributed tables locally, and
Faust version 1.0 supports two options:
Faust supports two options:

+----------------+-----------------------------------------------+
| ``rocksdb://`` | `RocksDB`_ an embedded database (production) |
Expand Down
Loading