I upload files to Azure Data Lake Store using following function:
DataLakeStoreFileSystemManagementClient.FileSystem.UploadFile(store, filePath, key, overwrite: true);
It gives me the following error for files ONLY larger than ~4MBs:
"Found a record that exceeds the maximum allowed record length around offset 4194304"
Microsoft.Azure.Management.DataLake.Store.TransferFailedException:
at Microsoft.Azure.Management.DataLake.Store.FileSystemOperations.UploadFile (Microsoft.Azure.Management.DataLake.Store, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35)
Could anyone provide any insights if this is a setting somewhere in Azure Data Lake or something I can adjust on the client end?
Thanks!
I've googled the error and the only thing that is returned is Java code samples.