Skip to content

RUN SCRIPT

Synopsis

1
RUN SCRIPT <path-to-query-file>;

Description

You can run a list of predefined queries and commands from in a file by using the RUN SCRIPT command.

The RUN SCRIPT command supports a subset of ksqlDB statements:

The RUN SCRIPT doesn't support statements such as:

  • SHOW TOPICS and SHOW STREAMS, etc.
  • TERMINATE
  • Non-persistent queries: SELECT, etc.

RUN SCRIPT can also be used from the command line, for instance when writing shell scripts. For more information, see Running ksqlDB Statements From the Command Line.

Example

The following statement runs the queries in the file located at /local/path/to/queries.sql.

1
RUN SCRIPT '/local/path/to/queries.sql';

Last update: 2020-04-20