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
A common use case with Avro is to serialize multiple objects to a single file, and to deserialize multiple objects from a single file. This is done using DataFileWriter and DataFileReader. The file contains a single schema for all objects.
Would it be possible to do this with jackson-dataformat-avro?
Regards,
Tom
The text was updated successfully, but these errors were encountered:
I haven't tested this, but in theory it should be supportable -- many other formats support multiple root-level objects, so from API perspective should be fine.
So just need to verify, and possible enhance.
One related note however: currently module only supports "raw" content, that is, no schema as pre-amble. There's another issue filed for that. Two features obviously should co-exist if so, so that only one schema instance should be within filed.
A common use case with Avro is to serialize multiple objects to a single file, and to deserialize multiple objects from a single file. This is done using DataFileWriter and DataFileReader. The file contains a single schema for all objects.
Would it be possible to do this with jackson-dataformat-avro?
Regards,
Tom
The text was updated successfully, but these errors were encountered: