New to ruby, using threads

  • Thread starter Poncho Quintanilla
  • Start date
P

Poncho Quintanilla

I'm trying to schedule some task using ruby threads

This work great:

t = Thread.new do
while true do
puts "Starting new job at #{Time.now}"
do_something
sleep 3
end
end
t.join

But when the task take a long, like:

def do_something
puts "doing something at#{Time.now}"
sleep(rand(3))
end

I cant get the "Starting new job" message appears in regular intervals
of 3 seconds. What I'm missing?

Thanks
 
R

Rodrigo Bermejo

def do_something
puts "doing something at#{Time.now}"
STDOUT.flush
sleep(rand(8))
end


t = Thread.new do
while true do
puts "Starting new job at #{Time.now}"
do_something
sleep 3
end
end
t.join

The problem is not the thread is the terminal where you are working on.
Try using STDOUT.flush ...

[te la bañaste con lo del parangaricutirimicuaro]

-r.
 
L

Louis-Philippe

[Note: parts of this message were removed to make it a legal post.]

hi Poncho,
what you want to do is probably have two parallel threads,
so, try something like:

t1 = Thread.new do
while true do
puts "Starting new job at #{Time.now}"
sleep 3
end
end

t2 = Thread.new do
loop do
do_something
end
end

t1.join
 
M

Magicloud

The main problem is you have a little misunderstand of thread.
Based on your code, when the child thread is forked, there is nothing
more for the main thread to do. So it joins the child thread
immediately. And what is the child thread doing? Sleeping. So it looks
like your program is sleeping.
 
R

Robert Klemme

I'm trying to schedule some task using ruby threads

This work great:

t = Thread.new do
while true do
puts "Starting new job at #{Time.now}"
do_something
sleep 3
end
end
t.join

But when the task take a long, like:

def do_something
puts "doing something at#{Time.now}"
sleep(rand(3))
end

I cant get the "Starting new job" message appears in regular intervals
of 3 seconds. What I'm missing?

You're sleeping 3 seconds plus whatever rand(3) returns in your thread -
so the intervals have varying length. Basically in your code you do not
use threads properly because there is just one thread active (main
thread joins t and just sits there and waits for t to complete).

You probably rather wanted this

loop do
puts "Starting new job at #{Time.now}"
Thread.new do
do_something
end
sleep 3
end

Note, since you have an infinite loop anyway you do not need to join the
thread.

Cheers

robert
 
B

Brian Candler

Poncho said:
I'm trying to schedule some task using ruby threads

This work great:

t = Thread.new do
while true do
puts "Starting new job at #{Time.now}"
do_something
sleep 3
end
end
t.join

But when the task take a long, like:

def do_something
puts "doing something at#{Time.now}"
sleep(rand(3))
end

I cant get the "Starting new job" message appears in regular intervals
of 3 seconds. What I'm missing?

It works just fine for me (ruby-1.8.6p114, ubuntu hardy). Note that
rand(3) returns either 0, 1 or 2; it's not going to be easy to see the
delay varying.

It's clearer if you print Time.now.to_f

Starting new job at 1228381283.09741
doing something at1228381283.12344
Starting new job at 1228381288.13136 << + 5
doing something at1228381288.13152
Starting new job at 1228381291.13536 << + 3
doing something at1228381291.13553
Starting new job at 1228381296.14337 << + 5
doing something at1228381296.14353

Or change rand(3) to rand(10).
 
B

Brian Candler

Brian said:
It works just fine for me (ruby-1.8.6p114, ubuntu hardy).

Of course, this assumes that what you've written is what you want:

- Start a single thread
- Within this thread:
- call do_something *and wait for it to finish*
- sleep 3 seconds
- loop around again

Clearly the total time taken for each iteration of this loop is the time
taken in do_something, plus 3 seconds, plus a small amount of overhead.
 

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,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top