69 lines
1.9 KiB
Properties
69 lines
1.9 KiB
Properties
#====================Kafka KafkaConsumer====================#
|
||
#kafka source connection timeout
|
||
session.timeout.ms=60000
|
||
|
||
#kafka source poll
|
||
max.poll.records=5000
|
||
|
||
#kafka source poll bytes
|
||
max.partition.fetch.bytes=31457280
|
||
#====================Kafka KafkaProducer====================#
|
||
#producer重试的次数设置
|
||
retries=0
|
||
|
||
#他的含义就是说一个Batch被创建之后,最多过多久,不管这个Batch有没有写满,都必须发送出去了
|
||
linger.ms=10
|
||
|
||
#如果在超时之前未收到响应,客户端将在必要时重新发送请求
|
||
request.timeout.ms=30000
|
||
|
||
#producer都是按照batch进行发送的,批次大小,默认:16384
|
||
batch.size=262144
|
||
|
||
#Producer端用于缓存消息的缓冲区大小
|
||
#128M
|
||
buffer.memory=134217728
|
||
|
||
#这个参数决定了每次发送给Kafka服务器请求的最大大小
|
||
#default: 10485760 = 10M
|
||
max.request.size=10485760
|
||
#====================kafka default====================#
|
||
#kafka SASL/SSL username (encryption)
|
||
kafka.user=nsyGpHKGFA4KW0zro9MDdw==
|
||
|
||
#kafka SASL/SSL pin (encryption)
|
||
kafka.pin=6MleDyA3Z73HSaXiKsDJ2k7Ys8YWLhEJ
|
||
|
||
#producer ack
|
||
producer.ack=1
|
||
#====================nacos default====================#
|
||
#nacos username (encryption)
|
||
nacos.username=kANxu/Zi5rBnZVxa5zAjrQ==
|
||
|
||
#nacos pin (encryption)
|
||
nacos.pin=YPIBDIXjJUtVBjjk2op0Dg==
|
||
|
||
#nacos group
|
||
nacos.group=Galaxy
|
||
#====================Topology Default====================#
|
||
#hbase radius relation table name
|
||
hbase.radius.table.name=tsg_galaxy:relation_framedip_account
|
||
|
||
#hbase gtpc relation table name
|
||
hbase.gtpc.table.name=tsg_galaxy:relation_user_teid
|
||
|
||
#mail base64 use default charset
|
||
mail.default.charset=UTF-8
|
||
|
||
#0 no-operation parse JSON directly.
|
||
#1 Check fields type with schema,Do some type conversion.
|
||
log.transform.type=1
|
||
|
||
#Maximum time between two outputs(milliseconds)
|
||
buffer.timeout=5000
|
||
|
||
#The gtpc data scan max rows,0 = no limit.
|
||
hbase.gtpc.scan.max.rows=0
|
||
|
||
#The radius data scan max rows,0 = no limit.
|
||
hbase.radius.scan.max.rows=0 |