Forked from jolshan/gist:94a6335312ed7af35d77da3abbc6f13b
Created
November 30, 2019 08:23
-
-
Save confluentgist/5cc32f336179d2b37dfafcabfc220f7e to your computer and use it in GitHub Desktop.
Example Task Spec for Sticky Partitioner
This file contains hidden or 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
“task”: { | |
“type”: “.TaskRole, | |
“initialDelayMs”: 20000, | |
“taskSpecs”: { | |
"bench0": { | |
"class": "org.apache.kafka.trogdor.workload.ProduceBenchSpec", | |
"startMs": 0, | |
"durationMs": 720000, | |
"producerNode": "node0", | |
"bootstrapServers": "%{bootstrapServers}", | |
"targetMessagesPerSec": 10000, | |
"maxMessages": 100000000000000000 | |
"producerConf": { | |
"acks": "all" | |
"linger.ms" : 0 | |
}, | |
"activeTopics": { | |
"active[1-4]": { | |
"numPartitions": 16, | |
"replicationFactor": 3 | |
} | |
}, | |
"inactiveTopics": { | |
"inactive1": { | |
"numPartitions": 16, | |
"replicationFactor": 3 | |
} | |
}, | |
"keyGenerator": {“type”: null}, | |
"useConfiguredPartitioner": true, | |
“skipFlush”: true | |
}, | |
"bench1": { | |
"class": "org.apache.kafka.trogdor.workload.ProduceBenchSpec", | |
"startMs": 0, | |
"durationMs": 720000, | |
"producerNode": "node1", | |
"bootstrapServers": "%{bootstrapServers}", | |
"targetMessagesPerSec": 10000, | |
"maxMessages": 100000000000000000 | |
"producerConf": { | |
"acks": "all" | |
"linger.ms" : 0 | |
}, | |
"activeTopics": { | |
"active[1-4]": { | |
"numPartitions": 16, | |
"replicationFactor": 3 | |
} | |
}, | |
"inactiveTopics": { | |
"inactive1": { | |
"numPartitions": 16, | |
"replicationFactor": 3 | |
} | |
}, | |
"keyGenerator": {“type”: null}, | |
"useConfiguredPartitioner": true, | |
“skipFlush”: true | |
}, | |
"bench2": { | |
"class": "org.apache.kafka.trogdor.workload.ProduceBenchSpec", | |
"startMs": 0, | |
"durationMs": 720000, | |
"producerNode": "node2", | |
"bootstrapServers": "%{bootstrapServers}", | |
"targetMessagesPerSec": 10000, | |
"maxMessages": 100000000000000000 | |
"producerConf": { | |
"acks": "all" | |
"linger.ms" : 0 | |
}, | |
"activeTopics": { | |
"active[1-4]": { | |
"numPartitions": 16, | |
"replicationFactor": 3 | |
} | |
}, | |
"inactiveTopics": { | |
"inactive1": { | |
"numPartitions": 16, | |
"replicationFactor": 3 | |
} | |
}, | |
"keyGenerator": {“type”: null}, | |
"useConfiguredPartitioner": true, | |
“skipFlush”: true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment