Ivan Yurchenko
Ivan Yurchenko
# What happened? Karapace uses this order for the key fields in Kafka records: `subject`, `version`, `magic`, `keytype`. In Confluent SR, it's: `keytype`, `subject`, `version`, `magic` ([code](https://github.com/confluentinc/schema-registry/blob/52305272e4ef994bd61222b05382bfbb10091b39/core/src/main/java/io/confluent/kafka/schemaregistry/storage/SchemaKey.java#L26)). This difference is...
__WHY__: Potentially related to #21. The library can't work with Boolean fields in DynamoDB. __WHAT__: - Support for Boolean fields and arrays of Booleans added. - Test `ItemConverterSpec` extended to...
After upgrade to `google-cloud-nio:0.123.24` (and associated `google-cloud-storage:2.4.5`), `GcsSinkTaskGroupByTopicPartitionPropertiesTest.limited` started running very long time. It used to be a couple of minutes, but is unknown (I wan't patient enough to wait...
Currently, PostgreSQL dialect have no support for arrays. This will be a useful feature to have.
Some databases (like Postgresql) support inserting multiple rows with one `INSERT`. This should be supported by the connector. A good solution was proposed by https://github.com/aiven/aiven-kafka-connect-jdbc/pull/39 for the Redshift dialect. We...