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
I have some clues that this library does not support empty avro files (without body).
This causes problems when handling empty files captured from Event Hubs.
public byte[] DecodeFixed(int size)
{
if (size <= 0)
{
throw new ArgumentOutOfRangeException("size");
}
var array = new byte[size];
this.ReadAllRequiredBytes(array);
return array;
}
The text was updated successfully, but these errors were encountered:
I'd like to second this as a real and urgent issue. As of now, it makes the event hub capture ---> data lake analytics use case very difficult. It doesn't make sense for such a vital use case to be hampered by an edge case.
It also doesn't help that we can't override the necessary methods on the decoder since it's internal and sealed.
Please address this issue.
Also: thank you for all your hard work on this library.
I have some clues that this library does not support empty avro files (without body).
This causes problems when handling empty files captured from Event Hubs.
The text was updated successfully, but these errors were encountered: