Thanks for using Striim! Can you share your TQL file to see how your MySQL reader and KafkaWriter are configured? Please be sure to block out and remove any sensitive fields.

Hey!
Yes, here it is:
CREATE OR REPLACE APPLICATION mysql_kafka_csr USE EXCEPTIONSTORE TTL : '7d' ;
CREATE FLOW mysql_kafka_csr_SourceFlow;
CREATE OR REPLACE SOURCE mysql_kafka_csr_MysqlCDC USING Global.MysqlReader (
Password: 'MY_PASSWORD',
Compression: false,
Password_encrypted: 'true',
CDDLAction: 'Process',
Username: 'MY_USER',
CDDLCapture: true,
ConnectionURL: 'jdbc:mysql://MY_HOST:3306',
Tables: '"shop"."users"',
StartTimestamp: 'NOW',
adapterName: 'MysqlReader',
connectionRetryPolicy: 'retryInterval=30, maxRetries=3',
FilterTransactionBoundaries: true,
SendBeforeImage: true )
OUTPUT TO mysql_kafka_csr_OutputStream;
END FLOW mysql_kafka_csr_SourceFlow;
CREATE OR REPLACE TARGET Kafka_2_1_0_mysql_kafka_csr_Target USING Global.KafkaWriter VERSION '0.11.0'(
KafkaConfigValueSeparator: '=',
MessageKey: '',
adapterName: 'KafkaWriter',
MessageHeader: '',
KafkaConfigPropertySeparator: ';',
Mode: 'Sync',
Topic: 'shop.users',
brokerAddress: 'MY_HOST:9092',
KafkaConfig: 'request.timeout.ms=60001;session.timeout.ms=60000' )
FORMAT USING Global.AvroFormatter (
formatAs: 'Table',
schemaregistryurl: 'http://MY_HOST:8081',
handler: 'com.webaction.proc.AvroFormatter',
formatterName: 'AvroFormatter',
schemaregistryConfiguration: '' )
INPUT FROM mysql_kafka_csr_OutputStream;
END APPLICATION mysql_kafka_csr;
As a test if I use a table that does not use `bigint` it works as expected.