[google-appengine] Re: Google App Engine Nodejs flex, does it utilise all cores of the instances, or do I have to manually create processes?

2018-10-12 Thread 'George (Cloud Platform Support)' via Google App Engine
You are right about all cores, it is not appropriate to think otherwise. One should also keep in mind that these are virtual machines. My point, in the reply above, is that you have control over threading by way of your app's node.js code. -- You received this message because you are

[google-appengine] Re: Google App Engine Nodejs flex, does it utilise all cores of the instances, or do I have to manually create processes?

2018-10-12 Thread Sudhanshu Gaur
So Ap Engine Flex by default utilises all cores of the VM to run my NodeJS processes? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] Re: Google App Engine Nodejs flex, does it utilise all cores of the instances, or do I have to manually create processes?

2018-10-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sudhanshu, Load is efficiently dealt within Flexible Environment, there is no reason to assume otherwise. You do have control over thread creation. To this purpose, you typically do not need to use anything other than your languageā€™s built-in threading or multiprocessing tools. You may