Caroline McKee
09/06/2023, 3:48 PMclear()
on a ValueStateDescriptor
in pyflink, does the state get set to None
? Or is it something else? What about for a ListStateDescriptor
?David Anderson
09/06/2023, 9:19 PMclear
a ValueState object, the state for the current key is completely removed -- nothing is left behind. If you try to subsequently get its value, that will return null (the same as if the state for that key had never existed at all). The same is true for ListState.