[Doc] Documentation Related: Is there a page listing all the parameters available in the config file?
Search before creation
- [X] I had searched in the issues and found no similar issues.
Documentation Related
Is there a page listing all the parameters available in the config file?
For example, there is an waitTimeMillsInSendQueue field in BrokerConfig.java,
but when I search it by Google, waitTimeMillsInSendQueue site:rocketmq.apache.org, I got nothing.
So how could I possibly know the existence of waitTimeMillsInSendQueue?
Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
Hello @Camio1945 , for parameter configuration, please refer to: https://rocketmq.apache.org/zh/docs/4.x/parameterConfiguration/02server
Hello @Camio1945 , for parameter configuration, please refer to: https://rocketmq.apache.org/zh/docs/4.x/parameterConfiguration/02server
@yx9o Thanks. But your link is for 4.x, not for 5.x, and it does not contain waitTimeMillsInSendQueue either.
Indeed, you can try to improve the doc.
@Camio1945
hi, i made dyrnq/rocketmq-default-config for genConfig using different distribution zip file from archive.apache.org/dist/rocketmq/.
you can view them online
- https://github.com/dyrnq/rocketmq-default-config/blob/main/4.9.7/broker.conf
- https://github.com/dyrnq/rocketmq-default-config/blob/main/5.3.0/broker.conf
or download them and diff -y
ver1="4.9.7"
ver2="5.3.0"
ver1_file="${ver1}"_broker.conf
ver2_file="${ver2}"_broker.conf
(
curl -fsSL -o "${ver1_file}" https://github.com/dyrnq/rocketmq-default-config/raw/main/"${ver1}"/broker.conf
curl -fsSL -o "${ver2_file}" https://github.com/dyrnq/rocketmq-default-config/raw/main/"${ver2}"/broker.conf
)
diff -y "${ver1_file}" "${ver2_file}"
This issue is stale because it has been open for 365 days with no activity. It will be closed in 3 days if no further activity occurs.
This issue was closed because it has been inactive for 3 days since being marked as stale.