• Stars
    star
    190
  • Rank 196,540 (Top 4 %)
  • Language
    Elixir
  • Created about 5 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Broadway producer for RabbitMQ

BroadwayRabbitMQ

hex.pm badge Documentation badge CI Coverage Status

A RabbitMQ connector for Broadway.

Documentation can be found at https://hexdocs.pm/broadway_rabbitmq. For more details on using Broadway with RabbitMQ, please see the RabbitMQ Guide.

Installation

Add :broadway_rabbitmq to the list of dependencies in mix.exs:

def deps do
  [
    {:broadway_rabbitmq, "~> 0.7.0"}
  ]
end

Usage

Configure Broadway with one or more producers using BroadwayRabbitMQ.Producer:

  defmodule MyBroadway do
    use Broadway

    def start_link(_opts) do
      Broadway.start_link(__MODULE__,
        name: __MODULE__,
        producer: [
          module: {BroadwayRabbitMQ.Producer,
            queue: "my_queue",
          },
          concurrency: 1
        ],
        processors: [
          default: [
            concurrency: 10
          ]
        ]
      )
    end

    def handle_message(_, message, _) do
      IO.inspect(message.data, label: "Got message")
      message
    end
  end

Contributing

To run tests that don't need any dependency, use:

mix test --exclude integration

To run integration tests, you'll need RabbitMQ running on your localhost:5672. For simplicity, this repository includes a docker-compose.yml file that you can use to run RabbitMQ via Docker Compose. If you have Docker installed, you can run:

docker-compose up -d

Then, you can run mix test.

License

Copyright 2019 Plataformatec
Copyright 2020 Dashbit

Licensed 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 at

  http://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.

More Repositories

1

broadway

Concurrent and multi-stage data ingestion and data processing with Elixir
Elixir
2,303
star
2

flow

Computational parallel flows on top of GenStage
Elixir
1,478
star
3

mox

Mocks and explicit contracts in Elixir
Elixir
1,291
star
4

nimble_parsec

A simple and fast library for text-based parser combinators
Elixir
781
star
5

nimble_csv

A simple and fast CSV parsing and dumping library for Elixir
Elixir
747
star
6

nimble_options

A tiny library for validating and documenting high-level options. 💽
Elixir
455
star
7

nimble_publisher

A minimal filesystem-based publishing engine with Markdown support and code highlighting
Elixir
439
star
8

nimble_totp

A tiny Elixir library for time-based one time passwords (TOTP)
Elixir
370
star
9

nimble_pool

A tiny resource-pool implementation for Elixir
Elixir
333
star
10

bytepack_archive

Archive of bytepack.io
Elixir
321
star
11

broadway_kafka

A Broadway connector for Kafka
Elixir
220
star
12

mix_phx_gen_auth_demo

Example repository for mix phx.gen.auth
Elixir
213
star
13

broadway_dashboard

Keep track of your Broadway pipelines from Phoenix LiveDashboard
Elixir
200
star
14

broadway_sqs

A Broadway producer for Amazon SQS
Elixir
91
star
15

broadway_cloud_pub_sub

A Broadway producer for Google Cloud Pub/Sub
Elixir
68
star
16

nimble_ownership

Elixir
48
star
17

broadway_bike_sharing_rabbitmq_example

An example of a Broadway pipeline for a bike sharing app with RabbitMQ and PostgreSQL
Elixir
48
star
18

nimble_strftime

A simple and fast strftime-based datetime formatter
Elixir
37
star
19

unpickler

A library for loading data in the Python's pickle format
Elixir
10
star
20

broadway_website

Landing page for the Elixir Broadway library.
HTML
6
star