क्या कर्ल में टाइमआउट है?


250

अब तक मुझे वास्तव में कुछ भी नहीं मिला, लेकिन क्या यह सच है कि वास्तव में बिल्कुल भी curlसमय नहीं है?

 user@host:~# curl http://localhost/testdir/image.jpg

मैं पूछ रहा हूं क्योंकि मैं छवियों के लिए किसी भी अनुरोध testdirको अलग अपाचे मॉड्यूल में पुनर्निर्देशित कर रहा हूं जो मक्खी पर उन चित्रों को उत्पन्न करता है। चित्र को वास्तव में तैयार होने और अनुरोध करने वाले ग्राहक तक पहुंचाने में 15 मिनट तक का समय लग सकता है।

curlहमेशा इंतजार करेंगे (या यह कॉन्फ़िगरेशन पर निर्भर करता है) या किसी भी तरह का टाइमआउट है?


3
मैं एक कनेक्शन टाइमआउट (यदि कुछ और नहीं, ओएस और इसके टीसीपी / आईपी स्टैक लगभग निश्चित रूप से करता है) के लिए कर्ल की उम्मीद करूंगा , लेकिन कनेक्शन स्थापित होने के बाद इसमें रीड टाइमआउट नहीं हो सकता है।
बजे एक CVn

जवाबों:


339

हाँ।

टाइमआउट पैरामीटर

curlदो विकल्प हैं: --connect-timeoutऔर --max-time

मैनपेज से उद्धरण:

--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.

तथा:

-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.

चूक

यहां (डेबियन पर) यह 2 मिनट के बाद कनेक्ट करने की कोशिश करना बंद कर देता है, भले ही इसके साथ निर्दिष्ट समय की परवाह किए बिना --connect-timeoutऔर यद्यपि डिफ़ॉल्ट कनेक्ट टाइमआउट वैल्यू माननीय / कनेक्ट.एच में मैक्रो के अनुसार 5 मिनट लगती है ।DEFAULT_CONNECT_TIMEOUT

प्रारंभिक कनेक्ट के सफल होने पर किसी प्रतिक्रिया के लिए एक डिफ़ॉल्ट मान हमेशा के लिए प्रतीक्षा --max-timeनहीं करता है curl

क्या उपयोग करें?

आप शायद, दूसरा विकल्प में रुचि रखते हैं --max-time। अपने मामले के लिए इसे 900(15 मिनट) पर सेट करें ।

--connect-timeoutकुछ 60(एक मिनट) की तरह विकल्प निर्दिष्ट करना भी एक अच्छा विचार हो सकता है। अन्यथा curlबार-बार कनेक्ट करने का प्रयास करेंगे, जाहिरा तौर पर कुछ बैकऑफ़ एल्गोरिथ्म का उपयोग करते हुए।


2
उसके लिए धन्यवाद! -मैक्स-टाइम डिफ़ॉल्ट मानों के बारे में कुछ नहीं कहता है, इसलिए मुझे लगता है कि यह नहीं है और इसलिए डिफ़ॉल्ट से कनेक्ट-टाइमआउट के अलावा कोई टाइमआउट नहीं है ...?
प्रीक्सो

4
हां, यदि कनेक्ट सफल हो जाता है तो कर्ल हमेशा के लिए प्रतिक्रिया के लिए इंतजार करने लगता है।
स्काइ

ध्यान दें कि दोनों अधिकतम समय एक समस्या है अगर प्रतिक्रिया एक बड़ा डाउनलोड है जो 'मैक्सटाइम' की तुलना में अधिक समय लेती है।
user92979

1
2 मिनट का टाइमआउट भी मुझे एक सर्वर टाइम की तरह महक देता है। Node.js ऐप के http सर्वर के साथ बस एक ही समस्या थी जिसमें 2 मिनट का डिफ़ॉल्ट टाइमआउट है। इसे बढ़ाने के लिए, HTTP.server.setTimeout () देखें
थलिस के।

17

समयबद्धता है: / usr / bin / timelimit - प्रभावी रूप से एक प्रक्रिया के पूर्ण निष्पादन समय को सीमित करता है

 Options:

 -p      If the child process is terminated by a signal, timelimit
         propagates this condition, i.e. sends the same signal to itself. 
         This allows the program executing timelimit to determine 
         whether the child process was terminated by a signal or 
         actually exited with an exit code larger than 128.
 -q      Quiet operation - timelimit does not output diagnostic 
         messages about signals sent to the child process.
 -S killsig
         Specify the number of the signal to be sent to the 
         process killtime seconds after warntime has expired.  
         Defaults to 9 (SIGKILL).
 -s warnsig
         Specify the number of the signal to be sent to the 
         process warntime seconds after it has been started.  
         Defaults to 15 (SIGTERM).
 -T killtime
         Specify the maximum execution time of the process before 
         sending killsig after warnsig has been sent.  Defaults to 120 seconds.
 -t warntime
         Specify the maximum execution time of the process in 
         seconds before sending warnsig.  Defaults to 3600 seconds.

 On systems that support the setitimer(2) system call, the 
 warntime and killtime values may be specified in fractional 
 seconds with microsecond precision.

1
MacOS पर डिफ़ॉल्ट रूप से उपलब्ध नहीं है 10.13.4 कम से कम।
थोरबजोरन राव एंडरसन

14

बेहतर की तुलना में --max-timeकर रहे हैं --speed-limitऔर --speed-timeविकल्प। संक्षेप में, --speed-limitन्यूनतम औसत गति को निर्दिष्ट करता है जिसे आप स्वीकार करने के लिए तैयार हैं, और --speed-timeनिर्दिष्ट करता है कि स्थानांतरण की गति कितनी देर तक उस सीमा से नीचे रह सकती है इससे पहले कि वह स्थानांतरण समय से बाहर हो और निरस्त हो जाए।


9
मुझे लगता है कि न तो बेहतर है, लेकिन मेरे उपयोग के मामले में - max- समय वास्तव में अधिक उपयुक्त है क्योंकि 10 सेकंड से अधिक कुछ भी मेरे कार्यक्रम को बेकार कर देगा।
जॉर्ज बुकानन

मैं एक डेस्कटॉप एप्लिकेशन में लाइब्रेरी के रूप में कर्ल का उपयोग कर रहा हूं (न केवल इसे सीएलआई से कॉल कर रहा हूं) और मेरे लिए आपका विकल्प सबसे उपयुक्त था। मेरे ऐप को लंबे डाउनलोड का समर्थन करने में सक्षम होना है, इसलिए "अटक डाउनलोड" का पता लगाने के लिए एक सरल - मैक्स-टाइम एक अच्छा फिट नहीं था (जो कि अगर उदाहरण के लिए, उपयोगकर्ता डाउनलोड के दौरान ऑफ़लाइन हो जाता है। प्रगति), इसलिए मैं इनका पता लगाने के लिए 1024 की गति-सीमा और 30 की गति-समय के साथ चला गया।
आंद्रे मोरुजाओ

1
उपयोगी? निश्चित रूप से। बेहतर? मुझे लगता है कि यह आपकी आवश्यकताओं पर बहुत निर्भर है
ब्रायन एग्न्यू

यदि प्रतिक्रिया अज्ञात (या भी ज्ञात!) आकार का एक बड़ा डाउनलोड हो सकता है, तो टाइमआउट एक समस्या है। यदि अधिकतम डाउनलोड 15 मिनट से अधिक समय लेता है, तो अधिकतम समय समाप्त हो जाएगा। और गति-सीमाओं को परदे के पीछे से काट दिया जा सकता है जो किसी भी चीज़ को आगे बढ़ाने से पहले पूरी प्रतिक्रिया को कैश कर देता है। वे कभी-कभी प्रति मिनट 1 बाइट फॉरवर्ड करने लगते हैं, लेकिन आप कैसे बताएं कि कैशिंग-प्रॉक्सी तेज़ नेटवर्क पर है, या बहुत धीमी गति से कनेक्शन है जिसे वापस लिया जाना चाहिए ?? इसलिए अंत में मैंने छोड़ दिया और डाउनलोड प्रश्नों के लिए समय समाप्त कर दिया। यकीन नहीं तो बेहतर तरीका है।
user92979

3

यदि आपके पास MacOS पर स्थापित कोरुटिल्स हैं तो आप GNU टाइमआउट कमांड का उपयोग कर सकते हैं जो उस पैकेज के साथ शामिल है। GNU उपकरण सभी उपसर्ग हैं gइसलिए CLI होगा gtimeout

gtimeout --help
Usage: gtimeout [OPTION] DURATION COMMAND [ARG]...
 or:  gtimeout [OPTION]
Start COMMAND, and kill it if still running after DURATION.

उदाहरण

$ gtimeout 1s curl -I http://www.google.com/
HTTP/1.1 200 OK
Date: Wed, 31 Oct 2018 03:36:08 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=ISO-8859-1
P3P: CP="This is not a P3P policy! See g.co/p3phelp for more info."
Server: gws
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Set-Cookie: 1P_JAR=2018-10-31-03; expires=Fri, 30-Nov-2018 03:36:08 GMT; path=/; domain=.google.com
HttpOnly
Transfer-Encoding: chunked
Accept-Ranges: none
Vary: Accept-Encoding

0

BASH4 + में समाधानों के युगल

# -- server available to check via port xxx ?  --
function isServerAvailableNC() {
    max_secs_run="${3}"
    if timeout $max_secs_run nc -z ${1} ${2} 2>/dev/null >/dev/null; then
        #echo "${1} ✓"
        true
   else
        #echo "${1} ✗"
        return
   fi
}


# -- server available to check via port xxx ?  --
# -- supported protocols (HTTP, HTTPS, FTP, FTPS, SCP, SFTP, TFTP, DICT, TELNET, LDAP or FILE) --
#/usr/bin/curl -sSf --max-time 3 https://ifwewanted.to.confirm.https.com/ --insecure

function isServerAvailableCURL() {

    max_secs_run="${3}"

    proto="http://"
    if [ ! -z ${2} ] || [ ${2} -gt 80 ] ;then
        proto="https://"
    fi

    if /usr/bin/curl -sSf --max-time "${max_secs_run}" "${1}" --insecure 2>/dev/null >/dev/null; then
        #echo "${1} ✓"
        true
    else
        #echo "${1} ✗"
        false
    fi
}

नमूना उपयोग:

यदि हमें किसी विशिष्ट पोर्ट की आवश्यकता है, तो पहले NC का उपयोग करें

host="1.2.3.4"
if isServerAvailableCURL "$host" "80" "3";then
    check_remote_domain_cert "$host"
fi


host="1.2.3.4"
if isServerAvailableNC "$host" "80" "3";then
    check_remote_domain_cert "$host"
fi
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.