> > Hi, I'm trying to remove a field which is required in the old schema (which is by default)
long field1;
and want to remove the field in the updated schema I made it optional and
nullable
union {null, long} field1 = null;
Now the new schema can read the objects from the old schema (Backward
compatible) but not the other way round (Forward compatible).
What is the best strategy to have both?
Thanks
Kishore
