Has anyone used Google App Engine with a HPC application? is it possible to do parallelism? You can do parallelism (at least in theory) using java + threads, but how many threads can you get? how efficient is it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When using Google App Engine, your program doesn’t run in a complete JRE, but in a sandbox, which does not enable you to create new threads. Therefore, you can’t just use java + threads.
But you can run some concurrent Backends, which are some instances “designed for applications that need faster performance, large amounts of addressable memory, and continuous or long-running background processes”. These backends can be configured and are billable.