How to Upload Large File to Tableau Server
Atlassian'due south file service
-
We recommend you to apply resumable file upload for files more 20GB or when you have unstable internet connection. If y'all need to use transfer.atlassian.com then compress and/or split very large files. Encounter how to compress a file and how to dissever a file for more than info.
-
For downloading files more than than 1GB we recommend using wget or CURL(should be > 7.7.i) with retries. See how to download a large file for more info.
-
You tin can transfer the file via your browser, or via thecommand lineusing the REST API. We recommend using your browser for the file no more than 1GB, otherwise use the command line.
-
This document assumes yous take an open support asking. See How to gain access for more than info on how to log in.
-
Files that were attached to a support issue will be removed in 60 days after resolving the support issue in accordance with Support File Retentiveness Policy.
To transfer a file via your browser:
- In your browser, go to transfer.atlassian.com. Follow the prompts to log in using your Atlassian account.
- Your open up support requests will be listed. ChooseAdd Attachments.
- Follow the prompts to upload your files.
- Once the transfer completes successfully, bank check that the file size listed matches the size of the local copy of the file.
- Repeat steps 2 & three for each file that needs to be uploaded.
- Your support.atlassian.com upshot will be updated each time a file has been uploaded. Once all your files accept been uploaded, add a comment to your back up ticket to let the support engineer know yous're done uploading files.
To transfer a file using via the command line:
- After logging in to transfer.atlassian.com, chooseAuth Tokens in the header to generate an authentication token.
-
Use the example CURL command generated past filling the auth token you generated and your file admission path to upload your file to this ticket as follows:
curl -u NWMzNzcwY:xyz123 -X POST --header "Transfer-Encoding: chunked" \ -F "files[]=@/var/atlassian/confluence/export/Confluence_support_2017-10-12-13-29-42.nada" \ -F "files[]=@/var/atlassian/confluence/consign/thread_dumps.zip" \ https://transfer.atlassian.com/api/upload/PS-12345 -v --progress-bar | tee /dev/nil
transfer.atlassian.com is bachelor for all of your open cases, so yous can use it at any fourth dimension
Resumable file upload
- Download repository.
- Open README and follow the instruction.
- In one case the transfer completes successfully, check that the file size listed matches the size of the local copy of the file.
How to download a large file
I f y'all need to download a big file (>1GB), you lot will need to use wget or CURL with retries . Copy your file download link fromtransfer.atlassian.com and use the script equally follows:
The following commandswill download a file via a HTTP request wget or CURL. You tin use any value of retries depending on your net connection. The optimal value is 250.
$ wget 'https://api.media.atlassian.com/file/0f5b9527-6d46-4d60-85d8-4f2bd164e666 \ /binary?token=token&client=89838f12-f13o-4b52-8f6c-fb55c95dfee6&drove=3547771&dl=true' \ -O filename --tries=250 $ curl 'https://api.media.atlassian.com/file/0f5b9527-6d46-4d60-85d8-4f2bd164e666 \ /binary?token=token&client=89838f12-f13o-4b52-8f6c-fb55c95dfee6&drove=3547771&dl=truthful' \ -o filename --retry 250 How to get access
If yous need to transfer a large file or files to Atlassian, yous will demand to first create a support request at back up.atlassian.com. One time you lot've created a asking, you'll be able to log in to transfer.atlassian.com and upload files against your support issue.
How to compress information
To minimize bandwidth usage, compress the file into a .Naught, .GZ, or .TAR.GZ file. (This volition also aid minimize the opportunity for your connection to drop-out in the middle of a big transfer!)
Linux
In Linux, the tar command works well for this purpose:
$ tar czf ~/jiradb.tar.gz ~/jiradb Windows or Mac
In Windows or Bone X, right clicking on a folder offers a compression mechanism.
How to split data into smaller pieces
Although transfer.atlassian.com has a file size limit 50GB, we recommend limiting files to 1GB in size. This minimizes the window of opportunity for the upload procedure to fail, and, (in case of a failed upload,) minimizes the time spent re-uploading the same information multiple times.
Linux or Mac
The split command will allow you to break up a file into multiple chunks of a specified size. In the case beneath, the compressed "jiradb" file is broken into multiple segments <= 1GB in size:
$ split up -b 1073741824 ~/jiradb.tar.gz jiradb.tar.gz_ $ ls -fifty | grep jira -rw-r--r-- 1 user staff 1073741824 Mar 27 12:03 jiradb.tar.gz_aa -rw-r--r-- 1 user staff 1073741824 Mar 27 12:03 jiradb.tar.gz_ab -rw-r--r-- 1 user staff 412536832 Mar 27 12:03 jiradb.tar.gz_ac The "-b" argument specifies the maximum file size of each segment in bytes. (1073741824 bytes = 1GB) ~/jiradb.tar.gz is the input filename, and jiradb.tar.gz_ is the output filename. By default, the split command appends a two letter of the alphabet code to the end of the specified output filename to indicate the lodge of the segments. In this case, specifying the "jiradb.tar.gz_" filename resulted in the post-obit sequential segments: jiradb.tar.gz_aa, jiradb.tar.gz_ab, and jiradb.tar.gz_ac. All three of these files volition need to be uploaded to transfer.atlassian.com.
Exist sure to review your operating arrangement's documentation to exist certain yous apply this tool correctly.
To merge/join the files, you may explore the example below:
$ cat jiradb.tar.gz_* > jiradb.tar.gz $ tar -cvvzf jiradb.tar.gz .
Windows
Use HJ-Divide's separate function.
Source: https://confluence.atlassian.com/support/how-to-transfer-large-files-to-atlassian-282171489.html
Post a Comment for "How to Upload Large File to Tableau Server"