[ https://issues.apache.org/jira/browse/ARROW-5019?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Rok Mihevc updated ARROW-5019: ------------------------------ External issue URL: https://github.com/apache/arrow/issues/21517 > [C#] ArrowStreamWriter doesn't work on a non-seekable stream > ------------------------------------------------------------ > > Key: ARROW-5019 > URL: https://issues.apache.org/jira/browse/ARROW-5019 > Project: Apache Arrow > Issue Type: Bug > Components: C# > Reporter: Eric Erhardt > Assignee: Eric Erhardt > Priority: Major > Labels: pull-request-available > Fix For: 0.14.0 > > Original Estimate: 48h > Time Spent: 26.5h > Remaining Estimate: 21.5h > > When writing to a non-seekable .NET Stream (like a network/socket stream), > ArrowStreamWriter will throw an exception: > > {code:java} > Exception thrown: 'System.NotSupportedException' in System.Net.Sockets.dll > This stream does not support seek operations. > {code} > The reason this throws is because we are using `BastStream.Position` in the > writer to calculate the length of bytes that we've written to the stream. We > don't need to use the Position in order to calculate the lengths. We should > be able to write an Arrow RecordBatch to a NetworkStream directly. Today, we > need to write to a MemoryStream, and then copy the MemoryStream to the > NetworkStream. > -- This message was sent by Atlassian Jira (v8.20.10#820010)