Geert Pante

Results 7 comments of Geert Pante

@peacecwz see https://github.com/peacecwz/kafka-connect-transform-common/pull/1

@sabareeshmurthy What did you use in your jslt file? The built-in parse-time function currently uses Java SimpleDateFormat, not the newer JSR-310 DateTimeFormatter. See [BuiltinFunctions.java](https://github.com/schibsted/jslt/blob/2c1d6ac0f54720b37d15df79b491ee7cef9b3767/core/src/main/java/com/schibsted/spt/data/jslt/impl/BuiltinFunctions.java#L1229) I'm considering creating a PR to...

> Difference between SimpleDateFormat and DateTimeFormatter > > SimpleDateFormat and DateTimeFormatter are two different classes in Java that serve a similar purpose of formatting and parsing dates and times. However,...

@jpassing the second option is actually even better. That way we don't even have to remember the ports, they are in the .iapc file.

We want to use this for SNS, too, so we need SQS subscribers to leave the message alone, until all subscribers have had the chance to read the message.

You could use the approach described in http://stackoverflow.com/questions/18375506/how-to-use-dependencies-in-json-schema-draft-04: ``` javascript { "type": "object", "required": [ "results" ], "properties": { "results": { "type": "array", "oneOf": [ { "$ref": "#/definitions/person" }, {...