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
.ToTextFileValue extension method fails when result output is bigger than 2GBs. We worked around with .Chunk() and then .Do(), but due to this lost elegancy of using file definition.
Is there a more elegant way to resolve this? As for ETL processes it is important to have possibility extract big data files.
The text was updated successfully, but these errors were encountered:
For this specific issue, your workaround is a decent way to do.
What I would actually do is to inject a StreamWritter in the process, and use the ResolveAndDo to get this StreamWritter and write the issued line.
.ToTextFileValue extension method fails when result output is bigger than 2GBs. We worked around with .Chunk() and then .Do(), but due to this lost elegancy of using file definition.
Is there a more elegant way to resolve this? As for ETL processes it is important to have possibility extract big data files.
The text was updated successfully, but these errors were encountered: