Re: Kafka dotnet SDK suggestion

2015-10-09 Thread Mike Bridge
Another .Net option is to use the Confluent Rest Proxy and this: https://github.com/josephjeganathan/Confluent.RestClient -Mike On Wed, Oct 7, 2015 at 9:51 AM, sugumar analysis wrote: > Hi All, > > We are developing Messaging system with Kafka using DotNet (C#). > > We found there are 2 differe

Re: Trying to access Kafka behind NAT, java.io.BrokenPipe error

2015-07-07 Thread Mike Bridge
the > external IP...so it seems like there isn't a straight-forward solution. > > I guess I will see if I can produce my messages behind the NAT while I try > to get an external IP. > > Thanks! > > -Su > > On Tue, Jul 7, 2015 at 3:13 PM, M

Re: Trying to access Kafka behind NAT, java.io.BrokenPipe error

2015-07-07 Thread Mike Bridge
can zookeeper access the broker through the public IP? advertised.host.name is also what zookeeper uses to communicate to the broker, but if zookeeper is inside the NAT it might not have a route via that external IP. On Jul 7, 2015 2:10 PM, "Su She" wrote: > Hello Everyone, > > I am in a tricky

Re: QuickStart OK locally, but getting "WARN Property topic is not valid" and LeaderNotAvailableException remotely

2015-06-19 Thread Mike Bridge
#x27;s external NAT address will route back locally to itself. That seems to work. Thanks, -Mike On Wed, Jun 17, 2015 at 9:36 AM, Mike Bridge wrote: > I set this up on EC2 in exactly the same way and had the same errors when > accessing it with a producer that was outside EC2. Is the

Re: QuickStart OK locally, but getting "WARN Property topic is not valid" and LeaderNotAvailableException remotely

2015-06-17 Thread Mike Bridge
I set this up on EC2 in exactly the same way and had the same errors when accessing it with a producer that was outside EC2. Is there something else I have to configure other than to set "advertised.host.name" to my external IP address? On Tue, Jun 16, 2015 at 4:27 PM, Mike Bri

Re: Keeping Zookeeper and Kafka Server Up

2015-06-16 Thread Mike Bridge
Have you tried using "nohup" nohup bin/zookeeper-server-start.sh config/zookeeper.properties & nohup bin/kafka-server-start.sh config/server.properties & On Tue, Jun 16, 2015 at 3:21 PM, Su She wrote: > Hello Everyone, > > I'm wondering how to keep Zookeeper and Kafka Server up even wh

Re: QuickStart OK locally, but getting "WARN Property topic is not valid" and LeaderNotAvailableException remotely

2015-06-16 Thread Mike Bridge
Running this seems to indicate that there is a leader at 0: $ ./bin/kafka-topics.sh --zookeeper MY.EXTERNAL.IP:2181 --describe --topic test123 --> Topic:test123 PartitionCount:1 ReplicationFactor:1 Configs: Topic: test123 Partition: 0 Leader: 0 Replicas: 0 Isr: 0 I reran this test and my

QuickStart OK locally, but getting "WARN Property topic is not valid" and LeaderNotAvailableException remotely

2015-06-16 Thread Mike Bridge
I am able to get a simple one-node Kafka (kafka_2.11-0.8.2.1) working locally on one linux machine, but when I try to run a producer remotely I'm getting some confusing errors. I'm following the quickstart guide at http://kafka.apache.org/documentation.html#quickstart. I stopped the kafka process