Skip to content

Commit f1e17c4

Browse files
committed
Integrate/Kafka: Implement suggestions by CodeRabbit
1 parent 4640685 commit f1e17c4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/integrate/kafka/docker-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ docker compose up -d
4747

4848
## Provisioning CrateDB and Kafka
4949

50-
* CrateDB Admin UI: http://localhost:4200
50+
* CrateDB Admin UI: `http://localhost:4200`
5151
* Kafka broker (inside-compose hostname): kafka:9092
5252

5353
### Create a demo table in CrateDB
5454

55-
The easiest way to do this is through the CrateDB cloud UI at http://localhost:4200 and execute this using the console:
55+
The easiest way to do this is through the CrateDB cloud UI at `http://localhost:4200` and execute this using the console:
5656

5757
```sql
5858
CREATE TABLE IF NOT EXISTS sensor_readings (

docs/integrate/kafka/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >-
1212
<a href="https://github.com/crate/cratedb-examples/actions/workflows/framework-flink-kafka-java.yml" target="_blank" rel="noopener noreferrer">
1313
<img src="https://img.shields.io/github/actions/workflow/status/crate/cratedb-examples/framework-flink-kafka-java.yml?branch=main&label=Apache%20Kafka,%20Apache%20Flink" loading="lazy" alt="CI status: Apache Kafka, Apache Flink"></a>
1414
<a href="https://github.com/crate/cratedb-examples/actions/workflows/application-ingestr.yml" target="_blank" rel="noopener noreferrer">
15-
<img src="https://img.shields.io/github/actions/workflow/status/crate/cratedb-examples/application-ingestr.yml?branch=main&label=Ingestr%2BKafka" loading="lazy" alt="CI status: Apache Kafka, Apache Flink"></a>
15+
<img src="https://img.shields.io/github/actions/workflow/status/crate/cratedb-examples/application-ingestr.yml?branch=main&label=Ingestr%2BKafka" loading="lazy" alt="CI status: Ingestr + Kafka"></a>
1616
```
1717
```{div} .clearfix
1818
```
@@ -39,7 +39,7 @@ Apache Kafka is a widely used open-source distributed event-store and streaming
3939
## Common Ingestion Options
4040

4141
:::{important}
42-
The Apache Kafka PostgreSQL connector is 99% compatible with CrateDB. CrateDB does not support transactions, but this only becomes notable when either ingestion to CrateDB is failing or there is some other connection issue.&#x20;
42+
The Apache Kafka PostgreSQL connector is largely compatible with CrateDB. Note that CrateDB does not support transactions; this generally matters only during failures or connection issues that require retries or rollbacks.
4343
:::
4444

4545
### Kafka Connect → CrateDB (recommended for most)

docs/integrate/kafka/kafka-connect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,15 @@ data transfer:
233233
Launch all the services defined in the `docker-compose.yml` file:
234234

235235
```bash
236-
docker-compose up -d
236+
docker compose up -d
237237
```
238238

239239
## Verify the Running Containers
240240

241241
Ensure that all services are up and running by listing the active containers:
242242

243243
```bash
244-
docker-compose ps
244+
docker compose ps
245245
```
246246

247247
You should see the following containers:

0 commit comments

Comments
 (0)