Gerald Quintana

Results 42 comments of Gerald Quintana

A good alternative to both `object` and `nested` types is the new `flattened` type which is mostly designed for this kind of use: representing tags and labels. https://www.elastic.co/guide/en/elasticsearch/reference/current/flattened.html It's the...

I wanted to do same test the behaviour when a broker is down. I tried to do: ``` sharedKafkaTestResource.getKafkaBrokers().getBrokerById(1).stop(); ``` And then ``` sharedKafkaTestResource.getKafkaBrokers().getBrokerById(1).start(); ``` But the `stop()` method seems...

My issue is probably different from @vincentfree . I am roughly doing the same as this unit test: https://github.com/salesforce/kafka-junit/blob/7d4d70a533cf0c95e2828338179e3524bfa03c6a/kafka-junit-core/src/test/java/com/salesforce/kafka/test/KafkaTestServerTest.java#L317 I'll have to investigate where the difference lies.

I agree, this would make state file less verbose. And it would be closer to what kafka-acl tool can do in a single run. But it would make plan computation...

Kafka allows déclare ACL rules on users which are not declared.

As I deleted everything on my dev cluster on my first attempt with kafka-gitops, I would prefer to inverse the flag and get an `--allow-delete` flag. For safety reasons, to...

I'll try to answer your questions: * _Would the ProducerSupplier.get method interface contract expected to block until the producer is initialized completely?_ The lazy implementation can block on first call...

@danielwegener I tried to implement the contract you described. The AsynchronousDeliveryStrategy became LateAsyncDeliveryStrategy. I am not sure I like this last commit 5f0fac0 . Tell me if you wish I...