curl 当文件大小超过7GB时,无法从Jfrog Artifactory中提取Tar文件

eoxn13cs  于 2023-03-03  发布在  其他
关注(0)|答案(1)|浏览(221)

我们已经尝试使用JFrog CLI和curl命令,但无法提取tar文件,它在5- 6 GB左右失败,以下是错误。
使用Jfrog CLI

$ jf rt dl /tarFile /mnt/sdc.tar --server-id=1 --retries=6 --quiet --flat --threads=1

[Warn] [Thread 0] [2]: (Attempt 7) - Failure occurred while downloading part 2 of https://artifactUrl/artifactory/tarFile: open /tmp/jfrog.cli.temp.-1668500133-936929090/2_3393945811: no space left on device
[Info] [Thread 0] [2]:  executor timeout after 6 attempts with 0 milliseconds wait intervals
[Error] [Thread 0]  Received an error: open /tmp/jfrog.cli.temp.-1668500133-936929090/0_261788985: no space left on device
[Error] open /tmp/jfrog.cli.temp.-1668500133-936929090/0_261788985: no space left on device
[Error] open /tmp/jfrog.cli.temp.-1668500133-936929090/0_261788985: no space left on device

使用curl

$ curl -H "X-JFrog-Art-Api:ApiKey" https://artifactUrl/artifactory/tarFile -O /mnt/downloads/
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
13 7468M   13  974M    0     0  9861k      0  0:12:55  0:01:41  0:11:14 6639k
curl: (23) Failed writing body (1227 != 1400)
curl: (3) <url> malformed

我们正在尝试提取Tar文件,但无法提取。

q3qa4bjr

q3qa4bjr1#

以下消息

[Error] open /tmp/jfrog.cli.temp.-1668500133-936929090/0_261788985: no space left on device

表示没有空间让Artifactory实体化并将其提供给用户/客户端。请确保有足够的空间让Artifactory下载它。
您可以使用df -h等存储命令进行验证

相关问题