Re: Django Potential Fork Bomb

2019-05-10 Thread Peter J. Holzer
On 2019-05-09 14:21:15 +0530, Shakti Kumar wrote: > On Thu, 9 May 2019 at 10:27, dieter wrote: > > Shakti Kumar writes: > > > I suspect django spawned too many child processes, and consecutively I ran > > > out of resources on my dev server. How can I prevent this from happening? > > > And I am n

Re: Django Potential Fork Bomb

2019-05-09 Thread Shakti Kumar
On Thu, 9 May 2019 at 18:02, Skip Montanaro wrote: > > > > In this case, you might get better answers when you describe your problem in a > > > specialize "Django" list. > > > Any leads for some groups? > > Django-users? > > https://docs.djangoproject.com/en/dev/internals/mailing-lists/ > > FWIW,

Re: Django Potential Fork Bomb

2019-05-09 Thread Skip Montanaro
> > In this case, you might get better answers when you describe your problem > > in a > > specialize "Django" list. > Any leads for some groups? Django-users? https://docs.djangoproject.com/en/dev/internals/mailing-lists/ FWIW, I'm not a Django user, but found this page with a simple Google s

Re: Django Potential Fork Bomb

2019-05-09 Thread Shakti Kumar
On Thu, 9 May 2019 at 10:27, dieter wrote: > > Shakti Kumar writes: > > ... > > I suspect django spawned too many child processes, and consecutively I ran > > out of resources on my dev server. How can I prevent this from happening? > > And I am not able to understand why django should spawn (if

Re: Django Potential Fork Bomb

2019-05-08 Thread dieter
Shakti Kumar writes: > ... > I suspect django spawned too many child processes, and consecutively I ran > out of resources on my dev server. How can I prevent this from happening? > And I am not able to understand why django should spawn (if it indeed is > spawning) incrementing processes with eac

Django Potential Fork Bomb

2019-05-08 Thread Shakti Kumar
Hello team, I am using django runserver 0.0.0.0: for one of my dev server. However, I notice that a second query from the GUI executes any command in my python app twice (I could see 2 prints), a third query executes it three times, and so on. This kept growing with each query and today my dev se