Python too many subprocesses?How can I represent an 'Enum' in Python?Calling an external command in PythonPython subprocess issue with ampersandsPython subprocess/Popen with a modified environmentHow to terminate a python subprocess launched with shell=TrueWay to create multiline comments in Python?What is the Python 3 equivalent of “python -m SimpleHTTPServer”Python subprocess.Popen not working when stdout=tempfile is usedWhy is “1000000000000000 in range(1000000000000001)” so fast in Python 3?Bizarre hang in python when subprocess returns an error

I didn't do any exit passport control when leaving Japan. What should I do?

Are there any rules around when something can be described as "based on a true story"?

How to respond when insulted by a grad student in a different department?

Island of Knights, Knaves, Spies

How many people are there?

Novel set in the future, children cannot change the class they are born into, one class is made uneducated by associating books with pain

Has Ukraine responded in any way to the 2018 letter sent by three Democratic senators?

What is the word for things that work even when they aren't working (e.g. escalators)?

String Operation to Split on Punctuation

Raspberry Pi run commands on boot

What is the German word for: "It only works when I try to show you how it does not work"?

If the caster of Secluded Grimoire dies, is the hidden spellbook lost forever?

If the music alphabet had more than 7 letters would octaves still sound like the same note?

Can you take an Immortal Phoenix out of the game?

When was “sf” first used to describe science fiction?

Tikz arrows not showing correctly

Legality of creating a SE replica using SE's content

Why are KDFs slow? Is using a KDF more secure than using the original secret?

How to handle shared mortgage payment if one person can't pay their share?

Knights and knaves puzzler

Map from a classifying space to a stack

How is the first letter in an AER paper enlarged?

Does my code handle negative numbers or zero when summing squared digits?

Match the blocks



Python too many subprocesses?


How can I represent an 'Enum' in Python?Calling an external command in PythonPython subprocess issue with ampersandsPython subprocess/Popen with a modified environmentHow to terminate a python subprocess launched with shell=TrueWay to create multiline comments in Python?What is the Python 3 equivalent of “python -m SimpleHTTPServer”Python subprocess.Popen not working when stdout=tempfile is usedWhy is “1000000000000000 in range(1000000000000001)” so fast in Python 3?Bizarre hang in python when subprocess returns an error






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









-1

















I'm trying to start a lot of python procees on a single machine.



Here is a code snippet:



fout = open(path, 'w')
p = subprocess.Popen((python_path,module_name),stdout=fout,bufsize=-1)


After about 100 processes I'm getting the error below:



enter image description here



Running on win 10 64 bit, Python 3.5. Any Idea what that might be? Already tried to split the start (so start from two scripts) as well as sleep command. After a certain number of processes, the error shows up. Any Idea what that might be? Thanks a lot for any hint!



PS:
Some background. Each process opens database connections as well as does some requests using the requests package. Then some calculations are done using numpy, scipy etc.



PPS: Just discover this error message:
dll load failed the paging file is too small for this operation to complete python (when calling scipy)










share|improve this question


































    -1

















    I'm trying to start a lot of python procees on a single machine.



    Here is a code snippet:



    fout = open(path, 'w')
    p = subprocess.Popen((python_path,module_name),stdout=fout,bufsize=-1)


    After about 100 processes I'm getting the error below:



    enter image description here



    Running on win 10 64 bit, Python 3.5. Any Idea what that might be? Already tried to split the start (so start from two scripts) as well as sleep command. After a certain number of processes, the error shows up. Any Idea what that might be? Thanks a lot for any hint!



    PS:
    Some background. Each process opens database connections as well as does some requests using the requests package. Then some calculations are done using numpy, scipy etc.



    PPS: Just discover this error message:
    dll load failed the paging file is too small for this operation to complete python (when calling scipy)










    share|improve this question






























      -1












      -1








      -1








      I'm trying to start a lot of python procees on a single machine.



      Here is a code snippet:



      fout = open(path, 'w')
      p = subprocess.Popen((python_path,module_name),stdout=fout,bufsize=-1)


      After about 100 processes I'm getting the error below:



      enter image description here



      Running on win 10 64 bit, Python 3.5. Any Idea what that might be? Already tried to split the start (so start from two scripts) as well as sleep command. After a certain number of processes, the error shows up. Any Idea what that might be? Thanks a lot for any hint!



      PS:
      Some background. Each process opens database connections as well as does some requests using the requests package. Then some calculations are done using numpy, scipy etc.



      PPS: Just discover this error message:
      dll load failed the paging file is too small for this operation to complete python (when calling scipy)










      share|improve this question
















      I'm trying to start a lot of python procees on a single machine.



      Here is a code snippet:



      fout = open(path, 'w')
      p = subprocess.Popen((python_path,module_name),stdout=fout,bufsize=-1)


      After about 100 processes I'm getting the error below:



      enter image description here



      Running on win 10 64 bit, Python 3.5. Any Idea what that might be? Already tried to split the start (so start from two scripts) as well as sleep command. After a certain number of processes, the error shows up. Any Idea what that might be? Thanks a lot for any hint!



      PS:
      Some background. Each process opens database connections as well as does some requests using the requests package. Then some calculations are done using numpy, scipy etc.



      PPS: Just discover this error message:
      dll load failed the paging file is too small for this operation to complete python (when calling scipy)







      python-3.x windows subprocess






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question



      share|improve this question








      edited Mar 28 at 21:55







      MichaelRazum

















      asked Mar 28 at 21:24









      MichaelRazumMichaelRazum

      3152 silver badges16 bronze badges




      3152 silver badges16 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0


















          Issues solved through reinstalling numpy and scipy + installing mkl.



          Strange about this error was that it only appeared after a certain number of processes. Would love to hear if anybody knows why this happened!






          share|improve this answer



























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );














            draft saved

            draft discarded
















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55407058%2fpython-too-many-subprocesses%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown


























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0


















            Issues solved through reinstalling numpy and scipy + installing mkl.



            Strange about this error was that it only appeared after a certain number of processes. Would love to hear if anybody knows why this happened!






            share|improve this answer






























              0


















              Issues solved through reinstalling numpy and scipy + installing mkl.



              Strange about this error was that it only appeared after a certain number of processes. Would love to hear if anybody knows why this happened!






              share|improve this answer




























                0














                0










                0









                Issues solved through reinstalling numpy and scipy + installing mkl.



                Strange about this error was that it only appeared after a certain number of processes. Would love to hear if anybody knows why this happened!






                share|improve this answer














                Issues solved through reinstalling numpy and scipy + installing mkl.



                Strange about this error was that it only appeared after a certain number of processes. Would love to hear if anybody knows why this happened!







                share|improve this answer













                share|improve this answer




                share|improve this answer



                share|improve this answer










                answered Mar 28 at 22:29









                MichaelRazumMichaelRazum

                3152 silver badges16 bronze badges




                3152 silver badges16 bronze badges

































                    draft saved

                    draft discarded















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55407058%2fpython-too-many-subprocesses%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown









                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript