Skip to content

Commit

Permalink
change punctuation, disable default rocksdb override (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishan Sairam Adapa authored Oct 6, 2023
1 parent c96aaad commit 8e6c9f2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion raw-spans-grouper/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ rawSpansGrouperConfig:
producerBufferMemory: 134217728 # default = 33554432
# Consumer configs
consumerMaxPartitionFetchBytes: 8388608 # default = 1048576
consumerMaxPollRecords: 1000 # default = 1000 (kafka streams default)
consumerMaxPollRecords: 10000 # default = 1000 (kafka streams default)
consumerSessionTimeoutMs: 300000 # default = 10000
# Changelog topic configs
replicationFactor: 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,7 @@ private void schedulePunctuator(TraceIdentity key) {
dataflowSamplingPercent);
Cancellable cancellable =
context.schedule(
Duration.ofMillis(groupingWindowTimeoutMs),
PunctuationType.WALL_CLOCK_TIME,
punctuator);
Duration.ofMillis(groupingWindowTimeoutMs), PunctuationType.STREAM_TIME, punctuator);
punctuator.setCancellable(cancellable);
logger.debug(
"Scheduled a punctuator to emit trace for key=[{}] to run after [{}] ms",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ kafka.streams.config = {
schema.registry.url = "http://localhost:8081"
schema.registry.url = ${?SCHEMA_REGISTRY_URL}

rocksdb.config.setter = org.hypertrace.core.kafkastreams.framework.rocksdb.RocksDBStateStoreConfigSetter
rocksdb.block.cache.size = 33554432
rocksdb.write.buffer.size = 8388608
rocksdb.max.write.buffers = 2
Expand Down

0 comments on commit 8e6c9f2

Please sign in to comment.