The client crashes, generally within a few seconds. Adding a
sleep inside the server loop seems to resolve the issue.
With what error?
$ ruby client.rb
(druby://localhost:61676) /usr/local/lib/ruby/1.8/rinda/tuplespace.rb:
332:in move': undefined methodpush’ for :EDQUOT=:Symbol
(NoMethodError)
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/
monitor.rb:229:in synchronize' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/rinda/ tuplespace.rb:329:inmove’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1552:in perform_without_block' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1512:inperform’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1586:in main_loop' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1582:inmain_loop’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1578:in main_loop' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1427:inrun’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1424:in run' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1344:ininitialize’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1624:in start_service' from (druby://localhost:61676) server.rb:7 from /usr/local/lib/ruby/1.8/rinda/rinda.rb:153:intake’
from client.rb:11
On Nov 15, 2005, at 3:17 PM, James Edward G. II wrote:
tuplespace.rb:332:in move': undefined methodpush’
for :EDQUOT=:Symbol (NoMethodError)
I’m seeing similar, but only on the Mac.
I wrote [ruby-core:06629], so you may want to add your ruby versions
and any additional insight there, as I think this is a problem
somewhere in the guts of Ruby.
The client crashes, generally within a few seconds. Adding a
sleep inside the
server loop seems to resolve the issue.
Anyone know why?
No, I don’t. What happens if you match the old way? Like:
while problem = tuplespace.take([“Problem”, nil])
It seems to be a problem only when OS X is involved.
I’ve been running the same two scripts using Ruby 1.8.3 on FreeBSD
for the past hour without error. I’ll let them run for at least
another four or five to see if they fail.
while problem = tuplespace.take([“Problem”, nil])
unless problem.last =~ %r{^\d+(?: [-+*/] \d+)+$}
puts “Bogus input ‘#{problem.last}’, Ted!” #
else
tuplespace.write([“Result”, “#{problem.last} = #{eval
problem.last}”])
end
end
This is not equivalent. You removed the problem from the TupleSpace
whereas my version leaves it for someone else to solve.
I realize this isn’t what you were originally asking for and I can
try the change, if you want to see it. To me it’s irrelevant though,
because TupleSpace supports a Regexp search and it should not be
crashing when doing it.
This is just a simplified case I cooked up to show the issue.
On Wed, 16 Nov 2005, James Edward G. II wrote:
[…]
end
end
This is not equivalent. You removed the problem from the TupleSpace whereas
my version leaves it for someone else to solve.
Yes, that’s true, but it’s not really the point I was making – one
could write it back, or whatever.
I realize this isn’t what you were originally asking for and I can try the
change, if you want to see it. To me it’s irrelevant though, because
TupleSpace supports a Regexp search and it should not be crashing when doing
it.
IIRC it didn’t in the past. My point is that if the old way works then
maybe it narrows down where to swat the bug. My expectation is that
it won’t make any difference, but it it isn’t tested we won’t know.
This is just a simplified case I cooked up to show the issue.
IIRC it didn’t in the past. My point is that if the old way works then
maybe it narrows down where to swat the bug. My expectation is that
it won’t make any difference, but it it isn’t tested we won’t know.
Same issue.
$ ruby client.rb
(druby://localhost:61676) /usr/local/lib/ruby/1.8/rinda/tuplespace.rb:
446:in move': undefined methodpush’ for :push:Symbol (NoMethodError)
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/
monitor.rb:229:in synchronize' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/rinda/ tuplespace.rb:443:inmove’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1552:in perform_without_block' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1512:inperform’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1586:in main_loop' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1582:inmain_loop’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1578:in main_loop' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1427:inrun’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1424:in run' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/ drb.rb:1344:ininitialize’
from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/
drb.rb:1624:in start_service' from (druby://localhost:61676) server.rb:7 from /usr/local/lib/ruby/1.8/rinda/rinda.rb:229:intake’
from client.rb:11
$ cat client.rb
#!/usr/local/bin/ruby -w
from /usr/local/lib/ruby/1.8/rinda/rinda.rb:229:in `take'
I'm stumped.
This is likely not a problem that can be fixed with more Ruby code.
I ran the two files on DRb for over 4 hours continuously on a
FreeBSD machine, which tells me that it is Mac-specific. Mixing
FreeBSD and Mac would always crash within 5 minutes at worst. My
best guess is that Marshal is not operating correctly or
ObjectSpace#_id2ref is looking up bad objects.
I should also note that disabling the GC on the client does not
affect the frequency of crashes.
IIRC it didn’t in the past. My point is that if the old way works then
maybe it narrows down where to swat the bug. My expectation is that
it won’t make any difference, but it it isn’t tested we won’t know.
/usr/local/lib/ruby/1.8/monitor.rb:229:in synchronize' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/rinda/tuplespace.rb:443:inmove’
from (druby://localhost:61676)
/usr/local/lib/ruby/1.8/drb/drb.rb:1552:in `perform_without_block’
from (druby://localhost:61676)
something to do with @obj and @argv. These are delivered by send.
/usr/local/lib/ruby/1.8/drb/drb.rb:1512:in perform' from (druby://localhost:61676) /usr/local/lib/ruby/1.8/drb/drb.rb:1586:inmain_loop’
from (druby://localhost:61676)
seems to come from cliemt.recvfrom.
/usr/local/lib/ruby/1.8/drb/drb.rb:1582:in main_loop' [...] /usr/local/lib/ruby/1.8/drb/drb.rb:1624:instart_service’
from (druby://localhost:61676) server.rb:7
from /usr/local/lib/ruby/1.8/rinda/rinda.rb:229:in `take’
from client.rb:11
All comments are from looking at the CVS, but the line numbers
agree, AFAICS.
from /usr/local/lib/ruby/1.8/rinda/rinda.rb:229:in `take'
I'm stumped.
This is likely not a problem that can be fixed with more Ruby code.
I ran the two files on DRb for over 4 hours continuously on a FreeBSD
machine, which tells me that it is Mac-specific. Mixing FreeBSD and
Mac would always crash within 5 minutes at worst. My best guess is
that Marshal is not operating correctly or ObjectSpace#_id2ref is
looking up bad objects.
I’ve seen similar results: runs for hours on Linux, very flakey on OSX.
It’s
kind of hard to believe that Marshal is broke on OSX, though. I’m
thinking
it’s something related to networking code.
Just wondering if you’ve gotten any resolution on this? I’m seeing the
same
thing on Tiger both with your test code and my own DRb code. While the
same
code runs fine for hours on Linux and FreeBSD. It seems that DRb cannot
be
used reliably on OSX. Anyone have any idea what might be going on?
Just wondering if you’ve gotten any resolution on this? I’m seeing
the same
thing on Tiger both with your test code and my own DRb code. While
the same
code runs fine for hours on Linux and FreeBSD. It seems that DRb
cannot be
used reliably on OSX. Anyone have any idea what might be going on?
I haven’t had the time to look into it yet. I’ll try to get some
time in against the latest 1.8.4 preview RSN.
DRb.start_service(“druby://localhost:61676”, tuplespace) END
DRbObject.new_with_uri(“druby://localhost:61676”)
The client crashes, generally within a few seconds. Adding a sleep
used reliably on OSX. Anyone have any idea what might be going on?
Compiling Ruby with GCC3.3 seems to make the problem go away [ruby-
core:6825].
GCC 4 seems to build an ok Ruby on other systems [ruby-core:6827].
/usr/local/lib/ruby/1.8/monitor.rb:229:in `synchronize’
from (druby://localhost:61676)
All comments are from looking at the CVS, but the line numbers
agree, AFAICS.
$ cat client.rb
[…] END
Looks fine to me.
I'm stumped.
This is likely not a problem that can be fixed with more Ruby code.
I ran the two files on DRb for over 4 hours continuously on a FreeBSD
machine, which tells me that it is Mac-specific. Mixing FreeBSD and
Mac would always crash within 5 minutes at worst. My best guess is
that Marshal is not operating correctly or ObjectSpace#_id2ref is
looking up bad objects.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.