Re: Apache Kafka Topic Design

2016-01-19 Thread Jens Rantil
Hi again Joe, I would suggest keeping things simple and using a single topic and a single partition with replication in the beginning if possible. You can split your topic up into multiple topics later if needed. You can split up your topic into more partitions later if needed. If you need

Re: Apache Kafka Topic Design

2016-01-19 Thread Joe San
Hi Jens, Thanks for your suggestion. So here is a bit more text: I have a List of signals for a specific device: Map[DeviceId, List[Signal]], where Signal is case class Signal(name: String, value: String) Now I will write a producer to connect to the device and read these signals at constant