I have an application that does a long running job and pushes the task in the task queue. Currently, when different users login to the application and start the upload job, the job merges with the existing task and expected output is not achieved.
What I need exactly is to run different instances of app engine application for every user as every user will be needing much amount of computing power and these instances must be dynamically get created when every new user is encountered.
I had referred different docs on instance classes and scaling types, but didn't get to know how to start a new instance for every different user.
Please also suggest if there is a better solution to this.