I'm looking for the best hosting option for a Grails application, my requirements are:

  • Low number of requests and storage (to start with likely only hundreds of requests per day)
  • Ease of deployment and configuration (I want to concentrate on development and not setup and admin tasks)
  • Low cost

I've investigated the following:

  • Amazon EC2 and CloudFoundry look good (I got the sample app up and running in 10 minutes) but the costs are high ($60 per month) The EC2 micro instance looks more promising but isn't available on CloudFoundry.
  • VMForce also looks interesting but I can't see details of pricing and it's not available yet.
  • rackspacecloud looks more promising especially with this tutorial: www.lazygun.net/deploying-a-grails-app-to-rackspace-cloud-ser

Does anyone have any other suggestions?

link|improve this question

Chris, where did you find the pricing for CloudFoundry? I can not find any price setting for CloudFoundry once there beta stops. – Ruben May 20 '11 at 6:25
Ruben, the CloudFoundry that I referred to in the original question above relates to the old version. This was based on top of Amazon EC2, therefore the costs refer to Amazon costs. I'm also looking forward to finding out what the prices are for the new CloudFoundry! – Chris May 25 '11 at 20:22
feedback

8 Answers

up vote 2 down vote accepted

www.Cloudfoundry.com, beta now.

link|improve this answer
I uploaded a sample project, it worked really well. The integration with Eclipse STS makes it very easy. It will be very interesting to see if their pricing model works well for apps that have a low number of requests. – Chris May 30 '11 at 20:37
feedback

I like EnjoyVPS: http://www.enjoyvps.com/unmanaged-linux-openvz-vps/

I've deployed a small Grails app using the 512MB plan which is only $10/month but you might want the 1GB option for $20/month. It's not as simple as EC2 but really not bad at all. Just pick a distro (for limited ram it's best to go with a 32-bit OS), unpack Tomcat to /usr/local and deploy your Grails war to /usr/local/tomcat/webapps.

link|improve this answer
A blank grails application doing nothing take about 500MB of RAM.. So 1GB is th minimum – Kedare Oct 12 '10 at 18:12
2  
Not true. With GSP precompilation a small or medium sized app runs fine for me with -Xmx=400m. Runs better with more of course, but 1GB is not the minimum. – Burt Beckwith Oct 12 '10 at 18:41
Burt, I'm wondering if EnjoyVPS is still working for you with the smaller 500MB size. Thanks – Ray Aug 20 '11 at 22:15
Yep, works great. – Burt Beckwith Aug 20 '11 at 22:54
@BurtBeckwith did you go for Linux OpenVZ or XEN VPS? Can you mention any particular compile-time or runtime flags you use – Don Mar 2 at 15:59
show 1 more comment
feedback

You could try Google App Engine - free for even pretty big apps, restricted by various quotas.

By detault the app is available through your-app.appspot.com and it looks like you need to use Google Apps to point your own domain name at the instance. The standard version of that seems to be free now, though.

GAE gives you a data store which is accessed through JDO or JPA, so you won't be using Hibernate over a relational database. For that and other reasons it needs a plugin to get Grails running: http://www.grails.org/plugin/app-engine

Persistence behaves slightly differently to the standard Grails/Hibernate stack, so that may not suit you - have a look at the plugin documenation.

link|improve this answer
I have thought about this. I've tried App Engine in the past with Python and Django. I had mixed experiences, as it's not based on SQL you get restrictions (jeff-schwartz.blogspot.com/2010/01/…) and the Python/Django version has a slow startup time which I think is worse with Java (code.google.com/p/googleappengine/issues/detail?id=2456). Gaelyk (gaelyk.appspot.com) looks more promising but that also has more limited functionality compared to Grails. – Chris Oct 13 '10 at 10:04
App Engine now allows you to pay to reserve instances [code.google.com/appengine/docs/adminconsole/… so this should remove the startup time problems. – Chris Jan 16 '11 at 22:02
Grails with the current version (1.3.6) is not compatible with GAE anymore. See stackoverflow.com/questions/4978879 for more details – fabien7474 Feb 13 '11 at 9:39
feedback

http://www.cloudbees.com/ and http://www.serverloft.de/cloud/ look very promising. At least, it seems that you can easily get a hosted tomcat with a DB into which you only have to drop your Grails .war-File.

link|improve this answer
feedback

Cloudify can on board Grails (or any other platform) on any cloud, using a simple recipe.

link|improve this answer
feedback

I managed to deploy a Grails application in a VPS with 512MB of memory but that was quite precarious and failed from time to time. Now I´m in a dedicated server account with 1G and works perfectly. I just use Tomcat as web server

link|improve this answer
I also saw problems on an EC2 Micro instance (613MB), at some point the app would just stop responding. – Josh Diehl Sep 13 '11 at 2:59
feedback

Amazon's new Elastic Beanstalk also looks very interesting. It has a base cost of 37USD

Elastic Beanstalk automatically handles the deployment details of capacity provisioning, load balancing, auto-scaling, and application health monitoring using existing Amazon web services (eg EC2 and S3)

link|improve this answer
just found this: malderhout.wordpress.com/2011/02/18/… – Ralf Mar 1 '11 at 9:39
feedback

JVM Host is a java-centric hosting company, and has a demo Grails deployment up. They have a 1GB RAM hosting plan for US $30/month that might be well-suited for a Grails app (like Jordi Cabot I've had trouble with Grails/Tomcat hosting memory less than 1GB).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.