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
Problem description
Investigate using apache.avro.fastread feature added in 1.9.2 version, which can improve Java reading performance, it is disabled by default, but can be enabled by a system property.
When apache.avro.fastread set to true, records will be deserialized using a different technique that builds an efficient deserialization strategy once from the expected schema.
These experiments have passed unit tests and code review, but are a significant change that haven't appeared in a major release.
Since they provide significant performance improvements, we encourage you to give them a try and report on any regressions you may find.
The text was updated successfully, but these errors were encountered:
Problem description
Investigate using
apache.avro.fastread
feature added in 1.9.2 version, which can improve Java reading performance, it is disabled by default, but can be enabled by a system property.When
apache.avro.fastread
set to true, records will be deserialized using a different technique that builds an efficient deserialization strategy once from the expected schema.See https://issues.apache.org/jira/browse/AVRO-2247 "Improve Java reading performance with a new reader"
and related PR apache/avro#391
Problem location
Suggestions for an improvement
From https://cwiki.apache.org/confluence/display/AVRO/Experimental+features+in+Avro
The text was updated successfully, but these errors were encountered: