Iya.
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) berhenti mencoba terhubung setelah 2 menit, terlepas dari waktu yang ditentukan dengan --connect-timeout
dan meskipun nilai batas waktu koneksi default tampaknya menjadi 5 menit sesuai dengan DEFAULT_CONNECT_TIMEOUT
makro di lib / connect.h .
Nilai default untuk --max-time
sepertinya tidak ada, membuat curl
menunggu selamanya untuk respons jika koneksi awal berhasil.
Apa yang harus digunakan?
Anda mungkin tertarik pada opsi yang terakhir --max-time
,. Untuk kasus Anda atur ke 900
(15 menit).
Menentukan opsi --connect-timeout
untuk sesuatu seperti 60
(satu menit) mungkin juga merupakan ide bagus. Kalau tidak, curl
akan mencoba untuk terhubung lagi dan lagi, tampaknya menggunakan beberapa algoritma backoff.