StarRocks任务消费华为Roma平台kafka消息

需求:StarRocks任务消费华为Roma平台kafka消息;
问题:华为Roma平台开启了ssl认证,对外提供的证书是jks格式。
利用apache-kafka2.3.0连接时consumer.properties配置如下

bootstrap.servers=100.100.255.160:9098

consumer group id

group.id=test-consumer-group

What to do when there is no initial offset in Kafka or if the current

offset does not exist any more on the server: latest, earliest, none

#auto.offset.reset=
sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required username=“b4e2c8e2-45a2-4860-b0e3-a2a578698dd8” password="=.yJ1.=Q%.$1lh6=%kx7/.+9SKbbTgM+.a15$WY53.84jAf3Pd$u/Jm1/V30p7nC";
sasl.mechanism=PLAIN
security.protocol=SASL_SSL
ssl.truststore.location=/home/wch/client.truststore.jks
ssl.truststore.password=dms@kafka
ssl.endpoint.identification.algorithm=

希望能支持jks证书认证方式。