据我了解,RocksDB数据会在堆中存储在RocksDB实例或磁盘中,直到在Flink的RocksDBState类中反序列化数据为止。是否可以有一个大于当前Java堆大小/非堆大小的列表状态?通过查看RocksDBListState.java中的代码,似乎它试图立即反序列化整个列表。
答案 0 :(得分:0)
如果您调用ListState.add(Object in),则只会反序列化当前输入的Object,而不会反序列化ListState中的所有元素
public void add(V value) {
Preconditions.checkNotNull(value, "You cannot add null to a ListState.");
try {
this.writeCurrentKeyWithGroupAndNamespace();
byte[] key = this.dataOutputView.getCopyOfBuffer();
this.dataOutputView.clear();
this.elementSerializer.serialize(value, this.dataOutputView);
this.backend.db.merge(this.columnFamily, this.writeOptions, key, this.dataOutputView.getCopyOfBuffer());
} catch (Exception var3) {
throw new FlinkRuntimeException("Error while adding data to RocksDB", var3);
}
}