|
|
-
nginx module feeding into kafka
Alan D. Cabrera 2012-07-14, 14:58
I'd like to write an nginx module that feeds into kafka. How should I go about this? Regards, Alan
-
Re: nginx module feeding into kafka
Joel Koshy 2012-07-16, 20:30
Alan, Assuming this is for sending tracking events to a Kafka cluster. You may want to take a look at the C++ client as a reference: https://svn.apache.org/repos/asf/incubator/kafka/trunk/clients/cpp/Thanks, Joel On Sat, Jul 14, 2012 at 7:58 AM, Alan D. Cabrera <[EMAIL PROTECTED]>wrote: > I'd like to write an nginx module that feeds into kafka. How should I go > about this? > > > Regards, > Alan > >
-
Re: nginx module feeding into kafka
Alan D. Cabrera 2012-09-09, 13:36
Perfect! Thanks! Regards, Alan On Jul 16, 2012, at 1:30 PM, Joel Koshy wrote: > Alan, > > Assuming this is for sending tracking events to a Kafka cluster. You may > want to take a look at the C++ client as a reference: > https://svn.apache.org/repos/asf/incubator/kafka/trunk/clients/cpp/> > Thanks, > > Joel > > On Sat, Jul 14, 2012 at 7:58 AM, Alan D. Cabrera <[EMAIL PROTECTED]>wrote: > >> I'd like to write an nginx module that feeds into kafka. How should I go >> about this? >> >> >> Regards, >> Alan >> >>
-
Re: nginx module feeding into kafka
Magnus Edenhill 2012-09-09, 14:48
Hi Alan, you're looking for a C implementation of Kafka, right? Then have a look at librd, it's got Kafka support: https://github.com/edenhill/librdExample usage: https://github.com/edenhill/librd/blob/master/examples/rdkafka_example.cHope it fits your needs, in other case, let me know. Regards, Magnus 2012/9/9 Alan D. Cabrera <[EMAIL PROTECTED]> > Perfect! Thanks! > > > Regards, > Alan > > On Jul 16, 2012, at 1:30 PM, Joel Koshy wrote: > > > Alan, > > > > Assuming this is for sending tracking events to a Kafka cluster. You may > > want to take a look at the C++ client as a reference: > > https://svn.apache.org/repos/asf/incubator/kafka/trunk/clients/cpp/> > > > Thanks, > > > > Joel > > > > On Sat, Jul 14, 2012 at 7:58 AM, Alan D. Cabrera <[EMAIL PROTECTED] > >wrote: > > > >> I'd like to write an nginx module that feeds into kafka. How should I > go > >> about this? > >> > >> > >> Regards, > >> Alan > >> > >> > >
-
Re: nginx module feeding into kafka
Alan D. Cabrera 2012-09-09, 18:04
Looks interesting. I'll take a look at it. Thanks! Regards, Alan On Sep 9, 2012, at 7:48 AM, Magnus Edenhill wrote: > Hi Alan, > > you're looking for a C implementation of Kafka, right? > Then have a look at librd, it's got Kafka support: > https://github.com/edenhill/librd> > Example usage: > https://github.com/edenhill/librd/blob/master/examples/rdkafka_example.c> > Hope it fits your needs, in other case, let me know. > > Regards, > Magnus > > > 2012/9/9 Alan D. Cabrera <[EMAIL PROTECTED]> > >> Perfect! Thanks! >> >> >> Regards, >> Alan >> >> On Jul 16, 2012, at 1:30 PM, Joel Koshy wrote: >> >>> Alan, >>> >>> Assuming this is for sending tracking events to a Kafka cluster. You may >>> want to take a look at the C++ client as a reference: >>> https://svn.apache.org/repos/asf/incubator/kafka/trunk/clients/cpp/>>> >>> Thanks, >>> >>> Joel >>> >>> On Sat, Jul 14, 2012 at 7:58 AM, Alan D. Cabrera <[EMAIL PROTECTED] >>> wrote: >>> >>>> I'd like to write an nginx module that feeds into kafka. How should I >> go >>>> about this? >>>> >>>> >>>> Regards, >>>> Alan >>>> >>>> >> >>
-
Re: nginx module feeding into kafka
wm 2012-09-09, 18:48
encoding is not serialization. neither of the referenced c/c++ support libs provide hooks for serialization hooks for deserialization OOOPs. Someone's going to consume this? serialization techniques are difficult to choose from, but current research shows their benefits ..... w On 09/09/2012 02:04 PM, Alan D. Cabrera wrote: > Looks interesting. I'll take a look at it. Thanks! > > > Regards, > Alan > > On Sep 9, 2012, at 7:48 AM, Magnus Edenhill wrote: > >> Hi Alan, >> >> you're looking for a C implementation of Kafka, right? >> Then have a look at librd, it's got Kafka support: >> https://github.com/edenhill/librd>> >> Example usage: >> https://github.com/edenhill/librd/blob/master/examples/rdkafka_example.c>> >> Hope it fits your needs, in other case, let me know. >> >> Regards, >> Magnus >> >> >> 2012/9/9 Alan D. Cabrera <[EMAIL PROTECTED]> >> >>> Perfect! Thanks! >>> >>> >>> Regards, >>> Alan >>> >>> On Jul 16, 2012, at 1:30 PM, Joel Koshy wrote: >>> >>>> Alan, >>>> >>>> Assuming this is for sending tracking events to a Kafka cluster. You may >>>> want to take a look at the C++ client as a reference: >>>> https://svn.apache.org/repos/asf/incubator/kafka/trunk/clients/cpp/>>>> >>>> Thanks, >>>> >>>> Joel >>>> >>>> On Sat, Jul 14, 2012 at 7:58 AM, Alan D. Cabrera <[EMAIL PROTECTED] >>>> wrote: >>>> >>>>> I'd like to write an nginx module that feeds into kafka. How should I >>> go >>>>> about this? >>>>> >>>>> >>>>> Regards, >>>>> Alan >>>>> >>>>> >>>
-
Re: nginx module feeding into kafka
wm 2012-09-10, 01:15
My apologies for missing the consumer support in librd. Is the Kafka protocol for ( zeroMQ? ) available in spec form? On 09/09/2012 02:48 PM, wm wrote: > encoding is not serialization. neither of the referenced c/c++ support > libs provide > > hooks for serialization > hooks for deserialization > OOOPs. Someone's going to consume this? > > serialization techniques are difficult to choose from, but current > research shows their benefits ..... > > w > > > On 09/09/2012 02:04 PM, Alan D. Cabrera wrote: >> Looks interesting. I'll take a look at it. Thanks! >> >> >> Regards, >> Alan >> >> On Sep 9, 2012, at 7:48 AM, Magnus Edenhill wrote: >> >>> Hi Alan, >>> >>> you're looking for a C implementation of Kafka, right? >>> Then have a look at librd, it's got Kafka support: >>> https://github.com/edenhill/librd>>> >>> Example usage: >>> https://github.com/edenhill/librd/blob/master/examples/rdkafka_example.c>>> >>> Hope it fits your needs, in other case, let me know. >>> >>> Regards, >>> Magnus >>> >>> >>> 2012/9/9 Alan D. Cabrera<[EMAIL PROTECTED]> >>> >>>> Perfect! Thanks! >>>> >>>> >>>> Regards, >>>> Alan >>>> >>>> On Jul 16, 2012, at 1:30 PM, Joel Koshy wrote: >>>> >>>>> Alan, >>>>> >>>>> Assuming this is for sending tracking events to a Kafka cluster. You may >>>>> want to take a look at the C++ client as a reference: >>>>> https://svn.apache.org/repos/asf/incubator/kafka/trunk/clients/cpp/>>>>> >>>>> Thanks, >>>>> >>>>> Joel >>>>> >>>>> On Sat, Jul 14, 2012 at 7:58 AM, Alan D. Cabrera <[EMAIL PROTECTED] >>>>> wrote: >>>>> >>>>>> I'd like to write an nginx module that feeds into kafka. How should I >>>> go >>>>>> about this? >>>>>> >>>>>> >>>>>> Regards, >>>>>> Alan >>>>>> >>>>>> >
|
|