You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but under 1.11.0 this can cause deadlocks over access to classcache. upstream avro might have fixed this in https://issues.apache.org/jira/browse/AVRO-3243 but we should move to unique MODEL$s if possible.
this would mean a helper method to create a new SpecificData if possibe given avro runtime version
The text was updated successfully, but these errors were encountered:
we currently generate
MODEL$ = SpecificData.get();
while vanilla (modern) avro generates
MODEL$ = new SpecificData();
but under 1.11.0 this can cause deadlocks over access to classcache. upstream avro might have fixed this in https://issues.apache.org/jira/browse/AVRO-3243 but we should move to unique MODEL$s if possible.
this would mean a helper method to create a new SpecificData if possibe given avro runtime version
The text was updated successfully, but these errors were encountered: