Hey all!
Wondering about best practices with Java:
I know Flink serializes and deserializes state fairly often (using RocksDBStateBackend)
Is there any benefit to implement Serializable on my State object?
And also, any benefit to implement Serializable in my DTO's used in my processes?
Thanks!