Skip to content

Commit

Permalink
[docs] Update Installation & Deployment > Deploying with Docker
Browse files Browse the repository at this point in the history
Harmonize catalog name and commands to be consistent with other deployment options and catalog name in Getting Started with Flink guide

Issue alibaba#243
  • Loading branch information
michaelkoepf committed Dec 23, 2024
1 parent e6025ec commit 5e2d6f9
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions website/docs/install-deploy/deploying-with-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,17 +214,12 @@ docker exec -it jobmanager ./sql-client
2. Use the commands below to verify that the cluster works.

```sql title="Flink SQL"
CREATE CATALOG my_fluss WITH (
CREATE CATALOG fluss_catalog WITH (
'type' = 'fluss',
'bootstrap.servers' = 'coordinator-server:9123'
);
```

```sql title="Flink SQL"
USE CATALOG my_fluss;
```


Congratulations! You have successfully deployed Fluss with `docker run`.
Check out [this section](#whats-next) for potential next steps.

Expand Down Expand Up @@ -539,16 +534,12 @@ docker compose exec jobmanager ./sql-client
2. Use the commands below to verify that the cluster works.

```sql title="Flink SQL"
CREATE CATALOG my_fluss WITH (
CREATE CATALOG fluss_catalog WITH (
'type' = 'fluss',
'bootstrap.servers' = 'coordinator-server:9123'
);
```

```sql title="Flink SQL"
USE CATALOG my_fluss;
```

Congratulations! You have successfully deployed Fluss with `docker compose`.
Check out [this section](#whats-next) for potential next steps.

Expand Down

0 comments on commit 5e2d6f9

Please sign in to comment.