Ewen Cheslack-Postava

Results 90 comments of Ewen Cheslack-Postava

For reference, the list of paths is the same as [used by SDL](https://github.com/libsdl-org/SDL/blob/release-2.0.20/src/video/cocoa/SDL_cocoavulkan.m#L40). This makes development on macos using the home-brew molten-vk package simpler since with this update the dylib...

I'd actually recommend [Kafka Connect](http://docs.confluent.io/current/connect/index.html) and the [Elasticsearch connector](http://docs.confluent.io/current/connect/connect-elasticsearch/docs/elasticsearch_connector.html). They provide better delivery guarantees and simpler scalability than logstash.

The Debezium version solves the problem using the same basic architecture -- a logical decoding plugin allows access to the commit log. Debezium is based on Kafka Connect so it...

@alexanderdean This project originated in Confluent but has never been officially supported. @samstokes has been the primary maintainer for awhile, he can speak to the level of support he's providing....

@ept Kafka Connect does have some logical types for this already [Date](http://docs.confluent.io/2.0.0/connect/javadocs/org/apache/kafka/connect/data/Date.html), [Time](http://docs.confluent.io/2.0.0/connect/javadocs/org/apache/kafka/connect/data/Time.html), and [Timestamp](http://docs.confluent.io/2.0.0/connect/javadocs/org/apache/kafka/connect/data/Timestamp.html). Note that Kafka Connect's Timestamp is sans timezone and the underlying representation is just Unix...

@ept Agreed on keeping them to a minimum. Every one we add to Kafka Connect is yet another type that every connector either has to handle or, by not handling...

I believe anything that gets raw data from logical decoding requires an extra plugin since the only output plugin that ships with Postgres is simple test plugin. This is why...

@Kenji-H No, that's resolved as a duplicate because it was accidentally re-registered. Doing this in the framework is definitely the right choice -- there's really no reason it shouldn't be...

Do you have any logs or anything? It'll be hard to debug without any more information.