Hi All, I want to do stateful streaming and I was wondering how Custom objects get mapped into rocksdb?
say I have the following class that represents my state
public class MyState {
private HashMap<String, T> map1 ; // T can be any type
private HashMap<Integer, S> map2; // S can be any type
}
I wonder how these two maps gets mapped into rocksdb? and how does Flink
know that map1 and map2 together are part of my state but not
individual ones in isolation?
Thanks!
