Chris Richardson

Results 142 comments of Chris Richardson

https://github.com/eventuate-tram/eventuate-tram-sagas/commit/0bfe1df0090e87e2fbc6aa3fbef1ca125bb595ca reflects changes made by https://github.com/eventuate-tram/eventuate-tram-core/commit/66d8bb73f9c0292ac05196d0f4e77fef6daf1c95

NoopDuplicateMessageDetector should not be the default - it's too dangerous.

Possible solutions: * Create the `KafkaConsumer` once * Turn off info level logging for `o.a.k.c.consumer.ConsumerConfig` - valuable for regular Kafka clients though.

Builds on https://github.com/eventuate-tram/eventuate-tram-core/issues/179

# Design overview See [NestedSagaTest](https://github.com/eventuate-tram/eventuate-tram-sagas/blob/master/eventuate-tram-sagas-orchestration-simple-dsl/src/test/java/io/eventuate/tram/sagas/simpledsl/nested/NestedSagaTest.java) and other classes in that package. There are two sagas: * `OuterSaga` - the saga, which has a participant that invokes `InnerSaga` * `InnerSaga` -...

A couple of points. First, when we added support for Micronaut we refactored Eventuate into * Core functionality * Framework (Spring/Micronaut) specific modules - e.g. component assembly This should make...

@ra002890 @languitar I'm excited to hear that you are interested in contributing to the Quarkus implementation. We don't have any specific documentation on what to do unfortunately. The simplest advice...

I'm away from a computer but most likely the value inserted into saga_data_json is too long and you need to increase the size of the column.

See https://github.com/eventuate-tram/eventuate-tram-sagas/blob/0a8ea3814948701023d8a6a3617714d9eedf7066/postgres/tram-saga-schema.sql#L22 The database schema is your responsibility. You will need to setup the tables for Eventuate along with the rest of the tables. You can copy/paste and perhaps adapt...

BTW There are other column types: e.g. `TEXT`. See https://github.com/eventuate-foundation/eventuate-common/blob/a691ea45909ff74f9c19d527402c0859931752ce/postgres/2.initialize-database.sql#L8 There is also the possibility of using JSON type too - https://github.com/eventuate-foundation/eventuate-common/blob/a691ea45909ff74f9c19d527402c0859931752ce/postgres-json/4.initialize-database.sql#L5 However, that work is in a development branch...