-
Notifications
You must be signed in to change notification settings - Fork 121
/
producer.rs
87 lines (75 loc) · 2.48 KB
/
producer.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#[macro_use]
extern crate serde;
use std::env;
use pulsar::{
authentication::oauth2::OAuth2Authentication, message::proto, producer, Authentication,
Error as PulsarError, Pulsar, SerializeMessage, TokioExecutor,
};
#[derive(Serialize, Deserialize)]
struct TestData {
data: String,
}
impl SerializeMessage for TestData {
fn serialize_message(input: Self) -> Result<producer::Message, PulsarError> {
let payload = serde_json::to_vec(&input).map_err(|e| PulsarError::Custom(e.to_string()))?;
Ok(producer::Message {
payload,
..Default::default()
})
}
}
#[tokio::main]
async fn main() -> Result<(), pulsar::Error> {
env_logger::init();
let addr = env::var("PULSAR_ADDRESS")
.ok()
.unwrap_or_else(|| "pulsar://127.0.0.1:6650".to_string());
let topic = env::var("PULSAR_TOPIC")
.ok()
.unwrap_or_else(|| "non-persistent://public/default/test".to_string());
let mut builder = Pulsar::builder(addr, TokioExecutor);
if let Ok(token) = env::var("PULSAR_TOKEN") {
let authentication = Authentication {
name: "token".to_string(),
data: token.into_bytes(),
};
builder = builder.with_auth(authentication);
} else if let Ok(oauth2_cfg) = env::var("PULSAR_OAUTH2") {
builder = builder.with_auth_provider(OAuth2Authentication::client_credentials(
serde_json::from_str(oauth2_cfg.as_str())
.unwrap_or_else(|_| panic!("invalid oauth2 config [{}]", oauth2_cfg.as_str())),
));
}
let pulsar: Pulsar<_> = builder.build().await?;
let mut producer = pulsar
.producer()
.with_topic(topic)
.with_name("my producer")
.with_options(producer::ProducerOptions {
schema: Some(proto::Schema {
r#type: proto::schema::Type::String as i32,
..Default::default()
}),
..Default::default()
})
.build()
.await?;
let mut counter = 0usize;
loop {
producer
.send_non_blocking(TestData {
data: "data".to_string(),
})
.await?
.await
.unwrap();
counter += 1;
log::info!("{counter} messages");
tokio::time::sleep(std::time::Duration::from_millis(1000)).await;
if counter > 10 {
producer.close().await.expect("Unable to close connection");
break;
}
}
Ok(())
}