-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from kafkaesque-io/enhancements
Various fixes and enhancements
- Loading branch information
Showing
10 changed files
with
140 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
|
||
persistence: no | ||
enableTests: yes | ||
extra: | ||
autoRecovery: no | ||
bastion: yes | ||
|
||
image: | ||
broker: | ||
# If using tiered storage, use pulsar-all image for broker | ||
repository: apachepulsar/pulsar-all | ||
|
||
storageOffload: | ||
|
||
bucket: tiered-storage | ||
region: us-east-1 | ||
maxBlockSizeInBytes: "64000000" | ||
readBufferSizeInBytes: "1000000" | ||
## The following are default values for the cluster. They can be changed | ||
## on each namespace. | ||
managedLedgerOffloadDeletionLagMs: "60000" | ||
managedLedgerOffloadAutoTriggerSizeThresholdBytes: "1000" | ||
|
||
# For AWS S3 | ||
# ====== | ||
# You must create an IAM account with access to the bucket and | ||
# generate keys for that account. | ||
# | ||
driver: s3 | ||
accessKey: 2J7EJY4xTK6uHKqnCE4nAhdGfXqy | ||
accessSecret: 4YeYwYdsoFFpvtNFuncWcTVqSTPL | ||
## For s3 compatible services, need to specify the endpoint but | ||
## not needed for AWS | ||
serviceEndpoint: http://127.0.0.1:7777 | ||
|
||
zookeeper: | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 0.3 | ||
configData: | ||
PULSAR_MEM: "\"-Xms512m -Xmx512m -Dcom.sun.management.jmxremote -Djute.maxbuffer=10485760 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+AggressiveOpts -XX:+DoEscapeAnalysis -XX:+DisableExplicitGC -XX:+PerfDisableSharedMem -Dzookeeper.forceSync=no\"" | ||
|
||
bookkeeper: | ||
replicaCount: 2 | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 0.3 | ||
configData: | ||
PULSAR_MEM: "\"-Xms512m -Xmx512m -XX:MaxDirectMemorySize=512m -Dio.netty.leakDetectionLevel=disabled -Dio.netty.recycler.linkCapacity=1024 -XX:+UseG1GC -XX:MaxGCPauseMillis=10 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+AggressiveOpts -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 -XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC -XX:-ResizePLAB -XX:+ExitOnOutOfMemoryError -XX:+PerfDisableSharedMem -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCApplicationStoppedTime -XX:+PrintHeapAtGC -verbosegc -XX:G1LogLevel=finest\"" | ||
|
||
broker: | ||
component: broker | ||
replicaCount: 1 | ||
resources: | ||
requests: | ||
memory: 1000Mi | ||
cpu: 0.3 | ||
configData: | ||
PULSAR_MEM: "\"-Xms512m -Xmx1000m -XX:MaxDirectMemorySize=1000m -Dio.netty.leakDetectionLevel=disabled -Dio.netty.recycler.linkCapacity=1024 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+AggressiveOpts -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 -XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC -XX:-ResizePLAB -XX:+ExitOnOutOfMemoryError -XX:+PerfDisableSharedMem\"" | ||
|
||
function: | ||
replicaCount: 1 | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 0.3 | ||
configData: | ||
PULSAR_MEM: "\"-Xms512m -Xmx512m -XX:MaxDirectMemorySize=512m -Dio.netty.leakDetectionLevel=disabled -Dio.netty.recycler.linkCapacity=1024 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+AggressiveOpts -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 -XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC -XX:-ResizePLAB -XX:+ExitOnOutOfMemoryError -XX:+PerfDisableSharedMem\"" | ||
|
||
proxy: | ||
replicaCount: 1 | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 0.3 | ||
wsResources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 0.3 | ||
configData: | ||
PULSAR_MEM: "\"-Xms512m -Xmx512m -XX:MaxDirectMemorySize=512m\"" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters