Starting with the CLI
How to get started using the DeltaStream command line interface
Last updated
How to get started using the DeltaStream command line interface
Last updated
DeltaStream provides a Command Line Interface (CLI) you can use to interact with the platform from the terminal. This guide walks you through the steps to build a streaming application with DeltaStream’s CLI. Finish these steps to:
Get hands-on experience with foundational concepts in DeltaStream
Gain the knowledge to build applications similar to the one in this guide
While this guide uses topics in Apache Kafka, the steps should be the same regardless of whether you have data in other streaming stores such as Amazon Kinesis or Redpanda.
We assume you already have created your account and signed into DeltaStream. Also, we assume you already have created a DeltaStream organization or have joined an existing organization.
You accomplish the following steps in this guide for the CLI:
Download the DeltaStream CLI.
Connect to your streaming store (in this case, Apache Kafka) by creating a store in DeltaStream.
Create your first database.
Create streams and changelogs for your Kafka topics.
Create new streams, changelogs, and materialized views using DeltaStream’s continuous queries.
(Optional) Share your streaming data with other users in your organization.
Log into DeltaStream.
At the bottom of the lefthand navigation, click Support Center ( ). The Support menu displays.
Click the OS you want. The DeltaStream CLI begins downloading automatically into a dscli
folder.
Unzip and deploy the files as you would with any compressed application.
The first step is to create a store in DeltaStream. A store is a streaming store service such as Apache Kafka or Amazon Kinesis where your streaming data resides.
Use the CREATE STORE statement to create a store in the DeltaStream CLI:
As is indicated below, in declaring the store, DeltaStream provides the required configurations to connect and use the streaming store from DeltaStream.
You can now inspect the store and print to view the content of its topics:
Note that the prompt shows the current database and schema.
Here's an example: Use the following interactive query to inspect the pageviews
stream:
During this time, DeltaStream compiles and launches the query as an Apache Flink streaming job.
When the query runs successfully, you have a new Kafka topic named csas_enriched_pv
in your Kafka cluster, plus a new stream added to the streams in your TestDB
database. Run the following query to examine the contents of the new stream:
Now that you have the enriched pageviews stream, you can build a materialized view in which you compute the number of pageviews per user. To create this materialized view, type the following statement:
You can query the resulting materialized view the same way you'd query a materialized view in traditional relational databases -- except that in DeltaStream, the streaming job always keeps the data in the materialized view fresh.
Below is a simple query to get the current view count for a user with the userid of User_2
:
As you see, the number of pageviews for User_2
is 580
at the time you run the above query. Run the query again, and you see an updated result for the pageview count for the user. This demonstrates that every time you run a query on a materialized view, you receive the most up-to-date result. DeltaStream ensures the data in the view is continuously updated using the continuous query that declared the materialized view.
Now wait a few more seconds. Then run the same query on the materialized view. You should see something similar to the below:
As you see, the result is updated to 818
from the previous value of 580
.
In summary, this guide has demonstrated how DeltaStream makes it easy to build a stream processing applications using the CLI tool. You've created a query that joins pageviews
and users
and creates a new stream called csas_enriched_pv
. You also ran another query that creates a materialized view named user_view_count
from csas_enriched_pv
.
Now it's time to clean up your environment. To do this:
Terminate the queries.
Drop the created streams, changelogs, and materialized views.
Go to the corresponding database and schema to drop the streams, changelogs, and materialized views.
Your new store displays as the default store in the prompt. Use the command to view the available stores you have created in DeltaStream.
In DeltaStream, you use databases to organize your streaming data in an intuitive namespace. Use the statement to create a database. When you create a database, DeltaStream in turn creates a default schema, named public
, in the database. The following shows the statement that creates a new database labelled TestDB
:
Now create relations on top of your Kafka topics. You do this using DeltaStream’s DDL statements. To manage streaming data in an entity as an append-only stream, in which each streaming event is independent, define it as a . In the example below, you declare a stream on the ds_pageviews
topic, as each pageview event is an independent event:
Next, declare a changelog for the ds_users
topic. A indicates that you wish to interpret events in an entity as UPSERT events. The events should have a primary key, and each event is interpreted as an insert or update for the given primary key. Use the command to declare the users
changelog:
Now that you have declared streams and changelogs, you can write continuous queries in SQL to process this streaming data in real time. Start with a , wherein the query results stream back to you. You can use such queries to inspect your streams and changelogs, or to build queries iteratively by inspecting the query’s result.
While interactive query results display, DeltaStream provides a , wherein the query results are saved back in a store or a . To proceed, write a persistent query that joins the pageviews
stream with the changelog
to create an enriched pageviews stream that includes user details for each pageview event. While you're at it, also convert the epoch time to a timestamp with a time zone via the TO_TIMESTAMP_LTZ
function.
You should be able to use the command to view the query along with its status:
When you run the above query, DeltaStream launches a streaming job that runs the statement and materializes the result of the query. Use the command to view this query: