Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 0 additions & 7 deletions conf/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1244,10 +1244,6 @@ bookkeeperClientIsolationGroups=
# have enough bookie available.
bookkeeperClientSecondaryIsolationGroups=

# Minimum bookies that should be available as part of bookkeeperClientIsolationGroups
# else broker will include bookkeeperClientSecondaryIsolationGroups bookies in isolated list.
bookkeeperClientMinAvailableBookiesInIsolationGroups=

# Enable/disable having read operations for a ledger to be sticky to a single bookie.
# If this flag is enabled, the client will use one single bookie (by preference) to read
# all entries for a ledger.
Expand Down Expand Up @@ -2263,6 +2259,3 @@ brokerInterceptorsDirectory=./interceptors

# List of broker interceptor to load, which is a list of broker interceptor names
brokerInterceptors=

# Enable or disable the broker interceptor, which is only used for testing for now
disableBrokerInterceptors=true
7 changes: 0 additions & 7 deletions conf/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -798,10 +798,6 @@ bookkeeperClientIsolationGroups=
# have enough bookie available.
bookkeeperClientSecondaryIsolationGroups=

# Minimum bookies that should be available as part of bookkeeperClientIsolationGroups
# else broker will include bookkeeperClientSecondaryIsolationGroups bookies in isolated list.
bookkeeperClientMinAvailableBookiesInIsolationGroups=

# Set the client security provider factory class name.
# Default: org.apache.bookkeeper.tls.TLSContextFactory
bookkeeperTLSProviderFactoryClass=org.apache.bookkeeper.tls.TLSContextFactory
Expand Down Expand Up @@ -1555,9 +1551,6 @@ brokerInterceptorsDirectory=./interceptors
# List of broker interceptor to load, which is a list of broker interceptor names
brokerInterceptors=

# Enable or disable the broker interceptor, which is only used for testing for now
disableBrokerInterceptors=true

# Whether retain null-key message during topic compaction
topicCompactionRetainNullKey=false

Expand Down
4 changes: 0 additions & 4 deletions deployment/terraform-ansible/templates/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -693,10 +693,6 @@ bookkeeperClientIsolationGroups=
# have enough bookie available.
bookkeeperClientSecondaryIsolationGroups=

# Minimum bookies that should be available as part of bookkeeperClientIsolationGroups
# else broker will include bookkeeperClientSecondaryIsolationGroups bookies in isolated list.
bookkeeperClientMinAvailableBookiesInIsolationGroups=

# Enable/disable having read operations for a ledger to be sticky to a single bookie.
# If this flag is enabled, the client will use one single bookie (by preference) to read
# all entries for a ledger.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public class TestBrokerInterceptors extends TopicMessagingBase {

@Override
public void setupCluster() throws Exception {
brokerEnvs.put(PREFIX + "disableBrokerInterceptors", "false");
brokerEnvs.put(PREFIX + "brokerInterceptorsDirectory", "/pulsar/examples");
brokerEnvs.put(PREFIX + "brokerInterceptors", "loggingInterceptor");
super.setupCluster();
Expand Down
Loading