Good luck to the Confluent guys! There's a missing piece in the realtime puzzle, at least one that I haven't been able to find, for which Kafka is an overkill - perhaps someone here knows of a solution: I have tens of system endpoints connected through unreliable (Line-of-sometimes-occluded-sight, 2G and 3G WWAN, some are in vehicles so connections are intermittent). I just want to consistently tail their logs in a b…
Confluent, a company for Apache Kafka and realtime data
21–30 of 31 posts
Re: Confluent, a company for Apache Kafka and realtime data
#22Good luck to the Confluent guys! There's a missing piece in the realtime puzzle, at least one that I haven't been able to find, for which Kafka is an overkill - perhaps someone here knows of a solution: I have tens of system endpoints connected through unreliable (Line-of-sometimes-occluded-sight, 2G and 3G WWAN, some are in vehicles so connections are intermittent). I just want to consistently tail their logs in a b…
autossh + ssh -C + tail -F ? kafka sounds like an enormous overkill. If you want to store the logs locally while tailing, just add in a tee.
But it my case, I have "30 minutes on, 5 minutes off, 90 minutes on, 90 minutes off, 2 minutes on" kind of situations, in which anything that doesn't track what was already transferred and what wasn't, will lose data. (zeromq's buffers also have limited capacity and/or are tied to a process on the other side - if it restarts, buffers are gone).
Re: Confluent, a company for Apache Kafka and realtime data
#23Re: Confluent, a company for Apache Kafka and realtime data
#24Good luck to the Confluent guys! There's a missing piece in the realtime puzzle, at least one that I haven't been able to find, for which Kafka is an overkill - perhaps someone here knows of a solution: I have tens of system endpoints connected through unreliable (Line-of-sometimes-occluded-sight, 2G and 3G WWAN, some are in vehicles so connections are intermittent). I just want to consistently tail their logs in a b…
If you don't mind using a 3rd party service, you could look into using Papertrail, Loggly, etc.
Re: Confluent, a company for Apache Kafka and realtime data
#25Good luck to the Confluent guys! There's a missing piece in the realtime puzzle, at least one that I haven't been able to find, for which Kafka is an overkill - perhaps someone here knows of a solution: I have tens of system endpoints connected through unreliable (Line-of-sometimes-occluded-sight, 2G and 3G WWAN, some are in vehicles so connections are intermittent). I just want to consistently tail their logs in a b…
Can your endpoints log to syslog so they can be forwarded on to a central collector?
Re: Confluent, a company for Apache Kafka and realtime data
#26Good luck to the Confluent guys! There's a missing piece in the realtime puzzle, at least one that I haven't been able to find, for which Kafka is an overkill - perhaps someone here knows of a solution: I have tens of system endpoints connected through unreliable (Line-of-sometimes-occluded-sight, 2G and 3G WWAN, some are in vehicles so connections are intermittent). I just want to consistently tail their logs in a b…
Sounds like a job for logstash: http://logstash.net If you don't mind using a 3rd party service, you could look into using Papertrail, Loggly, etc.
Re: Confluent, a company for Apache Kafka and realtime data
#27I'm a bit confused. The more i read the doc, the more i feel it look Just Another Queue system. I don't really see the difference between Kafka and let's say RabbitMQ, Celery or also statsd...
http://www.quora.com/RabbitMQ-vs-Kafka-which-one-for-durable...
Re: Confluent, a company for Apache Kafka and realtime data
#28Earlier quoted context omitted.
Can your endpoints log to syslog so they can be forwarded on to a central collector?
Probably. Do you know of a syslog/forwarder that deals properly with intermittent connections? (i.e., available for an hour, then gone for an hour, then available again, etc.)
Re: Confluent, a company for Apache Kafka and realtime data
#29Good luck to the Confluent guys! There's a missing piece in the realtime puzzle, at least one that I haven't been able to find, for which Kafka is an overkill - perhaps someone here knows of a solution: I have tens of system endpoints connected through unreliable (Line-of-sometimes-occluded-sight, 2G and 3G WWAN, some are in vehicles so connections are intermittent). I just want to consistently tail their logs in a b…
How about a tiny forwarder on each device. It fopens the file and reads to the end, when the file is appended to it will be able to continue reading. Packet up each line and forward to you server using zeromq PUSH/PULL. If you are disconnected they queue up and send when zeromq automagically reconnects.
Re: Confluent, a company for Apache Kafka and realtime data
#30Earlier quoted context omitted.
Can your endpoints log to syslog so they can be forwarded on to a central collector?
Probably. Do you know of a syslog/forwarder that deals properly with intermittent connections? (i.e., available for an hour, then gone for an hour, then available again, etc.)