❓ Other Connector Types¶
Though the SQL Connector is the premier Meerschaum connector type, there are plenty of other implementations of the instance connector interface.
🗝️ Valkey Connectors¶
Syncs pipes to a Valkey instance. Because Valkey is a fork of Redis, you may also use the ValkeyConnector
to connect to your Redis instance.
Similar to sql:main
, the built-in connector valkey:main
connects to the Valkey instance in the Meerschaum stack.
- Implementation: built-in (docs)
- Type:
valkey
Connector config
1 2 3 4 5 6 |
|
1 |
|
🌐 API Connector¶
Syncs to a Meerschaum instance via the Web API. The pipes made available via the Web UI are from the instance set under MRSM{api_instance}
, usually sql:main
.
- Implementation: built-in (docs)
- Type:
api
Connector config
1 2 3 4 5 |
|
1 |
|
🍃 MongoDB Connector¶
Syncs to a MongoDB cluster. Allows you to read from existing collections as well as storing your pipes' data in collections.
- Implementation:
mongodb-connector
plugin - Type:
mongodb
Connector config
1 2 |
|
Fetch pipe
1 2 3 4 5 6 7 8 |
|
🛜 MQTT Connector¶
Subscribe to MQTT topics and sync the fetched messages.
- Implementation:
mqtt-connector
plugin - Type:
mqtt
Connector config
1 2 3 4 5 6 |
|
Fetch pipe
1 2 3 4 5 6 7 8 9 10 |
|