Hi
Some newbie questions based on incremental query modes
- Can you specify different modes for different tables, or is the same mode applied to all tables.
- Where are the offset tracking values maintained. Are these exposed in a file anywhere
Thanks
Jag
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/18889caa-b16f-48a3-97d0-4dbc222e928f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
As polling for inserted, updated data would not find deleted data.
Thanks for the clarification.
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/c3a02b34-c4aa-49d4-aada-36efdc3cea93%40googlegroups.com.
Deleted data is always an issue for ETL.Two recommendations:1. Don't actually delete data. At least not immediately. Add a column marking the record as "deleted" and only really delete it few days later. Aside from the use of Kafka-Connect, this also helps in case someone accidentally deletes something and then regrets it (getting the data from backups is a pain). Then the fact that a record was deleted will show up in Kafka and you can decide how to handle it (this is really use-case dependent)2. If you happen to use MySQL, there is a work-in-progress connector that tails the binlog, so it will include all DML including deletes: https://github.com/wushujames/kafka-mysql-connectorGwen
On Tue, Dec 22, 2015 at 11:35 PM, Jag Thind <jag...@gmail.com> wrote:
Do you have any recommendations for dealing with deleted data?
As polling for inserted, updated data would not find deleted data.
Thanks for the clarification.
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platform+unsub...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/a2e79ef5-ed35-44e1-b7de-340ef41dbd5a%40googlegroups.com.
As far as I know, Confluent didn't do any research comparing these technologies (Ewen will correct me if I'm wrong, he's been here longer).Maxwell has the KafkaConnect integration (https://github.com/wushujames/kafka-mysql-connector), so this fits a bit better into our framework and best practices. But as long as your data ends up in Kafka in a format that works for your use-case, its all good :)Gwen
On Sun, Jan 3, 2016 at 9:53 PM, Andrew Stevenson <astev...@outlook.com> wrote:
Gwen,Is Confluent favouring Maxwell over MyPipe? MyPipe integrates with AvroThanksAndrew
On Tuesday, 22 December 2015 12:19:40 UTC+1, Jag Thind wrote:Hi
Some newbie questions based on incremental query modes
- Can you specify different modes for different tables, or is the same mode applied to all tables.
- Where are the offset tracking values maintained. Are these exposed in a file anywhere
Thanks
Jag
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platform+unsub...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
Hi, I'm the author of the Kafka Connect integration for Maxwell (https://github.com/wushujames/kafka-mysql-connector).If you use Kafka Connect, you can configure it to write to Kafka in the format you want. For an example, see the "value.converter" property in https://github.com/wushujames/kafka-mysql-connector/blob/master/copycat-standalone.properties. Kafka Connect (from trunk) ships with a JsonConverter, but you can write your own to encode things to avro if you want.This is conceptually similar to how the stock Kafka producer allows you to plug in your own serializer.I can't speak for Confluent but, just as they provided an "avro serializer for the stock Kafka producer" that uses their Confluent Platform, I would expect them to provide a "kafka connect serializer" that would use their platform to allow Kafka Connect to use avro.-James
On Sunday, January 3, 2016 at 9:59:08 PM UTC-8, Gwen Shapira wrote:
As far as I know, Confluent didn't do any research comparing these technologies (Ewen will correct me if I'm wrong, he's been here longer).Maxwell has the KafkaConnect integration (https://github.com/wushujames/kafka-mysql-connector), so this fits a bit better into our framework and best practices. But as long as your data ends up in Kafka in a format that works for your use-case, its all good :)Gwen
On Sun, Jan 3, 2016 at 9:53 PM, Andrew Stevenson <astev...@outlook.com> wrote:
Gwen,Is Confluent favouring Maxwell over MyPipe? MyPipe integrates with AvroThanksAndrew
On Tuesday, 22 December 2015 12:19:40 UTC+1, Jag Thind wrote:Hi
Some newbie questions based on incremental query modes
- Can you specify different modes for different tables, or is the same mode applied to all tables.
- Where are the offset tracking values maintained. Are these exposed in a file anywhere
Thanks
Jag
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/a2e79ef5-ed35-44e1-b7de-340ef41dbd5a%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Confluent Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to confluent-platf...@googlegroups.com.
To post to this group, send email to confluent...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/confluent-platform/10febe91-417f-47f8-8372-0cd4fd3e7d68%40googlegroups.com.