public class StreamsConfig extends AbstractConfig
Modifier and Type | Class and Description |
---|---|
static class |
StreamsConfig.InternalConfig |
Constructor and Description |
---|
StreamsConfig(Map<?,?> props) |
Modifier and Type | Method and Description |
---|---|
static String |
consumerPrefix(String consumerProp)
Prefix a property with
CONSUMER_PREFIX . |
Map<String,Object> |
getConsumerConfigs(StreamThread streamThread,
String groupId,
String clientId)
Get the configs specific to the Consumer.
|
Map<String,Object> |
getProducerConfigs(String clientId)
Get the configs for the Producer.
|
Map<String,Object> |
getRestoreConsumerConfigs(String clientId)
Get the consumer config for the restore-consumer.
|
Serde |
keySerde() |
static void |
main(String[] args) |
static String |
producerPrefix(String producerProp)
Prefix a property with
PRODUCER_PREFIX . |
Serde |
valueSerde() |
equals, get, getBoolean, getClass, getConfiguredInstance, getConfiguredInstances, getDouble, getInt, getList, getLong, getPassword, getShort, getString, hashCode, ignore, logUnused, originals, originalsStrings, originalsWithPrefix, unused, values
public static final String CONSUMER_PREFIX
public static final String PRODUCER_PREFIX
public static final String STATE_DIR_CONFIG
state.dir
public static final String ZOOKEEPER_CONNECT_CONFIG
zookeeper.connect
public static final String COMMIT_INTERVAL_MS_CONFIG
commit.interval.ms
public static final String POLL_MS_CONFIG
poll.ms
public static final String NUM_STREAM_THREADS_CONFIG
num.stream.threads
public static final String NUM_STANDBY_REPLICAS_CONFIG
num.standby.replicas
public static final String BUFFERED_RECORDS_PER_PARTITION_CONFIG
buffered.records.per.partition
public static final String STATE_CLEANUP_DELAY_MS_CONFIG
state.cleanup.delay
public static final String TIMESTAMP_EXTRACTOR_CLASS_CONFIG
timestamp.extractor
public static final String PARTITION_GROUPER_CLASS_CONFIG
partition.grouper
public static final String APPLICATION_ID_CONFIG
application.id
public static final String APPLICATION_ID_DOC
public static final String REPLICATION_FACTOR_CONFIG
replication.factor
public static final String REPLICATION_FACTOR_DOC
public static final String KEY_SERDE_CLASS_CONFIG
key.serde
public static final String KEY_SERDE_CLASS_DOC
public static final String VALUE_SERDE_CLASS_CONFIG
value.serde
public static final String VALUE_SERDE_CLASS_DOC
public static final String APPLICATION_SERVER_CONFIG
user.endpoint
public static final String APPLICATION_SERVER_DOC
public static final String METRICS_SAMPLE_WINDOW_MS_CONFIG
metrics.sample.window.ms
public static final String METRICS_NUM_SAMPLES_CONFIG
metrics.num.samples
public static final String METRIC_REPORTER_CLASSES_CONFIG
metric.reporters
public static final String BOOTSTRAP_SERVERS_CONFIG
bootstrap.servers
public static final String CLIENT_ID_CONFIG
client.id
public static final String ROCKSDB_CONFIG_SETTER_CLASS_CONFIG
rocksdb.config.setter
public static final String ROCKSDB_CONFIG_SETTER_CLASS_DOC
public static final String WINDOW_STORE_CHANGE_LOG_ADDITIONAL_RETENTION_MS_CONFIG
windowstore.changelog.additional.retention.ms
public static final String WINDOW_STORE_CHANGE_LOG_ADDITIONAL_RETENTION_MS_DOC
public static final String CACHE_MAX_BYTES_BUFFERING_CONFIG
cache.max.bytes.buffering
public static final String CACHE_MAX_BYTES_BUFFERING_DOC
public StreamsConfig(Map<?,?> props)
public static String consumerPrefix(String consumerProp)
CONSUMER_PREFIX
. This is used to isolate consumer configs
from producer configsconsumerProp
- public static String producerPrefix(String producerProp)
PRODUCER_PREFIX
. This is used to isolate producer configs
from consumer configsproducerProp
- public Map<String,Object> getConsumerConfigs(StreamThread streamThread, String groupId, String clientId) throws ConfigException
CONSUMER_PREFIX
will be used in favor over their non-prefixed versions except in the case of ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG
where we always use the non-prefixed version as we only support reading/writing from/to the same Kafka ClusterstreamThread
- the StreamThread
creating a consumergroupId
- consumer groupIdclientId
- clientIdConfigException
public Map<String,Object> getRestoreConsumerConfigs(String clientId) throws ConfigException
CONSUMER_PREFIX
will be used in favor over their non-prefixed versions except in the case of ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG
where we always use the non-prefixed version as we only support reading/writing from/to the same Kafka ClusterclientId
- clientIdConfigException
public Map<String,Object> getProducerConfigs(String clientId)
PRODUCER_PREFIX
will be used in favor over their non-prefixed versions except in the case of ProducerConfig.BOOTSTRAP_SERVERS_CONFIG
where we always use the non-prefixed version as we only support reading/writing from/to the same Kafka ClusterclientId
- clientIdConfigException
public Serde keySerde()
public Serde valueSerde()
public static void main(String[] args)