karthick
karthick

Reputation: 12176

How to create multiple instances of an application in cloud

i wanted to create a multiple instances of my application in either google cloud or EC2. I have two queries regarding this

1.How to achieve this?

  1. Can we create a virtual instances by using zookeeper?

Upvotes: 0

Views: 903

Answers (1)

fjsj
fjsj

Reputation: 11240

Google App Engine instances are started automatically, as your traffic raises. You may also have always on instances or backends instaces. Just read the docs: http://code.google.com/intl/pt-BR/appengine/docs/adminconsole/instances.html

Google App Engine is not adequate to use with Zookeper. Since Java code runs in a limited sandbox, you may not be able to communicate with Zookeper at all. Also, you will have to start and end you backends programmatically, leading you to lots of work.

As for EC2, see this: http://www.mail-archive.com/[email protected]/msg01083.html

Upvotes: 1

Related Questions