Net::HTTP timeout

A

Alexandru E. Ungur

Hi all,

Is there a way to set the timout limit that affects Net::HTTP ?
This is what I'm trying to do:

body = Net::HTTP.get(URI.parse(url))

and I do know that the target script (url) takes a long time to do
its processing and to return the data to the calling script, so
that's why I want get() to ignore any timeouts (or to set them high
enough).

This is what I get right now:

/usr/lib/ruby/1.8/net/protocol.rb:197:in `rbuf_fill': socket read timeout (60
sec) (Timeout::Error)
from /usr/lib/ruby/1.8/net/protocol.rb:160:in `readuntil'
from /usr/lib/ruby/1.8/net/protocol.rb:171:in `readline'
from /usr/lib/ruby/1.8/net/http.rb:1760:in `read_chunked'
from /usr/lib/ruby/1.8/net/http.rb:1739:in `read_body_0'
from /usr/lib/ruby/1.8/net/http.rb:1705:in `read_body'
from /usr/lib/ruby/1.8/net/http.rb:1730:in `body'
from /usr/lib/ruby/1.8/net/http.rb:1668:in `reading_body'
from /usr/lib/ruby/1.8/net/http.rb:835:in `request'
from /usr/lib/ruby/1.8/net/http.rb:297:in `get_by_uri'
from /usr/lib/ruby/1.8/net/http.rb:296:in `start'
from /usr/lib/ruby/1.8/net/http.rb:296:in `get_by_uri'
from /usr/lib/ruby/1.8/net/http.rb:282:in `get_response'
from /usr/lib/ruby/1.8/net/http.rb:263:in `get'
from jobqueue.rb:41



Any tips/pointers are appreciated, thank you,
Alex

P.S. I did read http://www.ruby-doc.org/stdlib/ -> net/http but
haven't seen any method/parameter that might help me on this...
 
A

Alexandru E. Ungur

sender: "Bob Gustafson" date: "Wed, Mar 22, 2006 at 09:04:17PM +0900" <<<EOQ
You could search the source for '60'. And/or 'Timeout::Error'
Well, I was hoping for a more ruby-like ideea .set_timeout() or something
but this will do just fine, thanks for the ideea :)

Alex
 
D

Dimitri Aivaliotis

body =3D Net::HTTP.get(URI.parse(url))

and I do know that the target script (url) takes a long time to do
its processing and to return the data to the calling script, so
that's why I want get() to ignore any timeouts (or to set them high
enough).

Have you tried the following?
(from "Example 3: More generic GET+print" in the docs)

require 'net/http'
require 'uri'

url =3D URI.parse('http://www.example.com/index.html')

res =3D Net::HTTP.start(url.host, url.port) {|http|
http.read_timeout =3D 600
http.get('/index.html')
}

body =3D res.body

- Dimitri
 
C

Chintan Trivedi

------=_Part_988_28302449.1143111604317
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

Use Time Out block.

require 'timeout'

...
...
begin
timeout(60) do
resp, body=3Dh.get('/index.html')
puts body
end
rescue TimeoutError
puts "Timed Out"
end




Hi all,

Is there a way to set the timout limit that affects Net::HTTP ?
This is what I'm trying to do:

body =3D Net::HTTP.get(URI.parse(url))

and I do know that the target script (url) takes a long time to do
its processing and to return the data to the calling script, so
that's why I want get() to ignore any timeouts (or to set them high
enough).

This is what I get right now:

/usr/lib/ruby/1.8/net/protocol.rb:197:in `rbuf_fill': socket read timeout
(60
sec) (Timeout::Error)
from /usr/lib/ruby/1.8/net/protocol.rb:160:in `readuntil'
from /usr/lib/ruby/1.8/net/protocol.rb:171:in `readline'
from /usr/lib/ruby/1.8/net/http.rb:1760:in `read_chunked'
from /usr/lib/ruby/1.8/net/http.rb:1739:in `read_body_0'
from /usr/lib/ruby/1.8/net/http.rb:1705:in `read_body'
from /usr/lib/ruby/1.8/net/http.rb:1730:in `body'
from /usr/lib/ruby/1.8/net/http.rb:1668:in `reading_body'
from /usr/lib/ruby/1.8/net/http.rb:835:in `request'
from /usr/lib/ruby/1.8/net/http.rb:297:in `get_by_uri'
from /usr/lib/ruby/1.8/net/http.rb:296:in `start'
from /usr/lib/ruby/1.8/net/http.rb:296:in `get_by_uri'
from /usr/lib/ruby/1.8/net/http.rb:282:in `get_response'
from /usr/lib/ruby/1.8/net/http.rb:263:in `get'
from jobqueue.rb:41



Any tips/pointers are appreciated, thank you,
Alex

P.S. I did read http://www.ruby-doc.org/stdlib/ -> net/http but
haven't seen any method/parameter that might help me on this...

------=_Part_988_28302449.1143111604317--
 
A

Alexandru E. Ungur

Thank you all for your help!

In the end .read_timeout did the trick just fine :)

Thanks,
Alex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top