kind: KafkaConnect
metadata:
name: protheus-connect
annotations:
spec:
replicas: 1
bootstrapServers: my-cluster-kafka-plain-bootstrap:9092
config:
config.storage.topic: protheus-connect-configs
offset.storage.topic: protheus-connect-offset
status.storage.topic: protheus-connect-status
key.converter: org.apache.kafka.connect.json.JsonConverter
value.converter: org.apache.kafka.connect.json.JsonConverter
key.converter.schemas.enable: false
value.converter.schemas.enable: false
num.partitions: 3
offset.storage.replication.factor: 3
producer.acks: 1
producer.batch.size: 862144
producer.buffer.memory: 104857600
producer.compression.type: lz4
producer.max.request.size: 5242880
status.storage.replication.factor: 3
image: ecr/debezium_oracle_protheus:latest
resources:
limits:
memory: 4Gi
requests:
cpu: "1.0"
memory: 4Gi
jvmOptions:
-Xms: 2560m
-Xmx: 2560m
metricsConfig:
type: jmxPrometheusExporter
valueFrom:
configMapKeyRef:
key: metrics-config-protheus.yml
name: connect-metrics-protheus
However, I can not get my table. The process register a different table:
[protheus-connector|task-0] Registering 'dbname.<random_schema_b>.<random_table>'
Both schema and table does exist in my DB, but I do not want them.
I've tried to set only my schema.include.list to schema_a, but it does not work.
Also, I've tried to set table.include.list to another table from schema_b to check if it could be a schema misconfiguring. Again, it start the register of all the schema_b and get an error.
Usually the error is: can not read properties of table <wrong_schema>.<wrong_table>.
help pls I don't know what could I do :((((