Skip to main content

ksqlDB

Installation

  1. Install the package:

    If you are developing with binary, the package is already bundled in the binary. You can skip this step.

    npm i @vulcan-sql/extension-driver-ksqldb
  2. Update your vulcan.yaml file to enable the extension:

    extensions:
    ...
    ksqldb: '@vulcan-sql/extension-driver-ksqldb' # Add this line
  3. Create a new profile in your profiles.yaml file or in the designated profile paths. For example:

    - name: ksql # profile name
    type: ksqldb
    connection:
    host: www.example.com:8088
    username: <username>
    password: <password>
    timeout: 25000
    allow: '*'

Configuration

NameRequiredDefaultDescription
hostNhttp://localhost:8088ksqlDB instance.
usernameNThe name of the user on whose behalf requests are made.
passwordNThe user's password.
timeoutN25000Request timeout in milliseconds.