cdc分发器在表有主键的情况下,如何选择分发器

1、如果上游表是一个,下游topic配置只有一个,是一 一对应关系呢,只是表的变更比较频繁,使用ts还是index-value
配置文件
case-sensitive = true
enable-old-value = true
[filter]
ignore-txn-start-ts = [1, 2]
rules = [‘test1.tt’]
[mounter]
worker-num = 16
[sink]
dispatchers = [
{matcher = [‘test1.tt’], topic = “Topic 表达式 1”, partition = “ts” },
]
protocol = “canal-json”

2、 “partition 是多个,还是单个会影响到 数据次序”怎么理解,能举个例子嘛。
3、在表和topic是一 一对应的前提下,我能理解 partition 是 ts这种会保证数据次序,index-values 有更大的吞吐和处理能力嘛。
4、