Sejauh ini saya benar-benar tidak dapat menemukan apa pun, tetapi apakah benar curl
tidak benar-benar waktu habis sama sekali?
[email protected]:~# curl http://localhost/testdir/image.jpg
Saya bertanya karena saya mengarahkan permintaan gambar apa pun di testdir
ke modul Apache terpisah yang menghasilkan gambar-gambar itu dengan cepat. Diperlukan waktu hingga 15 menit sebelum gambar benar-benar siap dan dikirimkan ke klien yang meminta.
Akan curl
selalu menunggu (atau tergantung konfigurasi) atau apakah ada batas waktu?
Jawaban yang Diterima:
Ya.
Parameter batas waktu
curl
memiliki dua opsi:--connect-timeout
dan --max-time
.
Mengutip dari halaman manual:
--connect-timeout <seconds>
Maximum time in seconds that you allow the connection to the
server to take. This only limits the connection phase, once
curl has connected this option is of no more use. Since 7.32.0,
this option accepts decimal values, but the actual timeout will
decrease in accuracy as the specified timeout increases in deci‐
mal precision. See also the -m, --max-time option.
If this option is used several times, the last one will be used.
dan:
-m, --max-time <seconds>
Maximum time in seconds that you allow the whole operation to
take. This is useful for preventing your batch jobs from hang‐
ing for hours due to slow networks or links going down. Since
7.32.0, this option accepts decimal values, but the actual time‐
out will decrease in accuracy as the specified timeout increases
in decimal precision. See also the --connect-timeout option.
If this option is used several times, the last one will be used.
Default
Di sini (di Debian) ia berhenti mencoba terhubung setelah 2 menit, terlepas dari waktu yang ditentukan dengan --connect-timeout
dan meskipun nilai batas waktu koneksi default tampaknya 5 menit sesuai dengan DEFAULT_CONNECT_TIMEOUT
makro di lib/connect.h.
Nilai default untuk --max-time
sepertinya tidak ada, membuat curl
tunggu selamanya untuk tanggapan jika koneksi awal berhasil.
Apa yang harus digunakan?
Anda mungkin tertarik dengan opsi terakhir, --max-time
. Untuk kasus Anda, setel ke 900
(15 menit).
Menentukan opsi --connect-timeout
untuk sesuatu seperti 60
(satu menit) mungkin juga merupakan ide yang bagus. Jika tidak, curl
akan mencoba menyambung lagi dan lagi, tampaknya menggunakan beberapa algoritme backoff.