Reputation: 1143
Since rocksdb is a persistent store. Is it a good practice to store entire fact table in rocksdb so that kafka streams can access it directly.
Upvotes: 0
Views: 85
Reputation: 62310
As always, it depends, but basically yes, you can do this. Kafka Streams uses RocksDB because it uses local disk and thus the state that the streaming application can handle is not limited to main-memory.
Upvotes: 1