Skip to content

Commit faf75f4

Browse files
authored
Kafka Docu (#1065)
Signed-off-by: Andy Tael <[email protected]>
1 parent 5ee7d34 commit faf75f4

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: "Apache Kafka"
3+
description: "Distributed streaming platform designed for high-throughput, fault-tolerant, and scalable real-time data processing."
4+
keywords: "kafka streaming data processing springboot spring development microservices oracle backend"
5+
---
6+
## Apache Kafka
7+
8+
[Apache Kafka](https://kafka.apache.org) is an open-source, distributed streaming platform designed for high-throughput, fault-tolerant, and scalable real-time data processing. It acts as a messaging system that enables applications to publish, subscribe to, store, and process streams of data (events or messages) efficiently.
9+
10+
## Access the Kafka cluster
11+
12+
The address to the boot strap servers in Oracle Backend for Microservices and AI is:
13+
14+
`kafka-cluster-kafka-bootstrap.kafka.svc.cluster.local:9092`
15+
16+
An example Spring Boot application.yaml could look like this:
17+
18+
```yaml
19+
spring:
20+
kafka:
21+
bootstrap-servers: kafka-cluster-kafka-bootstrap.kafka.svc.cluster.local:9092
22+
```
23+
24+
## Strimzi Operator
25+
26+
The Kafka cluster is deployed using the [Strimzi](https://strimzi.io) operator. The cluster is using Zookeeper.

docs-source/spring/data/menu/main.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ main:
3333
ref: "/platform/microtx"
3434
- name: Vault
3535
ref: "/platform/vault"
36+
- name: Kafka
37+
ref: "/platform/kafka"
3638
- name: VS Code plugin
3739
ref: "/platform/vscode-plugin"
3840
- name: IntelliJ plugin

0 commit comments

Comments
 (0)