I've added a couple of methods to a case class and updated the job on Dataflow and started getting
java.lang.IllegalStateException: Unable to decode tag list using org.apache.beam.sdk.coders.SerializableCoder@4ad81832 Caused by java.io.InvalidClassException: my.package.MessageWithAttributes; local class incompatible: stream classdesc serialVersionUID = -5160195612720162441, local class serialVersionUID = -9104690746829156208 It seems that, although the data contained in the class has not changed, the class has changed it cannot deserialise it anymore. How should I proceed to avoid this situations? Thanks!
