guru107
guru107

Reputation: 1143

Can we store entire fact table in Rocksdb store of Kafka Streams?

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

Answers (1)

Matthias J. Sax
Matthias J. Sax

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

Related Questions