SQL Client Beta

    The SQL Client aims to provide an easy way of writing, debugging, and submitting table programs to a Flink cluster without a single line of Java or Scala code. The SQL Client CLI allows for retrieving and visualizing real-time results from the running distributed application on the command line.

    Attention The SQL Client is in an early development phase. Even though the application is not production-ready yet, it can be a quite useful tool for prototyping and playing around with Flink SQL. In the future, the community plans to extend its functionality by providing a REST-based .

    This section describes how to setup and run your first Flink SQL program from the command-line.

    The SQL Client is bundled in the regular Flink distribution and thus runnable out-of-the-box. It requires only a running Flink cluster where table programs can be executed. For more information about setting up a Flink cluster see the Cluster & Deployment part. If you simply want to try out the SQL Client, you can also start a local cluster with one worker using the following command:

    The SQL Client scripts are also located in the binary directory of Flink. , a user will have two possibilities of starting the SQL Client CLI either by starting an embedded standalone process or by connecting to a remote SQL Client Gateway. At the moment only the mode is supported. You can start the CLI by calling:

    1. ./bin/sql-client.sh embedded

    By default, the SQL Client will read its configuration from the environment file located in ./conf/sql-client-defaults.yaml. See the configuration part for more information about the structure of environment files.

    Once the CLI has been started, you can use the HELP command to list all available SQL statements. For validating your setup and cluster connection, you can enter your first SQL query and press the Enter key to execute it:

    1. SELECT 'Hello World';

    This query requires no table source and produces a single row result. The CLI will retrieve results from the cluster and visualize them. You can close the result view by pressing the Q key.

    The CLI supports two modes for maintaining and visualizing results.

    The table mode materializes results in memory and visualizes them in a regular, paginated table representation. It can be enabled by executing the following command in the CLI:

    1. SET execution.result-mode=table;

    The changelog mode does not materialize results and visualizes the result stream that is produced by a consisting of insertions (+) and retractions (-).

    1. SET execution.result-mode=changelog;

    You can use the following query to see both result modes in action:

    1. SELECT name, COUNT(*) AS cnt FROM (VALUES ('Bob'), ('Alice'), ('Greg'), ('Bob')) AS NameTable(name) GROUP BY name;

    This query performs a bounded word count example.

    In changelog mode, the visualized changelog should be similar to:

    1. + Bob, 1
    2. + Alice, 1
    3. + Greg, 1
    4. - Bob, 1
    5. + Bob, 2

    In table mode, the visualized result table is continuously updated until the table program ends with:

    1. Bob, 2
    2. Alice, 1
    3. Greg, 1

    Both result modes can be useful during the prototyping of SQL queries. In both modes, results are stored in the Java heap memory of the SQL Client. In order to keep the CLI interface responsive, the changelog mode only shows the latest 1000 changes. The table mode allows for navigating through bigger results that are only limited by the available main memory and the configured maximum number of rows (max-table-result-rows).

    Attention Queries that are executed in a batch environment, can only be retrieved using the table result mode.

    After a query is defined, it can be submitted to the cluster as a long-running, detached Flink job. For this, a target system that stores the results needs to be specified using the . The configuration section explains how to declare table sources for reading data, how to declare table sinks for writing data, and how to configure other table program properties.

    Configuration

    The SQL Client can be started with the following optional CLI commands. They are discussed in detail in the subsequent paragraphs.

    Every environment file is a regular YAML file. An example of such a file is presented below.

    1. # Define tables here such as sources, sinks, views, or temporal tables.
    2. tables:
    3. - name: MyTableSource
    4. type: source-table
    5. update-mode: append
    6. connector:
    7. type: filesystem
    8. path: "/path/to/something.csv"
    9. format:
    10. type: csv
    11. fields:
    12. - name: MyField1
    13. type: INT
    14. - name: MyField2
    15. type: VARCHAR
    16. line-delimiter: "\n"
    17. comment-prefix: "#"
    18. schema:
    19. - name: MyField1
    20. type: INT
    21. - name: MyField2
    22. type: VARCHAR
    23. - name: MyCustomView
    24. type: view
    25. query: "SELECT MyField2 FROM MyTableSource"
    26. # Define user-defined functions here.
    27. functions:
    28. - name: myUDF
    29. from: class
    30. class: foo.bar.AggregateUDF
    31. constructor:
    32. - 7.6
    33. - false
    34. # Define available catalogs
    35. catalogs:
    36. - name: catalog_1
    37. type: hive
    38. property-version: 1
    39. hive-conf-dir: ...
    40. - name: catalog_2
    41. type: hive
    42. property-version: 1
    43. default-database: mydb2
    44. hive-conf-dir: ...
    45. hive-version: 1.2.1
    46. # Properties that change the fundamental execution behavior of a table program.
    47. execution:
    48. planner: old # optional: either 'old' (default) or 'blink'
    49. type: streaming # required: execution mode either 'batch' or 'streaming'
    50. result-mode: table # required: either 'table' or 'changelog'
    51. max-table-result-rows: 1000000 # optional: maximum number of maintained rows in
    52. # 'table' mode (1000000 by default, smaller 1 means unlimited)
    53. time-characteristic: event-time # optional: 'processing-time' or 'event-time' (default)
    54. periodic-watermarks-interval: 200 # optional: interval for periodic watermarks (200 ms by default)
    55. max-parallelism: 16 # optional: Flink's maximum parallelism (128 by default)
    56. min-idle-state-retention: 0 # optional: table program's minimum idle state time
    57. max-idle-state-retention: 0 # optional: table program's maximum idle state time
    58. current-catalog: catalog_1 # optional: name of the current catalog of the session ('default_catalog' by default)
    59. current-database: mydb1 # optional: name of the current database of the current catalog
    60. # (default database of the current catalog by default)
    61. restart-strategy: # optional: restart strategy
    62. type: fallback # "fallback" to global restart strategy by default
    63. # Configuration options for adjusting and tuning table programs.
    64. # A full list of options and their default values can be found
    65. # on the dedicated "Configuration" page.
    66. configuration:
    67. table.optimizer.join-reorder-enabled: true
    68. table.exec.spill-compression.enabled: true
    69. table.exec.spill-compression.block-size: 128kb
    70. # Properties that describe the cluster to which table programs are submitted to.
    71. response-timeout: 5000

    This configuration:

    • defines an environment with a table source MyTableSource that reads from a CSV file,
    • defines a view MyCustomView that declares a virtual table using a SQL query,
    • defines a user-defined function myUDF that can be instantiated using the class name and two constructor parameters,
    • connects to two Hive catalogs and uses catalog_1 as the current catalog with mydb1 as the current database of the catalog,
    • uses the old planner in streaming mode for running statements with event-time characteristic and a parallelism of 1,
    • runs exploratory queries in the table result mode,
    • and makes some planner adjustments around join reordering and spilling via configuration options.Depending on the use case, a configuration can be split into multiple files. Therefore, environment files can be created for general purposes (defaults environment file using —defaults) as well as on a per-session basis (session environment file using —environment). Every CLI session is initialized with the default properties followed by the session properties. For example, the defaults environment file could specify all table sources that should be available for querying in every session whereas the session environment file only declares a specific state retention time and parallelism. Both default and session environment files can be passed when starting the CLI application. If no default environment file has been specified, the SQL Client searches for ./conf/sql-client-defaults.yaml in Flink’s configuration directory.

    Attention Properties that have been set within a CLI session (e.g. using the SET command) have highest precedence:

    1. CLI commands > session environment file > defaults environment file

    Restart Strategies

    Restart strategies control how Flink jobs are restarted in case of a failure. Similar to global restart strategies for a Flink cluster, a more fine-grained restart configuration can be declared in an environment file.

    The following strategies are supported:

    1. execution:
    2. # falls back to the global strategy defined in flink-conf.yaml
    3. restart-strategy:
    4. type: fallback
    5. # job fails directly and no restart is attempted
    6. restart-strategy:
    7. type: none
    8. # attempts a given number of times to restart the job
    9. restart-strategy:
    10. type: fixed-delay
    11. attempts: 3 # retries before job is declared as failed (default: Integer.MAX_VALUE)
    12. delay: 10000 # delay in ms between retries (default: 10 s)
    13. # attempts as long as the maximum number of failures per time interval is not exceeded
    14. restart-strategy:
    15. type: failure-rate
    16. max-failures-per-interval: 1 # retries in interval until failing (default: 1)
    17. failure-rate-interval: 60000 # measuring interval in ms for failure rate
    18. delay: 10000 # delay in ms between retries (default: 10 s)

    The SQL Client does not require to setup a Java project using Maven or SBT. Instead, you can pass the dependencies as regular JAR files that get submitted to the cluster. You can either specify each JAR file separately (using —jar) or define entire library directories (using —library). For connectors to external systems (such as Apache Kafka) and corresponding data formats (such as JSON), Flink provides ready-to-use JAR bundles. These JAR files can be downloaded for each release from the Maven central repository.

    The full list of offered SQL JARs and documentation about how to use them can be found on the connection to external systems page.

    The following example shows an environment file that defines a table source reading JSON data from Apache Kafka.

    1. tables:
    2. - name: TaxiRides
    3. type: source-table
    4. update-mode: append
    5. connector:
    6. property-version: 1
    7. type: kafka
    8. version: "0.11"
    9. topic: TaxiRides
    10. startup-mode: earliest-offset
    11. properties:
    12. - key: zookeeper.connect
    13. value: localhost:2181
    14. - key: bootstrap.servers
    15. value: localhost:9092
    16. - key: group.id
    17. value: testGroup
    18. format:
    19. property-version: 1
    20. type: json
    21. schema: "ROW<rideId LONG, lon FLOAT, lat FLOAT, rideTime TIMESTAMP>"
    22. schema:
    23. - name: rideId
    24. type: LONG
    25. - name: lon
    26. type: FLOAT
    27. - name: lat
    28. type: FLOAT
    29. - name: rowTime
    30. type: TIMESTAMP
    31. rowtime:
    32. timestamps:
    33. type: "from-field"
    34. from: "rideTime"
    35. watermarks:
    36. delay: "60000"
    37. - name: procTime
    38. type: TIMESTAMP
    39. proctime: true

    The resulting schema of the TaxiRide table contains most of the fields of the JSON schema. Furthermore, it adds a rowtime attribute rowTime and processing-time attribute procTime.

    Both connector and format allow to define a property version (which is currently version 1) for future backwards compatibility.

    The SQL Client allows users to create custom, user-defined functions to be used in SQL queries. Currently, these functions are restricted to be defined programmatically in Java/Scala classes.

    In order to provide a user-defined function, you need to first implement and compile a function class that extends ScalarFunction, AggregateFunction or TableFunction (see User-defined Functions). One or more functions can then be packaged into a dependency JAR for the SQL Client.

    All functions must be declared in an environment file before being called. For each item in the list of functions, one must specify

    • a name under which the function is registered,
    • the source of the function using from (restricted to be class for now),
    • the class which indicates the fully qualified class name of the function and an optional list of constructor parameters for instantiation.
    1. functions:
    2. - name: ... # required: name of the function
    3. from: class # required: source of the function (can only be "class" for now)
    4. class: ... # required: fully qualified class name of the function
    5. constructor: # optimal: constructor parameters of the function class
    6. - ... # optimal: a literal parameter with implicit type
    7. - class: ... # optimal: full class name of the parameter
    8. constructor: # optimal: constructor parameters of the parameter's class
    9. - type: ... # optimal: type of the literal parameter
    10. value: ... # optimal: value of the literal parameter

    Make sure that the order and types of the specified parameters strictly match one of the constructors of your function class.

    Constructor Parameters

    Depending on the user-defined function, it might be necessary to parameterize the implementation before using it in SQL statements.

    As shown in the example before, when declaring a user-defined function, a class can be configured using constructor parameters in one of the following three ways:

    A literal value with implicit type: The SQL Client will automatically derive the type according to the literal value itself. Currently, only values of BOOLEAN, INT, DOUBLE and are supported here.If the automatic derivation does not work as expected (e.g., you need a VARCHAR false), use explicit types instead.

    1. - true # -> BOOLEAN (case sensitive)
    2. - 42 # -> INT
    3. - 1234.222 # -> DOUBLE
    4. - foo # -> VARCHAR

    A literal value with explicit type: Explicitly declare the parameter with type and value properties for type-safety.

    1. - type: DECIMAL
    2. value: 11111111111111111

    The table below illustrates the supported Java parameter types and the corresponding SQL type strings.

    More types (e.g., TIMESTAMP or ARRAY), primitive types, and null are not supported yet.

    Catalogs can be defined as a set of YAML properties and are automatically registered to the environment upon starting SQL Client.

    Users can specify which catalog they want to use as the current catalog in SQL CLI, and which database of the catalog they want to use as the current database.

    1. catalogs:
    2. - name: catalog_1
    3. type: hive
    4. property-version: 1
    5. default-database: mydb2
    6. hive-version: 1.2.1
    7. hive-conf-dir: <path of Hive conf directory>
    8. - name: catalog_2
    9. type: hive
    10. property-version: 1
    11. hive-conf-dir: <path of Hive conf directory>
    12. execution:
    13. ...
    14. current-catalog: catalog_1
    15. current-database: mydb1

    For more information about catalogs, see .

    Detached SQL Queries

    In order to define end-to-end SQL pipelines, SQL’s INSERT INTO statement can be used for submitting long-running, detached queries to a Flink cluster. These queries produce their results into an external system instead of the SQL Client. This allows for dealing with higher parallelism and larger amounts of data. The CLI itself does not have any control over a detached query after submission.

    1. INSERT INTO MyTableSink SELECT * FROM MyTableSource

    The table sink MyTableSink has to be declared in the environment file. See the for more information about supported external systems and their configuration. An example for an Apache Kafka table sink is shown below.

    1. tables:
    2. - name: MyTableSink
    3. type: sink-table
    4. update-mode: append
    5. connector:
    6. property-version: 1
    7. type: kafka
    8. version: "0.11"
    9. topic: OutputTopic
    10. properties:
    11. - key: zookeeper.connect
    12. value: localhost:2181
    13. - key: bootstrap.servers
    14. value: localhost:9092
    15. - key: group.id
    16. value: testGroup
    17. format:
    18. property-version: 1
    19. type: json
    20. derive-schema: true
    21. schema:
    22. - name: rideId
    23. type: LONG
    24. - name: lon
    25. type: FLOAT
    26. - name: lat
    27. type: FLOAT
    28. - name: rideTime
    29. type: TIMESTAMP

    The SQL Client makes sure that a statement is successfully submitted to the cluster. Once the query is submitted, the CLI will show information about the Flink job.

    1. [INFO] Table update statement has been successfully submitted to the cluster:
    2. Cluster ID: StandaloneClusterId
    3. Job ID: 6f922fe5cba87406ff23ae4a7bb79044
    4. Web interface: http://localhost:8081

    Attention The SQL Client does not track the status of the running Flink job after submission. The CLI process can be shutdown after the submission without affecting the detached query. Flink’s restart strategy takes care of the fault-tolerance. A query can be cancelled using Flink’s web interface, command-line, or REST API.

    Views allow to define virtual tables from SQL queries. The view definition is parsed and validated immediately. However, the actual execution happens when the view is accessed during the submission of a general INSERT INTO or SELECT statement.

    Views can either be defined in environment files or within the CLI session.

    The following example shows how to define multiple views in a file. The views are registered in the order in which they are defined in the environment file. Reference chains such as view A depends on view B depends on view C are supported.

    1. tables:
    2. - name: MyTableSource
    3. # ...
    4. - name: MyRestrictedView
    5. type: view
    6. query: "SELECT MyField2 FROM MyTableSource"
    7. - name: MyComplexView
    8. type: view
    9. query: >
    10. SELECT MyField2 + 42, CAST(MyField1 AS VARCHAR)
    11. FROM MyTableSource
    12. WHERE MyField2 > 200

    Similar to table sources and sinks, views defined in a session environment file have highest precedence.

    Views can also be created within a CLI session using the CREATE VIEW statement:

    1. CREATE VIEW MyNewView AS SELECT MyField2 FROM MyTableSource;

    Views created within a CLI session can also be removed again using the DROP VIEW statement:

    Attention The definition of views in the CLI is limited to the mentioned syntax above. Defining a schema for views or escaping whitespaces in table names will be supported in future versions.

    Temporal Tables

    A allows for a (parameterized) view on a changing history table that returns the content of a table at a specific point in time. This is especially useful for joining a table with the content of another table at a particular timestamp. More information can be found in the temporal table joins page.

    The following example shows how to define a temporal table SourceTemporalTable:

    As shown in the example, definitions of table sources, views, and temporal tables can be mixed with each other. They are registered in the order in which they are defined in the environment file. For example, a temporal table can reference a view which can depend on another view or table source.

    The current SQL Client implementation is in a very early development stage and might change in the future as part of the bigger Flink Improvement Proposal 24 (FLIP-24). Feel free to join the discussion and open issue about bugs and features that you find useful.