commit | 342f5571a99d4817a6799f806f5049e4d1693133 | [log] [tgz] |
---|---|---|
author | Edoardo Comar <edocomar@gmail.com> | Fri Apr 25 13:29:21 2025 +0100 |
committer | GitHub <noreply@github.com> | Fri Apr 25 13:29:21 2025 +0100 |
tree | 40a4aee5446d4eebc468b2e77ad9b187968b2d7a | |
parent | 11a72d12a83a0c52f6ba28a4dff5dde00e516e92 [diff] |
KAFKA-19026: add note in ZK to KRaft migration (#685) Add a brief note pointing to the issue in the 3.9 migration guide
The documentation can be hosted on a local webserver via httpd.
You can run it with the following command, note that it requires docker:
./start-preview.sh
Then you can open localhost:8080 on your browser and browse the documentation.
To kill the process, just type ctrl + c.
# change directory into kafka repository cd KAFKA_REPO ./gradlew clean siteDocTar # supposing built with scala 2.13 tar zxvf core/build/distributions/kafka_2.13-$(./gradlew properties | grep version: | awk '{print $NF}' | head -n 1)-site-docs.tgz
# change directory into kafka-site repository cd KAFKA_SITE_REPO # copy the generated documents into dev folder rm -rf dev mkdir dev cp -r KAFKA_REPO/site-docs/* dev # preview it ./start-preview.sh
Then you can open http://localhost:8080/dev/documentation/ on your browser and browse the generated documentation.