Updating document
This guide explains the organization of Pulsar documentation and website repos and the workflow of updating various Pulsar documents.
Source repositories
Currently, the source of documents and website (where the docs are finally published) are located at the apache/pulsar-site repo.
Update versioned docs
If you want to update versioned docs, go to versioned_docs folder to find your desired one.
For versions prior to 2.8, Pulsar releases versioned docs for each patch release. You can update the exact versioned doc.
For versions start from 2.8, Pulsar release versioned docs for each minor release. Apart from updating the content, you should take care of adding specific instructions.
For example, if you want to add docs for an improvement introduced in 2.8.2, you can add the following instructions:
:::note
This <fix / improvment> is available for 2.8.2 and later versions.
:::
Update reference docs
If you want to update Pulsar reference docs, you should update the corresponding source files.
- Some reference docs are generated from code automatically. If you want to update the docs, you need to update the source code files.
- Some configuration docs are updated manually using markdown files.
Update configuration docs
Docs for configs of bundled components are generated from command-line tools automatically:
Docs for configs of external components (whose source code is hosted outside the Pulsar repositories) are updated manually:
Components | Update where ... |
---|---|
BookKeeper | reference-configuration-bookkeeper.md |
Log4j | reference-configuration-log4j.md |
Log4j shell | reference-configuration-log4j-shell.md |
ZooKeeper | reference-configuration-zookeeper.md |
Update command-line tool docs
Docs for bundled Java-based command-line tools are generated automatically:
Components | Update where… |
---|---|
pulsar | Different subcommands of bin/pulsar are updated in different code files |
pulsar-admin | Classes under the admin command-line folder |
pulsar-client | Classes under the client command-line folder |
pulsar-perf | websocket-producer subcommand |
Docs for external command-line tools or bare scripts are updated manually:
Components | Update where… |
---|---|
pulsar-shell | pulsar-shell.md |
pulsar-daemon | pulsar-daemon.md |
bookkeeper | bookkeeper.md |
Update feature matrix
Pulsar feature matrix introduces the features supported by language-specific clients and functions. It includes:
You need to update the feature matrix as soon as your related commits get merged. The workflow is illustrated as follows.
- Submit your code and doc PRs.
- Get your PRs reviewed and merged.
- Update the feature matrix to flag your contribution.
- For how to update the Client Feature Matrix, see How to update data-driven pages.
- If you have problems in editing the spreadsheet of Function Feature Matrix, you can reach out to
dev@pulsar.apache.org
.