Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dashbitco/broadway
Concurrent and multi-stage data ingestion and data processing with Elixir
https://github.com/dashbitco/broadway
broadway concurrent data-ingestion data-processing elixir genstage
Last synced: 21 days ago
JSON representation
Concurrent and multi-stage data ingestion and data processing with Elixir
- Host: GitHub
- URL: https://github.com/dashbitco/broadway
- Owner: dashbitco
- License: apache-2.0
- Created: 2018-11-05T11:52:33.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T10:52:17.000Z (8 months ago)
- Last Synced: 2024-05-18T17:45:01.984Z (6 months ago)
- Topics: broadway, concurrent, data-ingestion, data-processing, elixir, genstage
- Language: Elixir
- Homepage: https://elixir-broadway.org
- Size: 744 KB
- Stars: 2,313
- Watchers: 48
- Forks: 152
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Concurrent and multi-stage data ingestion and data processing with Elixir. (Queue)
- fucking-awesome-elixir - broadway - Concurrent and multi-stage data ingestion and data processing with Elixir. (Queue)
- awesome-elixir - broadway - Concurrent and multi-stage data ingestion and data processing with Elixir. (Queue)
README
# Broadway
[![CI](https://github.com/dashbitco/broadway/actions/workflows/ci.yml/badge.svg)](https://github.com/dashbitco/broadway/actions/workflows/ci.yml)
Build concurrent and multi-stage data ingestion and data processing pipelines with Elixir. Broadway allows developers to consume data efficiently from different sources, known as producers, such as Amazon SQS, Apache Kafka, Google Cloud PubSub, RabbitMQ, and others. Broadway pipelines are long-lived, concurrent, and robust, thanks to the Erlang VM and its actors.
Broadway takes its name from the famous [Broadway street](https://en.wikipedia.org/wiki/Broadway_theatre) in New York City, renowned for its stages, actors, and producers.
To learn more and get started, check out [our official website](https://elixir-broadway.org) and [our guides and docs](https://hexdocs.pm/broadway).
![Broadway Logo](https://user-images.githubusercontent.com/9582/117824616-ed298500-b26e-11eb-8ded-0fb7e608bf70.png)
## Built-in features
Broadway takes the burden of defining concurrent GenStage topologies and provides a simple configuration API that automatically defines concurrent producers, concurrent processing, batch handling, and more, leading to both time and cost efficient ingestion and processing of data. It features:
* Back-pressure
* Automatic acknowledgements at the end of the pipeline
* Batching
* Fault tolerance
* Graceful shutdown
* Built-in testing
* Custom failure handling
* Ordering and partitioning
* Rate-limiting
* Metrics### Producers
There are several producers that you can use to integrate with existing services and technologies. [See the docs for detailed how-tos and supported producers](https://hexdocs.pm/broadway/introduction.html#official-producers).
## Installation
Add `:broadway` to the list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:broadway, "~> 1.0"}
]
end
```## A quick example: SQS integration
Assuming you have added [`broadway_sqs`](https://github.com/dashbitco/broadway_sqs) as a dependency and configured your SQS credentials accordingly, you can consume Amazon SQS events in only 20 LOCs:
```elixir
defmodule MyBroadway do
use Broadwayalias Broadway.Message
def start_link(_opts) do
Broadway.start_link(__MODULE__,
name: __MODULE__,
producer: [
module: {BroadwaySQS.Producer, queue_url: "https://us-east-2.queue.amazonaws.com/100000000001/my_queue"}
],
processors: [
default: [concurrency: 50]
],
batchers: [
s3: [concurrency: 5, batch_size: 10, batch_timeout: 1000]
]
)
enddef handle_message(_processor_name, message, _context) do
message
|> Message.update_data(&process_data/1)
|> Message.put_batcher(:s3)
enddef handle_batch(:s3, messages, _batch_info, _context) do
# Send batch of messages to S3
enddefp process_data(data) do
# Do some calculations, generate a JSON representation, process images.
end
end
```Once your Broadway module is defined, you just need to add it as a child of your application supervision tree as `{MyBroadway, []}`.
## Comparison to Flow
You may also be interested in [Flow by Dashbit](https://github.com/dashbitco/flow). Both Broadway and Flow are built on top of GenStage. Flow is a more general abstraction than Broadway that focuses on data as a whole, providing features like aggregation, joins, windows, etc. Broadway focuses on events and on operational features, such as metrics, automatic acknowledgements, failure handling, and so on. Broadway is recommended for continuous, long-running pipelines. Flow works with short- and long-lived data processing.
## License
Copyright 2019 Plataformatec\
Copyright 2020 DashbitLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.