We are using Google BigQuery and uploading data from local csv file using C# SDK. Can we use Resumable Upload functionality using C# SDK?
Asked
Active
Viewed 124 times
0
-
See following : https://stackoverflow.com/questions/41779788/how-to-continue-or-resume-ftp-upload-after-interruption-of-internet – jdweng Jun 06 '20 at 12:59
-
@jdweng We want to use resumable upload in BigQuery similar to GCS resumable upload using c# SDK. This is the link for resumable upload: https://cloud.google.com/bigquery/docs/loading-data-local#resumable – user3934763 Jun 08 '20 at 10:14
-
You can use the command line. See : https://cloud.google.com/bigquery/docs/quickstarts/quickstart-command-line – jdweng Jun 08 '20 at 10:18
-
Are you searching for a solution inside the C# client? – rmesteves Jun 08 '20 at 15:33
-
@rmesteves I want to implement solution using c# – user3934763 Jun 09 '20 at 05:29
-
After reviewing these documentations I understand that this is not possible. Maybe you can try using the API directly. Is it a possibility for you? (https://googleapis.github.io/google-cloud-dotnet/docs/Google.Cloud.BigQuery.V2/api/Google.Cloud.BigQuery.V2.BigQueryJob.html) (https://googleapis.github.io/google-cloud-dotnet/docs/Google.Cloud.BigQuery.V2/api/Google.Cloud.BigQuery.V2.UploadCsvOptions.html) – rmesteves Jun 09 '20 at 14:45