-
Notifications
You must be signed in to change notification settings - Fork 75
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 MQTT Sink #659
base: main
Are you sure you want to change the base?
Add MQTT Sink #659
Conversation
mqtt_client_id: str, | ||
mqtt_server: str, | ||
mqtt_port: int, | ||
mqtt_topic_root: str, | ||
mqtt_username: str = None, | ||
mqtt_password: str = None, | ||
mqtt_version: str = "3.1.1", | ||
tls_enabled: bool = True, | ||
qos: int = 1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mqtt_client_id: str, | |
mqtt_server: str, | |
mqtt_port: int, | |
mqtt_topic_root: str, | |
mqtt_username: str = None, | |
mqtt_password: str = None, | |
mqtt_version: str = "3.1.1", | |
tls_enabled: bool = True, | |
qos: int = 1, | |
client_id: str, | |
server: str, | |
port: int, | |
topic_root: str, | |
username: str = None, | |
password: str = None, | |
version: str = "3.1.1", | |
tls_enabled: bool = True, | |
qos: int = 1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SteveRosam I also need this sink and willing to contribute to your PR if you don't mind
if isinstance(data, bytes): | ||
data = data.decode("utf-8") # Decode bytes to string using utf-8 | ||
|
||
json_data = json.dumps(data) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some sinks has concept of
value_serializer: Callable[[Any], str] = json.dumps,
key_serializer: Callable[[Any], str] = bytes.decode,
in its constructors. That is very handy, specially when you are dealing with non json data. I don't see a use case for key_serializer
, but value_serializer
is definitely something nice to have.
self.mqtt_topic_root + "/" + message_key_string, | ||
payload=json_data, | ||
qos=self.qos, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to docs, it would be great to have a control over retain
and properties
arguments.
Ideally the constructor should accept either constant or callbacks
retain: bool | Callable[[Any], bool] = False,
properties: paho.mqtt.properties.Properties | Callable[[Any], paho.mqtt.properties.Properties] | None = None,
"utf-8" | ||
) # Convert to string using utf-8 encoding | ||
# publish to MQTT | ||
self.mqtt_client.publish( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good to add sync primitive here. Client.publish returns MQTTMessageInfo which has
wait_for_publish()
self.mqtt_client.publish( | |
self.message_infos.add(self.mqtt_client.publish(...)) | |
def flush(self, topic: str, partition: str): | |
for message_info in self.message_infos: | |
message_info.wait_for_publish() |
see quix-streams sink flush docs
Added MQTT connector
Added tests
Updated
pyproject.toml
Updated
tests/requirement.txt
Resolves #658