How many entries did you load? IgniteDataStreamer buffers the data and most likely it just wait for buffers to fill up. You can try setting the time interval after which buffers will be flushed even if they are not full:
stmr.autoFlushFrequency(1000); // Set to 1 sec. This way all your data will be eventually propagated into the cache. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Need-help-with-Ignite-KafkaStreamer-tp5186p5323.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
