Questions tagged [large-file-upload]
97 questions
1
vote
0 answers
libCURL Multipart POST with a large file
I need to upload a large file (>2 GB) using multipart POST request. Source file can be named using unicode symbols. The problem is that libcurl does not support unicode wfopen in windows, so I am not able to complete this task in usual way…

Bronson
- 11
- 4
0
votes
1 answer
Import large data in WordPress and show it in form of tables in the frontend
I have around 10 million rows of data, that I am trying to upload in WordPress to show it on a paginated table using Ninja Tables. I have 10 CSV files containing 1 million rows each. Each file is around ~300 MB.
I tried to increase the…

Varun
- 31
- 3
0
votes
0 answers
ASP.NEt Uploading large files from the server to the front and downloading it
i made a controller that calls the service, and ate to write 1 MB to the server
Controller
[HttpGet("Download")]
public async Task DownloadFile()
{
await _dataTransfer.DownloadFile(ControllerContext);
}
Service
public async…

hans fridrech
- 27
- 7
0
votes
1 answer
How to upload large file using Blazor to WebAPI (C#) and store it into Azure Blob storage
I need to upload a large file(up 4GB) using Blazor.
Please in your answers using the new version of Azure Storage SDK (v12 Azure.Storage.Blobs NuGet package.)
In my case, the old version will not work Azure Storage SDK (v11 WindowsAzure.Storage…

Hamlet Poghosyan
- 21
- 5
0
votes
1 answer
Uploading large excel files to Big Query
how can i upload a large excel file and dataset (larger than 10 mb) to big query ?
Can anyone help ?
I tried to research a way to do it, but everything i found was a little bit complicated.
I just started working with SQL and I don't have much…
0
votes
0 answers
tus-js-client doesn't upload file larger than 100Mb for Android
tus-js-client doesn't upload file larger than 100Mb for Android. I've got next error - "Failed to upload because: Error: tus: cannot fetch file.uri as Blob, make sure the uri is correct and accessible. [object Object]"
I get video file data by…

Alexey
- 1
0
votes
1 answer
Ajax request is getting cancelled
In a php application. I am uploading 20-30 files at once. Each files is around 100-200MB. Means more than 2GB of data i am uploading on server.
Because it takes time around 20-30 mins to upload. One general ajax pooling job getting cancelled after…

Rohit Raj Verma
- 138
- 10
0
votes
1 answer
Upload a large TTL file to virtuoso using jena in spring boot java
I am trying to send a large file(1GB) to virtuoso local server using jena and its taking a lot of time according to my current implementation
VirtGraph graph = new VirtGraph("graphName", "jdbc:virtuoso://localhost:1111", "dba", "dba");
final String…

Naman Sharma
- 45
- 6
0
votes
1 answer
In AWS, writing larger content to a file PutFile rest API is not working
In AWS, what is the file size limit adding from command line ?
I am trying to fetch the schema ddl using dbms_metadata.fetch and trying to add to a file into AWS using PutFile Rest API of AWS.…

Sharvani
- 11
- 1
0
votes
1 answer
How to upload bigger files (200mb+) to blob storage using react and node js (server side)? without saving file on server
Earlier we were using aws multipart upload. so approach was simple and straightforward. i have to call three apis from my react frontend.multipart upload/chunk url/complete upload.
found this great tutorial on youtube.
I want to upload a large file…

Bhavin Verma
- 45
- 6
0
votes
1 answer
How to upload a large file to Sharepoint drive with VB.Net using Microsoft Graph API?
I'm trying to upload a large file (> 4 MB) to a Sharepoint drive using VB.Net and the Microsoft Graph API. For testing purposes I aim for the root of the drive. Later on I will specify a subfolder.
This is the code I use:
Public Shared Async…

Stefan De Schepper
- 11
- 2
0
votes
0 answers
Asp.Net Core streaming large file through DMZ API endpoint to internal facing API without buffering
I'm looking for suggestions on how to perform non-buffered large file (gigabyte+) uploads from an externally facing Angular app to an externally facing Asp. Net 5.0 Web API endpoint and then on to an internal facing Asp. Net Web API endpoint. I have…

KyleLib
- 774
- 3
- 9
- 26
0
votes
1 answer
uploading 5gb file from web browser to Blob Storage
I am in bit of a situation. I have a stubborn client who wants to upload about ~5gb csv file from a web browser. End goal for the file is to reach a SQL Server but I decided that I will first put that in blob and then have a process to read it from…
0
votes
1 answer
How to stream a very large file to Dropbox using python v2 api
Background
I finally convinced someone willing to share his full archival node 5868GiB database for free (which now requires to be built in ram and thus requires 100000$ worth of ram in order to be built but can be run on an ssd once done).
However…

user2284570
- 2,891
- 3
- 26
- 74
0
votes
1 answer
Getting OutOfMemory Exception while converting tif file into base64 encoding
We have created console application in C#, where will read multi-page tif/tiff files, splitting pagewise and then convert into base64 encoding to upload the file in other target application (as this accepts only base64 encoding to upload the…

Sheik
- 11
- 2