A curvatura tem um tempo limite?

202

Até agora, não consegui encontrar nada de verdade, mas é verdade que curl realmente não tem tempo?

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

Estou perguntando porque estou redirecionando qualquer solicitação de imagens em testdir para um módulo separado do Apache que gera essas imagens rapidamente. Pode levar até 15 minutos para que a imagem esteja realmente pronta e entregue ao cliente solicitante.

O curl sempre espera (ou depende da configuração) ou existe algum tempo limite?

    
por Preexo 11.10.2013 / 12:48

5 respostas

282

Sim.

Parâmetros de tempo limite

curl tem duas opções: --connect-timeout e --max-time .

Citação da página de 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.

e:

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

Padrões

Aqui (no Debian) ele pára de tentar se conectar após 2 minutos, independentemente do tempo especificado com --connect-timeout e, embora o valor do tempo limite de conexão padrão pareça ser 5 minutos de acordo com o DEFAULT_CONNECT_TIMEOUT de macro em lib / connect.h .

Um valor padrão para --max-time parece não existir, fazendo com que curl espere sempre por uma resposta se a conexão inicial for bem-sucedida.

O que usar?

Você provavelmente está interessado na última opção, --max-time . Para o seu caso, defina-o como 900 (15 minutos).

Especificar a opção --connect-timeout para algo como 60 (um minuto) também pode ser uma boa ideia. Caso contrário, curl tentará se conectar de novo e de novo, aparentemente usando algum algoritmo de backoff.

    
por 11.10.2013 / 13:46
14

Existe Prazo: / usr / bin / timelimit - efetivamente limitar o tempo de execução absoluto de um processo

 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.
    
por 12.10.2013 / 15:39
12

Melhor que --max-time são as opções --speed-limit e --speed-time . Em suma, --speed-limit especifica a velocidade média mínima que você está disposto a aceitar e --speed-time especifica por quanto tempo a velocidade de transferência pode permanecer abaixo desse limite antes que a transferência atinja o tempo limite e seja abortada.

    
por 26.06.2014 / 14:19
1

Se você tem coreutils instalados no MacOS, você pode usar o comando timeout do GNU que está incluído com o pacote. As ferramentas GNU são prefixadas com um g , então a CLI seria gtimeout .

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

Exemplo

$ 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
    
por 31.10.2018 / 04:36
0

Algumas soluções no 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
}

Uso da amostra:

RECOMENDAR A NC usada se precisarmos de uma porta específica

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
    
por 12.05.2018 / 20:10

Tags