DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
.
(a few sample directories below, other versions will have similar structure)
├── 38
│ ├── _index.md
│ ├── apis
│ ├── configuration
│ ├── design
│ ├── getting-started
│ ├── implementation
│ ├── kafka-connect
│ ├── operations
│ ├── security
│ └── streams
├── 39
│ ├── _index.md
│ ├── apis
│ ├── configuration
│ ├── design
│ ├── getting-started
│ ├── implementation
│ ├── kafka-connect
│ ├── operations
│ ├── security
│ └── streams
├── _index.md
├── blog
│ ├── _index.md
│ └── releases
├── community
│ ├── _index.md
│ ├── books_and_papers.md
│ ├── committers.md
│ ├── contact.md
│ ├── developer.md
│ ├── downloads.md
│ ├── events.md
│ ├── project_security.md
│ ├── trademark.md
│ └── videos.md
├── search.md
└── testimonials
└── _index.md |
...
We store Kafka version specific documentation under {{docs}} folder in the corresponding branch of core kafka repo: Convert the html source files as specified above and update the docs directory with their markdown equivalents. We will do this for the following branches:
...
3.9
...
, 3.8
...
, 3.7
...
, 3.6
...
, 3.5
...
, 3.4
...
, 3.3
...
, 3.2
...
, 3.1
...
, 3, 2.8
...
, 2.7
...
, 2.6
...
, 2.5
...
, 2.4
...
, 2.3
...
, 2.2
...
, 2.1
...
, 2, 1.1
...
, 1, 0.11.0
...
, 0.10.2
...
, 0.10.1
...
, 0.10.0
...
, 0.9.0
...
, 0.8.2
...
, 0.8.1
...
, 0.8
...
, 0.7
Sample directory layout:
| Code Block |
|---|
docs/
├── _index.md
├── apis
│ ├── _index.md
│ └── api.md
├── configuration
│ ├── _index.md
│ └── configuration.md
├── design
│ ├── _index.md
│ ├── design.md
│ └── protocol.md
├── getting-started
│ ├── _index.md
│ ├── docker.md
│ ├── ecosystem.md
│ ├── introduction.md
│ ├── quickstart.md
│ ├── upgrade.md
│ └── uses.md
├── implementation
│ ├── _index.md
│ ├── distribution.md
│ ├── log.md
│ ├── message-format.md
│ ├── messages.md
│ └── network-layer.md
├── kafka-connect
│ ├── _index.md
│ ├── administration.md
│ ├── connector-development-guide.md
│ ├── overview.md
│ └── user-guide.md
├── operations
│ ├── _index.md
│ ├── basic-kafka-operations.md
│ ├── datacenters.md
│ ├── enter-migration-mode-on-the-brokers.md
│ ├── finalizing-the-migration.md
│ ├── geo-replication-(cross-cluster-data-mirroring).md
│ ├── hardware-and-os.md
│ ├── java-version.md
│ ├── kafka-configuration.md
│ ├── kraft.md
│ ├── limitations.md
│ ├── migrating-brokers-to-kraft.md
│ ├── migration-phases.md
│ ├── monitoring.md
│ ├── multi-tenancy.md
│ ├── preparing-for-migration.md
│ ├── provisioning-the-kraft-controller-quorum.md
│ ├── reverting-to-zookeeper-mode-during-the-migration.md
│ ├── terminology.md
│ ├── tiered-storage.md
│ └── zookeeper.md
├── security
│ ├── _index.md
│ ├── authentication-using-sasl.md
│ ├── authorization-and-acls.md
│ ├── encryption-and-authentication-using-ssl.md
│ ├── incorporating-security-features-in-a-running-cluster.md
│ ├── listener-configuration.md
│ ├── security-overview.md
│ ├── zookeeper-authentication.md
│ └── zookeeper-encryption.md
└── streams
├── _index.md
├── architecture.md
├── core-concepts.md
├── developer-guide
│ ├── _index.md
│ ├── app-reset-tool.md
│ ├── config-streams.md
│ ├── datatypes.md
│ ├── dsl-api.md
│ ├── dsl-topology-naming.md
│ ├── interactive-queries.md
│ ├── manage-topics.md
│ ├── memory-mgmt.md
│ ├── processor-api.md
│ ├── running-app.md
│ ├── security.md
│ ├── testing.md
│ └── write-streams-app.md
├── introduction.md
├── quickstart.md
├── tutorial.md
└── upgrade-guide.md |
...