any suggestions for huge data (db) requirements with heroku

2012-05-03 Thread Josh Coffman
Hi, I just did some data growth estimation for one of our apps in development. It's big, and currently hosted on heroku. Has anyone had to deal with a large amount of data for an app hosted on heroku. I'm talking about data growth of possibly multiple gigs per day. Thanks, Josh -- You receive

Re: Mixing java and rails in the same app

2012-05-03 Thread Daniel Huckstep
You could use a custom buildpack to install all the things relevant, but it's not "built in". - Daniel On Thu, May 3, 2012 at 12:10 PM, Ricardo Trindade < ricardo.silva.trind...@gmail.com> wrote: > Hi, > > I'm wondering if it is possible to mix java and ruby/rails processes > in the same Heroku

Re: Programmatic access to heroku with the Heroku Client gem

2012-05-03 Thread geemus
That does make sense. The way I usually do something like that is to set the rake task to just look for S3_BUCKET on my local machine as well and then each developer could just export the appropriate environment variable locally to make things work. You might want to namespace it a bit though,

Mixing java and rails in the same app

2012-05-03 Thread Ricardo Trindade
Hi, I'm wondering if it is possible to mix java and ruby/rails processes in the same Heroku App ? In my scenario I would need to schedule a taks in Rails, but the worker to complete it would be a Java app. Is this currently possible in Heroku ? regards, Ricardo -- You received this message bec

Re: Heroku Failure upon login

2012-05-03 Thread geemus
I need to dig around some more and find a way to build in this kind of functionality, but as a work around, if you open a new command prompt and type "chcp 1252" prior to running any commands it will switch command.exe to a compatible code page. That should prevent encoding errors of this type.

Re: Programmatic access to heroku with the Heroku Client gem

2012-05-03 Thread Daniel Doubrovkine
Take the example of a rake task that pushes a deployment to Heroku along with some S3 assets. Every developer has their own heroku application, and they configure it by creating a Heroku remote origin. To push to heroku a developer does do *git push heroku master*, then they need to push some asse