Re: Free spots available for 6 week Apache Kafka course

2022-03-07 Thread David Luu
Sorry my bad, didn't notice replies go back to the group. On Mon, Mar 7, 2022, 9:25 AM David Luu wrote: > Hi Justin, > > I am interested in the course. > > Regards, > David > > On Mon, Mar 7, 2022, 7:11 AM Justin Mclean wrote: > >> >> Hi, >> >

Re: Free spots available for 6 week Apache Kafka course

2022-03-07 Thread David Luu
Hi Justin, I am interested in the course. Regards, David On Mon, Mar 7, 2022, 7:11 AM Justin Mclean wrote: > > Hi, > > I’m from OpenSI, a not for profit open source foundation. We have a > limited number of free spots for a 6 week online Apache Kafka course > starting on the 22nd of March. It

Consumer ID requirements and usage clarification

2018-12-06 Thread David Luu
Can someone clarify the usage and requirements of consumer ID when used/specified? I came across this topic and brought that up in a comment in the thread, someone else suggested it being worthy of another post

Re: My Docker Kafka image

2017-11-27 Thread David Luu
Does this have a github source repo for the docker image/file setup? or just only available for the final docker image in docker repo? On Sun, Nov 26, 2017 at 11:53 AM, Christian F. Gonzalez Di Antonio < christian...@gmail.com> wrote: > I would like to share my @apachekafka

Re: Kafka on windows

2017-04-11 Thread David Luu
; Thank you in advance for any information. > > With Regards > Tomasz Rojek > Java Engineer > > > -- David Luu Member of Technical Staff Mist Systems, Inc. 1601 S. De Anza Blvd. #248 Cupertino, CA 95014

Re: Not able to create a windows service to consume from kafka topic

2016-11-03 Thread David Luu
What happens when run it as windows service? And you save/dump the consumed data somewhere other than console (for windows service)? On Thu, Nov 3, 2016 at 1:11 AM, Birendra Kumar Singh wrote: > Hi > > I need help in creating a windows service to consume from kafka topic.

java.lang.ClassNotFoundException: example.producer.SimplePartitioner? For kafka 0.8.2

2016-05-17 Thread David Luu
Hello, This is my first time trying kafka in Java. I was following this tutorial: https://cwiki.apache.org/confluence/display/KAFKA/0.8.0+Producer+Example for the sample code & maven dependencies. I tweaked the code a little for my needs and run the code in a Thread-based class with the main

Get messages between offsets? Or determine # of messages between offsets?

2016-02-01 Thread David Luu
What's the best way to consume messages from a starting offset to an ending offset? It seems the low level consumer (API), kafka-simple-consumer-shell.sh, and kafkacat offer an option to consume from a starting offset, but there's no option to tell it to stop consuming after a given offset. One

Possible to easily translate a high level consumer consumption process to simple consumer when consuming by offset is needed?

2015-11-19 Thread David Luu
Scenario: A kafka + zookeeper setup with topics that span partitions. Obviously high level consumer is desirable here. But let's say we have a need to consume by offset, and we don't want the earliest offset as that has extra messages we'd have to filter out, and from latest offset doesn't have

Testing kafka (stream/bus) based systems by contract or pact?

2015-11-10 Thread David Luu
For microservices, there seems to be suggestions to test by contract and pact, for pact like this: https://github.com/realestate-com-au/pact but these generally seem to be targeted to REST, and the implementations are limited to few languages so far. I was wondering if anyone has adapted those

Kafka topic message consumer fetch response time checking

2015-10-19 Thread David Luu
If one wanted to check response time for a consumer fetching a topic message (on the client side), similar to checking an HTTP request's response time for the web, what's the best approach to take? I notice the kafka shell scripts if used for that have some startup overhead if used to assess

kafka consumer shell scripts (and kafkacat) with respect to JSON pretty printing

2015-10-16 Thread David Luu
I was wondering, do the kafka consumer shell scripts (high and low level ones) and kafkacat do any pre-processing of the topic messages before outputting to stdout or does it just output "as is" in the format the message originally came in through kafka from the producer? Meaning pretty printed

Consume messages from offset A to B with the kafka shell scripts, etc.? And get total messages given starting and ending offset?

2015-10-12 Thread David Luu
Hi, Similar to consuming max messages N (or count of messages N in kafkacat), is there any way/option to consume starting from offset A up to ending offset B (we know only offsets but not the total # of messages between those offsets) It looks like that's not available natively? And I guess one

Re: Suggestions on load testing a system that uses kafka as underlying message bus?

2015-09-20 Thread David Luu
* Alerting * Anomaly Detection * Centralized Log Management > Solr & Elasticsearch Support * http://sematext.com/ > > > On Sun, Sep 20, 2015 at 1:14 AM, David Luu <manga...@gmail.com> wrote: > > > I'd like to generate load against a system we have that uses kafka

Suggestions on load testing a system that uses kafka as underlying message bus?

2015-09-19 Thread David Luu
I'd like to generate load against a system we have that uses kafka as the message bus. We have a custom JSON message format, and to properly load test the system, each set of messages for a particular scenario (i.e. user) needs to have a unique identifier, which it normally does. I think of using

Re: open source projects based on kafka

2015-09-13 Thread David Luu
The toy project idea is good. Another option I think could be to look at the various Kafka client langague bindings and/or utilities (like kafkacat). And from there, another option is to build a client language binding for a language that's kind of lacking Kafka support, some have better support

Re: My emails don't seem to go through

2015-08-21 Thread David Luu
I got your email from the list? On Fri, Aug 21, 2015 at 1:56 PM, Rajiv Kurian ra...@signalfuse.com wrote: Wondering why my emails to the mailing list don't go through. -- David Luu Member of Technical Staff Mist Systems, Inc. 1601 S. De Anza Blvd. #248 Cupertino, CA 95014

Any tool to easily fetch a single message or a few messages starting from a given offset then exit after fetching said count of messages?

2015-07-24 Thread David Luu
Hi, I notice the kafka-console-consumer.sh script has option to fetch a max # of messages, which can be 1 or more, and then exit. Which is nice. But as a high level consumer, it's missing option to fetch from given offset other than earliest latest offsets. Is there any off the shelf tool (CLI,