Skip to the content.

Source types

General parameters for all sources:

JDBC source

Example

{
  "jdbcUrl": "jdbc:clickhouse://127.0.0.1:8123/mydb?user=default",
  "query": "SELECT time, engine_id, speed, voltage FROM engine_telemetry",
  "userName": "default",
  "password": "qwerty"
}

Kafka source

Note the parallelism and patternsParallelism are hard-coded to 1 for Kafka.

Example

{
  "brokers": "127.0.0.1:9092;127.0.0.1:9093",
  "topic": "engine_telemetry",
  "group": "TSP1"
}

For supported data transformations, see Data Transformation.