Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RabbitMQ Stream source connector #798

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
73 changes: 73 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions crates/arroyo-connectors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
# Webhook
reqwest = { workspace = true, features = ["stream"] }

# RabbitMQ Stream
rabbitmq-stream-client = "0.7"

# Redis
redis = { version = "0.27", features = ["default", "tokio-rustls-comp", "cluster-async", "connection-manager"] }

Expand Down
3 changes: 3 additions & 0 deletions crates/arroyo-connectors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ use fluvio::FluvioConnector;
use impulse::ImpulseConnector;
use nats::NatsConnector;
use nexmark::NexmarkConnector;
use rabbitmq_stream::RabbitmqStreamConnector;
use reqwest::header::{HeaderMap, HeaderName, HeaderValue};
use reqwest::Client;
use serde::{Deserialize, Serialize};
Expand All @@ -46,6 +47,7 @@ pub mod nats;
pub mod nexmark;
pub mod polling_http;
pub mod preview;
pub mod rabbitmq_stream;
pub mod redis;
pub mod single_file;
pub mod sse;
Expand All @@ -68,6 +70,7 @@ pub fn connectors() -> HashMap<&'static str, Box<dyn ErasedConnector>> {
Box::new(NexmarkConnector {}),
Box::new(PollingHTTPConnector {}),
Box::new(PreviewConnector {}),
Box::new(RabbitmqStreamConnector {}),
Box::new(RedisConnector {}),
Box::new(SingleFileConnector {}),
Box::new(SSEConnector {}),
Expand Down
Loading
Loading