Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[improve][pip] PIP-346: Add a simplified configuration file for Pulsar #22274

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add candidate conf list.
  • Loading branch information
thetumbled committed Mar 15, 2024
commit db9d4e487dc3485064231a1b8de03ba5a98a7e33
46 changes: 43 additions & 3 deletions pip/pip-346.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,53 @@ We can learn from zookeeper that it uses a simplified configuration file, which

Add a simplified configuration file for Pulsar, which only contains the configurations that are frequently modified.

# High Level Design
- rename current `broker.conf` to `complete_broker.conf`
- add a new `broker.conf` which only contains the configurations that are frequently modified

# Detailed Design

## Design & Implementation Details

- rename current `broker.conf` to `complete_broker.conf`
- add a new `broker.conf` which only contains the configurations that are frequently modified
The configurations that are frequently modified are:
- `brokerServicePort`
- `brokerServicePortTls`
- `webServicePort`
- `webServicePortTls`
- `metadataStoreUrl`
- `configurationMetadataStoreUrl`
- `advertisedAddress`
- `clusterName`
- `allowAutoTopicCreation`
- `allowAutoTopicCreationType`
- `allowAutoSubscriptionCreation`
- `defaultNumPartitions`
- `brokerDeleteInactiveTopicsEnabled`
- `subscriptionExpirationTimeMinutes`
- `brokerDeduplicationEnabled`
- `maxMessageSize`
- `systemTopicEnabled`
- `topicLevelPoliciesEnabled`
- `acknowledgmentAtBatchIndexLevelEnabled`
- `authenticationEnabled`
- `authenticationProviders`
- `authorizationEnabled`
- `authorizationProvider`
- `superUserRoles`
- `tokenSecretKey`
- `tokenPublicKey`
- `bookkeeperMetadataServiceUri`
- `bookkeeperClientRackawarePolicyEnabled`
- `bookkeeperClientRegionawarePolicyEnabled`
- `managedLedgerDefaultEnsembleSize`
- `managedLedgerDefaultWriteQuorum`
- `managedLedgerDefaultAckQuorum`
- `loadBalancerEnabled`
- `loadBalancerSheddingEnabled`
- `loadBalancerLoadSheddingStrategy`
- `loadBalancerLoadPlacementStrategy`
- `loadBalancerOverrideBrokerNicSpeedGbps`
- `functionsWorkerEnabled`
- `transactionCoordinatorEnabled`


# Backward & Forward Compatibility
Expand Down
Loading