Displaying 20 results from an estimated 2000 matches similar to: "Mongrel instance dies unexpectedly, but cleanly..."
2007 Sep 11
1
Mongrel instance dies unexpectedly, but cleanly....
Hi,
I have a two instance mongrel cluster, running behind apache
mod_proxy_balancer on a linux VPS. Mongrel_cluster is 1.01, mongrel is
v1.02, rails 1.2.3, ruby 1.8.6. I seem to have enough memory.
About 2 minutes after I start the cluster, one of my instances dies - it
could be either one. The log file indicates that it received a TERM
signal. The instance does die cleanly, removing its pid
2007 Sep 13
2
: Re: Mongrel hangs, consumes all CPU on shutdown
> We see this on all of our Mac''s here as well. We''ve tried it with
> different versions of Ruby (1.8.4, 1.8.5, and 18.6), and the problem
> happens with all of them.
>
We run macs w/ compiled adaptors on local mysql instances and there are no
issues.
F
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 May 16
11
H323 to SIP
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/jpeg
Size: 2593 bytes
Desc: not available
Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20050516/734618ce/attachment.jpeg
2010 Jun 15
1
lme, spline
Dear All,
I have a problem running this program on R. Z is a matrix of spline which is random
> fit<-lme(anc~X,random=pdIdent(~Z))
Error in getGroups.data.frame(dataMix, groups) :
Invalid formula for groups
What I have done wrong?
2007 Sep 07
3
Fails to restart mongrel cluster after Capistrano rollback (PIDs not deleted)
Hi,
I am deploying a Rails website using Capistrano to a VPS running the
site through Apache and Mongrel.
''cap deploy'' works fine, and mongrels are restarted. When I execute
''cap deploy:rollback'', however, my script fails to restart the
mongrels giving this error:
!!! PID file tmp/pids/mongrel.5000.pid already exists. Mongrel could
be running already.
2004 Aug 06
1
Ices dies unexpectedly!!!
Hello!
I've just started useing Icecast and Ices. Both has mainly the defaults in
their conf files. fe.: Ices uses the default /ices mount point, end so on.
After playing serveral hours, problems come up... Ices dies. In the ices.log
these can be found:
Error during send: Libshout reported send error, disconnecting: Libshout
socket error.
Error during send: Mount failed on
2007 Sep 11
3
Prevent multiple sip registrations
Hi all,
Is there anyway i can prevent multiple sip registrations from different IPs
using single username in asterisk. Does asterisk provide any aid in this
respect? As far as my knowledge is concerned i dont think there is any
support for this in asterisk, so i think i'll have to makeup a script which
sniffs sip packets coming for asterisk and detect for multiple register
requests coming from
2007 May 09
7
Webbrick and/or Mongrels Dies Overnight
I have a SuSE 10.0 server that was first running Webbrick, and now
Mongrel. In both cases, I can have them running and used all day.
However, either one of them will go unresponsive in the middle of the
night for seemingly no reason. Being that I only use Mongrel now, I
check the mongrel.log, and nothing unusual there. I check /var/log/
messages, and nothing there.
Still, a request to
2013 Jul 28
0
[LLVMdev] IR Passes and TargetTransformInfo: Straw Man
Hi, Sean:
I'm sorry I lie. I didn't mean to lie. I did try to avoid making a
*BIG* change
to the IPO pass-ordering for now. However, when I make a minor change to
populateLTOPassManager() by separating module-pass and non-module-passes, I
saw quite a few performance difference, most of them are degradations.
Attacking
these degradations one by one in a piecemeal manner is wasting
2013 Apr 17
0
[LLVMdev] [polly] pass ordering
On 04/17/2013 09:04 PM, Sebastian Pop wrote:
> Tobias Grosser wrote:
>> As said before, we could probably add it in between those two passes:
>>
>> MPM.add(createReassociatePass()); // Reassociate expressions
>> + addExtensionsToPM(EP_LoopOptimizerStart, MPM);
>> MPM.add(createLoopRotatePass()); // Rotate Loop
>
> As this is in the middle of other
2017 Dec 21
2
Pass ordering - GVN vs. loop optimizations
Hi,
This is Ariel from the Rust team again.
I am having another pass ordering issue. Looking at the pass manager at
https://github.com/llvm-mirror/llvm/blob/7034870f30320d6fbc74effff539d946018cd00a/lib/Transforms/IPO/PassManagerBuilder.cpp
(the early SimplifyCfg now doesn't sink stores anymore! I can't wait until
I can get to use that in rustc!) I find that the loop optimization group
2013 Sep 25
0
[LLVMdev] [Polly] Move Polly's execution later
Here is an update about moving Polly later.
1. Why does Polly generate incorrect code when we move Polly immediately after the loop rotating pass?
It is mainly caused by a wrong polly merge block. When Polly detects a valid loop for Polyhedral transformations, it usually introduces a new basic block "polly.merge_new_and_old" after the original loop exit block. This new basic block
2007 Aug 10
10
what is the correct way to stop/start a mongrel instance using monit with mongrel cluster
Hi --
I have been reading documentation and googling around to find the
correct way to do this but I have found many ways that seem to not
work, or the documentation makes no reference to.
I am using mongrel cluster with 10 mongrels for each server. Recently
I installed monit but which lead me to find the correct way to
start/stop mongrel instances one pid at a time. I am assuming one pid
at a
2013 Jul 22
0
wyrie/puppet-nagiosql -- anyone have experience with this module?
I made two decisions this afternoon that are now related to each other.
1. Use more of the modules that exist in the Forge
2. Rebuild my monitoring server
As I perused the various modules that help with managing monitoring
packages my eyes fell upon a module that reported to be able to manage
nagiosql, a setup that I had been planning on migrating my nagios
monitoring to. So I installed
2006 Aug 24
10
MongrelCluster - How can I make a request to a specific mongrel instance?
In our app we''ve a number of singleton ruby classes that cache static data
in hashes, things like
string values, system config params, etc). In a webbrick environment this
works ok, but we find
in production we have a problem because we have 4 caches, one for each
mongrel instance.
This also isn''t a BIG problem, but our cache.reload() methods are kinda
useless now, because
we
2013 Sep 25
3
[LLVMdev] [Polly] Move Polly's execution later
On 09/25/2013 04:55 AM, Star Tan wrote:
> Here is an update about moving Polly later.
Hi star tan,
thanks for your report.
>
> 1. Why does Polly generate incorrect code when we move Polly immediately after the loop rotating pass?
>
> It is mainly caused by a wrong polly merge block. When Polly detects a valid loop for Polyhedral transformations, it usually introduces a new basic
2016 Oct 12
2
Loop Unrolling Fail in Simple Vectorized loop
Hi all,
Attached herewith is a simple vectorized function with loops performing a
simple shuffle.
I want all loops (inner and outer) to be unrolled by 2 and as such used
-unroll-count=2
The inner loops(with k as the induction variable and having constant trip
counts) unroll fully, but the outer loop with (j) fails to unroll.
The llvm code is also attached with inner loops fully unrolled.
To
2012 Oct 17
2
[LLVMdev] please advise on PassManager
Hello,
I've recently changed AddressSanitizer (asan) compiler pass from ModulePass
to FunctionPass and it could a bit of mayhem.
The problem is that asan FunctionPass instruments a function foo, then foo
gets inlined into bar, then bar gets instrumented
and thus the code of foo gets instrumented twice (which causes run-time
crash).
This happens only at -O0; at -O1 we get the correct order of
2018 Aug 09
3
Legacy Loop Pass Manager question
Hi,
If we add multiple loop passes to the pass manager in
PassManagerBuilder.cpp consecutively without any func/module pass in
between, I used to think they would belong to the same loop pass manager.
But it does not seem to be the case.
For example for this code snippet
PM.add(createIndVarSimplifyPass()); // Canonicalize indvars
MPM.add(createLoopIdiomPass()); //
2013 Jan 31
1
The way Puppet installs things fail
Basically, the way puppet installs things things with
/usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold install
<package_name>
fails due to authentication
WARNING: The following packages cannot be authenticated
But if I do it from an ssh console normally, using apt-get install
<package_name> it works fine without issues.
Is there a way to change how puppet uses the