Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.

Commit fb02ea8

Browse files
mendonkaimurphy
andauthored
update streaming tenant creation steps (#61)
* docs: update references to 'Streaming' in UI instructions to 'Streaming tenants' * astra-and-streaming-flow * link-cleanup * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestions from code review * replace-navigation-to-streaming * remove-delimiter-blocks-causing-errors --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com>
1 parent b21da3b commit fb02ea8

9 files changed

Lines changed: 18 additions & 19 deletions

File tree

modules/functions/pages/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
A {pulsar-short} *transform function* is a low-code implementation of xref:astra-streaming:developing:astream-functions.adoc[{pulsar-short} functions]. +
55
Functions receive data from one or more input topics, apply user-supplied processing, and publish the results to another topic. +
6-
Custom functions are a powerful feature, but for common data transformations, we now include *Transform Functions*. +
7-
<<Drop-fields>>, <<Flatten>>, <<Compute>>, and more without coding or deep schema knowledge. +
6+
Custom functions are a powerful feature, but for common data transformations, we now include *Transform Functions*.
7+
Drop fields, flatten, compute, and more without coding or deep schema knowledge.
88
{company} has created the following transform functions for common data transforms, but we're always experimenting with new ones.
99
Check back as the list grows, or let us know some functions you'd find helpful in your deployment.
1010

modules/pulsar-io/pages/connectors/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ curl::
260260
You need a {pulsar-short} token for REST API authentication.
261261
This is different from your {astra-db} application tokens.
262262
263-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
263+
. In the {astra-ui-link}, click *Streaming tenants*.
264264
265265
. Click your tenant's name, and then click the *Settings* tab.
266266
@@ -310,7 +310,7 @@ curl::
310310
You need a {pulsar-short} token for REST API authentication.
311311
This is different from your {astra-db} application tokens.
312312
313-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
313+
. In the {astra-ui-link}, click *Streaming tenants*.
314314
315315
. Click your tenant's name, and then click the *Settings* tab.
316316

modules/pulsar-io/partials/connectors/sinks/curl-tab-prereq.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
You need a {pulsar-short} token for REST API authentication.
22
This is different from your {astra-db} application tokens.
33

4-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
4+
. In the {astra-ui-link}, click *Streaming tenants*.
55

66
. Click your tenant's name, and then click the *Settings* tab.
77

modules/pulsar-io/partials/connectors/sources/curl-tab-prereq.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
You need a {pulsar-short} token for REST API authentication.
22
This is different from your {astra-db} application tokens.
33

4-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
4+
. In the {astra-ui-link}, click *Streaming tenants*.
55

66
. Click your tenant's name, and then click the *Settings* tab.
77

modules/pulsar-io/partials/connectors/sources/monitoring.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ curl::
2323
You need a {pulsar-short} token for REST API authentication.
2424
This is different from your {astra-db} application tokens.
2525
26-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
26+
. In the {astra-ui-link}, click *Streaming tenants*.
2727
2828
. Click your tenant's name, and then click the *Settings* tab.
2929
@@ -85,7 +85,7 @@ curl::
8585
You need a {pulsar-short} token for REST API authentication.
8686
This is different from your {astra-db} application tokens.
8787
88-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
88+
. In the {astra-ui-link}, click *Streaming tenants*.
8989
9090
. Click your tenant's name, and then click the *Settings* tab.
9191

modules/use-cases-architectures/pages/real-time-data-pipeline/01-create-astra-objects.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This guide is part of a series that creates a real-time data pipeline with {prod
88

99
== Creating message topics to capture the stream of click data
1010

11-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], select *Streaming*, and then click **Create Tenant**.
11+
. In the {astra-ui-link}, click *Create tenant*.
1212

1313
. Name the new streaming tenant `webstore-clicks`, select any cloud provider and region, and then click **Create Tenant**.
1414

@@ -27,7 +27,7 @@ You now have a `production` namespace with two topics, as well as the `default`
2727

2828
== Storing the stream of click data
2929

30-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *{product-short}*.
30+
. From your tenant's page, click **Dashboard**, and then click **Serverless databases**.
3131

3232
. Click **Create database**, and then complete the fields as follows:
3333
+
@@ -139,7 +139,8 @@ CREATE TABLE click_data.product_clicks (
139139

140140
== Connecting the topics to the store
141141

142-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select *Streaming*.
142+
. To return to the *Streaming tenants* dashboard from the CQL console, click your user name, and then select the org your `webstore-clicks` streaming tenant was created in.
143+
. In the {astra-ui-link}, click *Streaming tenants*.
143144

144145
. Click your `webstore-clicks` streaming tenant.
145146

modules/use-cases-architectures/pages/real-time-data-pipeline/02-create-decodable-objects.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This guide is part of a series that creates a real-time data pipeline with {prod
1010

1111
To connect {product} to Decodable, you need some information from your {product} tenant.
1212

13-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], select **Streaming**, and then click your `webstore-clicks` streaming tenant.
13+
. In the {astra-ui-link}, click *Streaming tenants*, and then click your `webstore-clicks` streaming tenant.
1414
+
1515
image:decodable-data-pipeline/02/image4.png[]
1616

modules/use-cases-architectures/pages/real-time-data-pipeline/03-put-it-all-together.adoc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,20 @@ In “Input Metrics”, we see that 1 record has been received.
7474
+
7575
image:decodable-data-pipeline/03/image4.png[]
7676

77-
. Return to your {product} tenant “webstore-clicks” and navigate to the “Namespace and Topics” area.
77+
. Return to your “webstore-clicks” tenant and navigate to the “Namespace and Topics” area.
7878
Expand the “production” namespace and select the “all-clicks” topic.
7979
Confirm that “Data In” has 1 message and “Data Out” has 1 message. This means the topic took the data in and a consumer acknowledged receipt of the message.
8080
+
8181
image:decodable-data-pipeline/03/image6.png[]
8282

83-
. In the “Sinks” tab in {product}, select the “all-clicks” sink. In “Instance Stats” you see “Reads” has a value of 1 and “Writes” has a value of 1. This means the sink consumed a message from the topic and wrote the data to the store.
83+
. In the “Sinks” tab, select the “all-clicks” sink. In “Instance Stats” you see “Reads” has a value of 1 and “Writes” has a value of 1. This means the sink consumed a message from the topic and wrote the data to the store.
8484
+
8585
image:decodable-data-pipeline/03/image5.png[]
8686

8787
. Inspect the data in your {astra-db} database.
8888
+
8989
In the {astra-ui}, go to your `webstore-clicks` database, click **CQL Console**, and then run the following CQL statement:
9090
+
91-
--
9291
[source,sql,subs="attributes+"]
9392
----
9493
select * from click_data.all_clicks;
@@ -128,13 +127,12 @@ Similar to how you followed the above flow of raw click data, follow this flow t
128127

129128
. Go to your `Astra-Streaming-Product-Webclicks-Connection` connection, and then check that the **Input Metrics** have 1 record.
130129

131-
. In {product}, go to your tenant, and then go to the `product-clicks` topic in the `production` namespace.
130+
Go to your `webstore-clicks` tenant, and then go to the `product-clicks` topic in the `production` namespace.
132131

133132
. Make sure **Data In** and **Data Out** have 1 message each.
134133

135134
. In the {astra-ui}, go to your `webstore-clicks` database, click **CQL Console**, and then query the `product_clicks` table to inspect the data in the database:
136135
+
137-
--
138136
[source,sql,subs="attributes+"]
139137
----
140138
select * from click_data.product_clicks;

modules/use-cases-architectures/pages/real-time-data-pipeline/04-debugging-and-clean-up.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ image:decodable-data-pipeline/04/image2.png["Delete decodable connection"]
4242

4343
=== Removing {product-short} objects
4444

45-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select **Streaming**.
45+
. In the {astra-ui-link}, click *Streaming tenants*.
4646

4747
. Find the `webstore-clicks` tenant, click icon:ellipsis-vertical[name="More"], and then select **Delete**.
4848
+
4949
This removes the tenant and all associated sinks, topics, messages, and namespaces.
5050

51-
. In the {astra-ui-link} header, click icon:grip[name="Applications"], and then select **{product-short}**.
51+
. Click **Serverless databases** to switch to the Serverless databases dashboard.
5252

5353
. Find the `webstore-clicks` database, click icon:ellipsis-vertical[name="More"], and then select **Terminate**.
5454
+

0 commit comments

Comments
 (0)