Hello, The documentation for broadcast state specifies that it is always kept in memory. My assumptions based on this statement are:
1. If a job restarts in the same Flink cluster (i.e. using a restart strategy), the tasks' attempt number increases and the broadcast state is restored since it's not lost from memory. 2. If the whole Flink cluster is restarted with a savepoint, broadcast state will not be restored and I need to write my application with this in mind. Are these correct? Regards, Alexis.