Re: How to put external data in EmbeddedRocksDB

2022-01-31 Thread Fabian Paul
Hi Surendra, I do not think there is an out-of-the-box way to do look-ups to the local rocksdb instance. In general, I am a bit skeptical about whether it is a good idea to use the rocksdb instance for your state management, and the looks up in parallel. It may overload the rocksdb and cause unexp

How to put external data in EmbeddedRocksDB

2022-01-28 Thread Surendra Lalwani
Hi Team, I am working on a solution where we need to perform some lookup from flink job, earlier we were using Redis and calling that redis using UDF from Flink Job but now we are planning to remove external dependency from Flink of Redis and want to use the embedded rocks db as look up store, doe