Skip to content

Commit

Permalink
docs: retire basics-docker quickstart topic (DOCS-4583) (#5609)
Browse files Browse the repository at this point in the history
* docs: retire basics-docker quickstart topic (DOCS-4583)

* docs: bump cp verion in compatibility table

* docs: incorporate feedback

* docs: delete extraneous quickstart page
  • Loading branch information
JimGalasyn authored Jun 12, 2020
1 parent a68b9ad commit 35dd8e1
Show file tree
Hide file tree
Showing 17 changed files with 118 additions and 2,105 deletions.
2 changes: 1 addition & 1 deletion docs/concepts/ksqldb-and-kafka-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ To get started with {{ site.kstreams }}, try the
Next Steps
----------

- [Write Streaming Queries Against {{ site.aktm }} Using ksqlDB](../tutorials/basics-docker.md)
- [Quickstart](https://ksqldb.io/quickstart.html)
- [ksqlDB Developer Guide](../developer-guide/index.md)
- [Streams Developer Guide](https://docs.confluent.io/current/streams/developer-guide/index.html)

10 changes: 4 additions & 6 deletions docs/developer-guide/create-a-stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ query results from other streams.
Create a Stream from an existing Kafka topic
--------------------------------------------

Use the [CREATE STREAM](./create-stream) statement to create a stream from an existing underlying
Kafka topic.
Use the [CREATE STREAM](./create-stream) statement to create a stream from an
existing underlying {{ site.ak }} topic.

The following examples show how to create streams from an existing Kafka topic,
named `pageviews`. To see these examples in action, create the
`pageviews` topic by following the procedure in
[Write Streaming Queries Against {{ site.aktm }} Using ksqlDB](../tutorials/basics-docker.md).
The following examples show how to create streams from a {{ site.ak }} topic
named `pageviews`.

### Create a Stream with Selected Columns

Expand Down
8 changes: 3 additions & 5 deletions docs/developer-guide/create-a-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ Create a Table from an existing Kafka Topic
-------------------------------------------

Use the [CREATE TABLE](./create-table) statement to create a table from an existing
underlying Kafka topic.
underlying {{ site.ak }} topic.

The following examples show how to create tables from an existing Kafka topic,
named `users`. To see these examples in action, create the `users` topic
by following the procedure in
[Write Streaming Queries Against {{ site.aktm }} Using ksqlDB](../tutorials/basics-docker.md).
The following examples show how to create tables from a {{ site.ak }} topic
named `users`.

### Create a Table with Selected Columns

Expand Down
7 changes: 3 additions & 4 deletions docs/developer-guide/implement-a-udf.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,12 +346,11 @@ Variations :
Description : multiply two non-nullable INTs.
```

Use the MULTIPLY function in a query. If you follow the steps in
[Write Streaming Queries Against {{ site.aktm }} Using ksqlDB (Docker)](../tutorials/basics-docker.md),
you can multiply the two BIGINT fields in the `pageviews_original` stream:
Use the MULTIPLY function in a query. the following SELECT statement
multiplies two BIGINT fields in `pageviews` stream:

```sql
SELECT MULTIPLY(rowtime, viewtime) FROM pageviews_original EMIT CHANGES;
SELECT MULTIPLY(rowtime, viewtime) FROM pageviews EMIT CHANGES;
```

Your output should resemble:
Expand Down
2 changes: 0 additions & 2 deletions docs/developer-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ These topics show how to develop ksqlDB applications.
- [Create a ksqlDB Stream](create-a-stream.md)
- [Create a ksqlDB Table](create-a-table.md)
- [Aggregate Streaming Data With ksqlDB](aggregate-streaming-data.md)
- [Query With Arrays and Maps](query-with-arrays-and-maps.md)
- [Query With Structured Data](query-with-structured-data.md)
- [Transform a Stream With ksqlDB](transform-a-stream-with-ksqldb.md)
- [Implement a User-defined Function (UDF, UDAF, and UDTF)](implement-a-udf)
- [Partition Data to Enable Joins](joins/partition-data.md)
Expand Down
3 changes: 0 additions & 3 deletions docs/developer-guide/joins/join-streams-and-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ CREATE STREAM pageviews_enriched AS
EMIT CHANGES;
```

For the full code example, see
[Write Streaming Queries Against {{ site.aktm }} Using ksqlDB](../../tutorials/basics-docker.md).

When you join two streams, you must specify a WITHIN clause for matching
records that both occur within a specified time interval. For valid time
units, see [ksqlDB Time Units](../syntax-reference.md#ksqldb-time-units).
Expand Down
146 changes: 0 additions & 146 deletions docs/developer-guide/query-with-arrays-and-maps.md

This file was deleted.

Loading

0 comments on commit 35dd8e1

Please sign in to comment.