Re: New Postgress Plans

2012-08-06 Thread Oren Teich
All plans on Heroku are shared in one way or another. Even our biggest instances run on top of AWS, using their VMs. We've moved away from calling any of the databases dedicated, and instead focused on what you get. Identify how much cache you're looking for, and just choose the DB that fits.

Re: Heroku + remote database

2012-08-06 Thread Oren Teich
There is no single IP address you can restrict it to. Every request from Heroku may come from a different IP address. If you're running on EC2, you can use their security groups feature to open it to Heroku servers. https://devcenter.heroku.com/articles/external-services On Sun, Jul 29, 2012 at

Re: Heroku Access Through Firewall

2012-08-06 Thread Oren Teich
Due to our dynamic nature, there is no way to limit it to a small or single IP address. We automatically change IP addresses at various times due to load, performance, infrastructure changes, etc. This is a common design feature for cloud these days. Right now your CNAME setup will round-robin

Backed up approvals

2012-02-13 Thread Oren Teich
FYI, google groups is having issues, and we are unable to approve any pending messages. Existing members who have successfully emailed the list before should continue to work. New members who haven't posted are automatically held for spam moderation. Oren -- You received this message because

Re: Automatic restart of dynos every day?

2012-02-13 Thread Oren Teich
We restart dynos at least once every day, and sometimes more often. http://devcenter.heroku.com/articles/dyno-manifold#dyno_restarts You should see something in the logs however. If you don't see anything please drop support a ticket. Oren On Mon, Feb 6, 2012 at 9:07 AM, Guillaume Coderre

Re: Newb question on static assets

2012-01-28 Thread Oren Teich
resources I'd prefer that it didn't is because of the relatively recent Last-Modified headers coming from Varnish.  Is there a way to tie the Last-Modified header back to when we last deployed? Thanks, Carson On Jan 26, 10:22 pm, Oren Teich o...@heroku.com wrote: There are different types

Re: Added custom domain gives error that domain is owned by another user. Why?

2011-09-29 Thread Oren Teich
This means that some other app on heroku has your domain already. If you're using cloud app with cusomdomains, or some other piece of software you will run into this. Best bet is to submit a support ticket. Oren On Mon, Sep 19, 2011 at 3:18 PM, Turadg Aleahmad tur...@gmail.com wrote: Josh, was

Re: Is it possible to `git push` heroku config:add or just not restart the app?

2011-08-07 Thread Oren Teich
It's not documented because it's not an officially supported feature. It is strongly encouraged to not depend on env variables that you do not personally define. a git hook may get you what you want: http://www.kernel.org/pub/software/scm/git/docs/githooks.html Oren On Sun, Aug 7, 2011 at 8:04

Re: Official source to identify Heroku's SSH host key?

2011-06-21 Thread Oren Teich
Hi Todd, Great question. Posted a new devcenter article with the details here: http://devcenter.heroku.com/articles/git-repository-ssh-fingerprints Oren On Wed, Jun 15, 2011 at 9:59 AM, Todd A. Jacobs nos...@codegnome.org wrote: When attempting to push to Heroku from a new machine:    $ git

Re: Using MongoHQ or Cloudant for Audit Trails

2011-06-18 Thread Oren Teich
We launched replication into beta this week. We have many large customers using it already in production. Drop a note to b...@heroku.com and he can hook you up with the details. Oen On Fri, Jun 17, 2011 at 9:16 PM, Karl threadh...@gmail.com wrote: I have a client app that will be coming

Re: New Relic in a Rack app

2011-06-17 Thread Oren Teich
You can ignore that - it's saying we can't automatically install. You should still be setup with newrelic. Just make sure that your yml file is configured correctly with the ENV var for your key. Oren On Fri, Jun 17, 2011 at 4:12 AM, David Hall petters...@gmail.com wrote: I have read and

Re: 503 error when decreasing dynos

2011-05-12 Thread Oren Teich
I believe what's missing here is that thin is the process receiving the sigterm, and doesn't respond correctly. Instead of using sigterm as a notice to quit when it can, it treats sigterm as a -9 equivalent. This is a bug in older versions of thin. We've worked with the thin maintainers to get

Re: Git commands within app

2011-05-08 Thread Oren Teich
Hello, your app is not a git repo when running on Heroku. If you want to show some git based info, your best bet is to use a hook locally to write out the information to a file then send that up to Heroku. Oren On Sat, May 7, 2011 at 3:53 AM, Clément clmntlx...@gmail.com wrote: Hi, Does an

Re: strftime doesnt parse %N

2011-04-20 Thread Oren Teich
I believe this is a ruby 1.9.2 feature. Simply use the 1.9.2 bamboo stack. Oren On Wed, Apr 20, 2011 at 2:39 PM, sebastian greatful sebastianthegreat...@gmail.com wrote: On every other host then heroku I can pass %Y:%m:%d %H:%M:%S.%6N to strftime and it returns the expected result: 2011:04:14

Re: Limits for Memcache add-on

2011-04-20 Thread Oren Teich
There are no hard limits on the bandwidth usage with memcache. Oren On Wed, Apr 20, 2011 at 2:43 PM, Jaime A othello...@gmail.com wrote: While studying the different option for my project, I am starting to look at MemCache add-on - http://addons.heroku.com/ Are there any hard limits on the

Re: Dyno wake up processing

2011-03-08 Thread Oren Teich
Nothing exists between requests on the filesystem. If you need to persist something, you need to put it in a persistent store - memcache, S3, the database, etc. Oren On Tue, Mar 8, 2011 at 8:12 AM, Wes Gamble we...@att.net wrote: The files comprise a cache that needs to be there for the next

Re: Most popular (view counts), performance and Varnish cache

2011-03-01 Thread Oren Teich
There are many ways of doing this. Track page views with Google Analytics, and query every now and then to get your top app list. Will work with varnish. Track page views in your app via a javascript post onload. Will work with varnish. Track page views in your app. Won't work with varnish.

Re: Duplicate logging request with SSL

2011-02-28 Thread Oren Teich
This is normal. You can see the source of one is 127.0.0.1, that is us making a http request after terminating your https request. On Mon, Feb 28, 2011 at 1:39 AM, Andy Shipman a...@cllearview.com wrote: Hello there, Checking out the logs for my app, which runs over SSL, I have two lines for

Re: SSL only site Caching problem

2011-02-25 Thread Oren Teich
You can't use varnish caching and redirects. You can cache you stuff in memcache instead and then perform filtering in the app. Oren On Fri, Feb 25, 2011 at 7:01 AM, Cristiano cbe...@gmail.com wrote: I have a bit of a problem. I want my site to only work on SSL, so I have setup a

Re: Varnish http-cache post requests

2011-02-23 Thread Oren Teich
Varnish does not cache post requests. On Tue, Feb 22, 2011 at 5:08 PM, ryan ryanst...@gmail.com wrote: I have a facebook application in process and would really like to use the varnish http caching, however facebook makes all requests in an iframe post by default. Will varnish cache POST

Re: PGError: FATAL: sorry, too many clients already

2011-02-02 Thread Oren Teich
hi Jim, Actually we were on this around 10:15 last night. The mistake was that the on-call engineer decided not to update the status site immediately. Once he started working he got caught up, and our automated systems to remind us to update status weren't active since we hadn't posted an update

Re: Bundler was not upgraded fully

2011-02-02 Thread Oren Teich
try touching your Gemfile, rerunning bundle install locally to ensure you have a new Gemfile.lock, and pushing again. On Wed, Feb 2, 2011 at 7:40 PM, Vitaliy Khustochka xyc...@gmail.com wrote: Hi! In my app's Gemfile I have some option incompatible with old versions of Bundler, actually this

Re: Help getting app to start running?

2011-01-30 Thread Oren Teich
You seem to be missing whatever provides Digest. Does it run locally if you create a blank gem set in RVM (rvm create 1.9.2@blank - make sure you don't have default gems by running gem list in that gemset). Oren On Sun, Jan 30, 2011 at 9:56 AM, Jason Preston jasonp...@gmail.com wrote:

Re: getting the root of my domain pointed to proxy.heroku.com

2011-01-30 Thread Oren Teich
You can't - you need to setup A records. http://docs.heroku.com/custom-domains#dns-setup On Sun, Jan 30, 2011 at 10:10 AM, JDeville jeffdevi...@gmail.com wrote: This is really a dns question, but my provider isn't being very responsive. What dns record to I need to add, to make the root of

Re: Understanding DATABASE_URL vs. SHARED_DATABASE_URL

2011-01-25 Thread Oren Teich
the SHARED_DATABASE_URL is set because all apps on Heroku come with a share database. It is not used by itself. The DATABASE_URL is the URL used by all tools. You can ignore the SHARED_DATABASE_URL in this case. ORen On Tue, Jan 25, 2011 at 3:54 PM, Wes Gamble we...@att.net wrote: I have a

Re: Security vulnerability

2011-01-21 Thread Oren Teich
You do not need to take any action. Heroku will restart you app when we change the credentials automatically. Oren On Fri, Jan 21, 2011 at 9:42 AM, Neil Middleton neil.middle...@gmail.comwrote: Just reading the email regarding the fixed security vulnerability (If you've not got it yet, you

Re: Block On File Upload

2011-01-16 Thread Oren Teich
A dyno is the entire stack. A request, the second it hits Heroku, blocks a dyno. This could be because your application is processing, or because you are handling an upload. If you are doing decent size upload, you should have your app upload directly to S3. Oren On Sun, Jan 16, 2011 at 12:33

Re: 1 hour inactivity idling and http caching

2011-01-07 Thread Oren Teich
Your app may not be setting the cache headers correctly. If your resource is cached, it will never hit the dyno. If you look at the logs, a cached hit will show up in nginx, but nothing else (e.g. no web.1 process). If you see a web.1 request, then it isn't getting cached by varnish. The only

Re: How to debug code written for delayed_job?

2011-01-03 Thread Oren Teich
you need to use our new beta logging service ASAP. http://addons.heroku.com/logging http://addons.heroku.com/loggingOren On Mon, Jan 3, 2011 at 4:02 PM, Todd profes...@gmail.com wrote: I'm curious how people go about debugging code written for delayed_job. I originally had some code that

Re: Killing Cron Process?

2010-12-31 Thread Oren Teich
heroku restart should restart all of your process, including cron. you can also remove and add the add-on Oren On Wed, Dec 29, 2010 at 10:50 AM, Zach Bailey znbai...@gmail.com wrote: I have a long-running cron process as a result of an out of control task that I need to kill. Is it possible

Re: Wildcard subdomains with GoDaddy

2010-12-20 Thread Oren Teich
Add three more records for . or yourdomain.com. you need 6 if you're using wildcard - three for the wildcard, three for the root domain. Oren On Mon, Dec 20, 2010 at 11:15 AM, Barry Welch btwel...@gmail.com wrote: I am also having trouble with GoDaddy + Heroku with wildcard subdomains In my

Re: Heroku and custom domain with Dreamhost

2010-12-20 Thread Oren Teich
Wait 24 hours, and check again. DNS by its nature takes a while to get all around the internet. On Sun, Dec 19, 2010 at 7:29 PM, Braxo thoms...@gmail.com wrote: Hello, I register my domains at Dreamhost. I have an application on Heroku and I am trying to use a custom domain. I have added

Re: Best way to DB import 1M+ rows?

2010-12-10 Thread Oren Teich
If you have a dedicated database, you can use psql to read off the local filesystem. http://docs.heroku.com/heroku-postgresql#psql-console Alternatively, you can dump your data and then restore it. http://docs.heroku.com/pgbackups#import On Fri, Dec 10, 2010 at 10:51 AM, Zach Bailey

Re: Bundler / rails 2.3.5 - wrongly looking for dev gems in production

2010-11-22 Thread Oren Teich
Barry, You have a space in your config var. You need to use a : $ heroku config:add BUNDLE_WITHOUT=development:test Oren On Mon, Nov 22, 2010 at 3:23 PM, Barry Hoggard ba...@tristanmedia.com wrote: I'm not sure what you're asking?  I have this all working fine on a 3.0 Rails app, but for

Re: User White Label

2010-11-19 Thread Oren Teich
you need to register the domain with Heroku, and have the user setup their DNS to point to Heroku. e.g. either run heroku domains:add www.mydomain.com for each domain, or do that via api (look at the source to the gem to see the API call). You need to tell Heroku about each and every domain so we

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Oren Teich
Bundlr 1.0.3 changed the syntax for without. We are deploying a hotfix tomorrow. In the meantime, seperate the groups you don't want deployed with a : instead of a space. e.g. heroku config:add BUNDLER_WITHUOUT=development:test Oren On Mon, Nov 8, 2010 at 12:03 PM, Chris Hanks

Re: App Timeouts

2010-11-05 Thread Oren Teich
I've seen a few people with weird timeouts where the app owner was able to find out that it was a bug in their code. Anything from a weird SQL query locking a table that was hanging their process to API requests to other hard to track stuff. This gem (http://github.com/kch/rack-timeout) will

Re: Sendgrid questions

2010-10-29 Thread Oren Teich
If you exceed the quota with the add-on, sendgrid will start giving you authentication errors. To access the web interface, run heroku config grab the username/password, and login to sendgrid. Oren On Fri, Oct 29, 2010 at 12:09 PM, Russell Quinn m...@russellquinn.com wrote: * What happens if I

Re: heroku routing issues

2010-10-29 Thread Oren Teich
Paste the full output of your output from when you run it locally in production mode into a gist (gist.github.com) and paste that here. Oren On Fri, Oct 29, 2010 at 2:40 PM, Cris cristinarand...@gmail.com wrote: Hi there, thanks for the reply. The actions are defined in index of

Postmortem on Tuesday's outage

2010-10-27 Thread Oren Teich
We have posted a postmortem on Tuesday's outage on our blog: http://blog.heroku.com/archives/2010/10/27/tuesday_postmortem/ Oren -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com. To

Re: Sinatra 1.1

2010-10-26 Thread Oren Teich
Simply put it in your .gems or Gemfile and you'll be all set. Oren On Tue, Oct 26, 2010 at 5:58 AM, DAZ daz4...@gmail.com wrote: Hi, Sinatra upgraded to version 1.1 yesterday. Is this version available on Heroku and how do I update current apps that are using Sinatra to the new version?

Re: Unable to push application..

2010-10-26 Thread Oren Teich
http://status.heroku.com is the first place to check. We had a brief git push outage yesterday. Oren On Tue, Oct 26, 2010 at 12:07 AM, Hemal Kuntawala hemal.kuntaw...@gmail.com wrote: I got notifications around this time that just pinging our app took ages - might be a heroku thing. Tried this

Re: Sinatra 1.1

2010-10-26 Thread Oren Teich
...@gmail.com wrote: Thanks Oren, I changed my .gems file to say sinatra --version 1.1 instead of just sinatra Is there any way of forcing Heroku to always go and look for the latest gems without having to specify a version number? cheers, DAZ On Oct 26, 4:30 pm, Oren Teich o...@heroku.com

Re: Sinatra 1.1

2010-10-26 Thread Oren Teich
. So would I have to just change the .gems file with something trivial to 'force' an update? Or are you saying that best practice is to always specify version numbers? cheers, DAZ On Oct 26, 7:40 pm, Oren Teich o...@heroku.com wrote: By not specifiying a gem version we will always pull

Re: Outbound IP address

2010-10-24 Thread Oren Teich
To have outbound traffic come from a single IP you need to setup a 3rd party proxy, either on your own EC2 instance or using a 3rd party proxy provider. Oren On Fri, Oct 22, 2010 at 1:25 PM, Mike Doel m...@mikedoel.com wrote: I imagine this is in TFM somewhere, but my google skills are failing

Re: heroku_user

2010-10-24 Thread Oren Teich
That article references our old Heroku Garden platform. The current platform is based on standards, so your best bet is to use one of the libraries mentioned like Devise. Oren On Sun, Oct 24, 2010 at 1:34 PM, Abel Tamayo abel.tam...@gmail.com wrote: It looks like Heroku Users are used to

Re: Unable to install the fancybox rails plugin on heroku

2010-10-14 Thread Oren Teich
heroku plugins:install is for installing heroku client plugins. You want to use rails plugin install instead. Oren On Wed, Oct 13, 2010 at 9:57 PM, vishy shubhambansa...@gmail.com wrote: I am trying to install the plugin on a heroku app. The command heroku plugins:install

Re: Is there a maximum /tmp tempfile size?

2010-10-06 Thread Oren Teich
The file size limit is in the many gigs range. Clean up after yourself and you shouldn't have any problems. Workers are capped at the same memory limit. Oren On Tue, Oct 5, 2010 at 7:11 PM, mdgbayly martin.ba...@gmail.com wrote: I have a background job running as a worker that needs to

Re: Heroku Mongoid config and how it works

2010-09-30 Thread Oren Teich
Nope - the only thing an add-on does is set one config var - MONOGHQ_URL in this case. No other magic. Some add-ons like new relic will also install a gem or plugin, but mongo hq isn't one of them. Those are the only actions an add-on can take. Oren On Wed, Sep 29, 2010 at 7:55 PM, Bradley

Re: Heroku Mongoid config and how it works

2010-09-27 Thread Oren Teich
I'm not sure what's going on, but Heroku doesn't do any magic like that. When you add the mongohq addon, the only url that is set is the MONGOHQ_URL. I just tested it on one of my apps, added mongohq, and there is nothing set for MONGOID_*. Perhaps that's a feature that the mongoid gem itself

Re: Image upload - manipulation - copy to S3

2010-09-27 Thread Oren Teich
1) With Heroku I understand your request can have some temporary space for file uploads. Can I rely on that space to exist for a few minutes while a Delayed Job gets to it? The space is for the request. A delayed job will run as a seperate process, so no, you can't count on it being there.

Re: upload size limit?

2010-09-24 Thread Oren Teich
There is no hard limit - it's all the same 30 second time limit. No request can take 30 seconds. Oren On Fri, Sep 24, 2010 at 8:12 AM, marcel mpoi...@gmail.com wrote: I'm using PaperClip to crop and create thumbnails, with everything stored in S3. I'm just curious if there's any kind of hard

Re: Caching of /public files

2010-09-22 Thread Oren Teich
Heroku by default caches all static assets in /public for 24 hours. Oren On Wed, Sep 22, 2010 at 3:39 AM, Alex a...@heaton.me wrote: Sorry, I should have specified, the files stored in /public on rails for instance. These aren't managed by a controller (so no headers that way) and I was

Re: Caching of /public files

2010-09-22 Thread Oren Teich
to the docs? --Keenan On Sep 22, 2010, at 3:08 PM, Oren Teich o...@heroku.com wrote: Heroku by default caches all static assets in /public for 24 hours. Oren On Wed, Sep 22, 2010 at 3:39 AM, Alex a...@heaton.me wrote: Sorry, I should have specified, the files stored in /public on rails

Re: Zerigo MX records and GoDaddy Forwarders

2010-09-20 Thread Oren Teich
I'm not entirely clear on what you're trying to do. Are you looking for someplace to host email. e.g. you want f...@mydomain.com to go somewhere, and provide webmail/pop/imap type functionality? If yes, google apps for domains is the best way to go . Oren On Sat, Sep 18, 2010 at 10:31 AM,

Re: wonderful platform for app staging...

2010-09-20 Thread Oren Teich
The docs are cloneable. Edit away, and send a pull request. We're happy to incorporate great ideas! http://github.com/heroku/heroku-docs Oren On Mon, Sep 20, 2010 at 5:32 PM, Roy Wang dinoro...@gmail.com wrote: Yes, GitHub+Heroku is fantastic. If only Heroku had better documentation... Is

Re: Error when using memcached uninitialized constant Memcached (NameError)

2010-09-10 Thread Oren Teich
if you're using a gemfile, you don't want to have any config.gem directives. It's one or the other. Bundler replaces the way rails 2.3 handles gems. http://gembundler.com/rails23.html http://gembundler.com/rails23.htmlif oyu're using bundler, it's gem memcached-northscale, :require = memcache

Re: Error when using memcached uninitialized constant Memcached (NameError)

2010-09-10 Thread Oren Teich
: /disk1/home/slugs/283964_74b4131_849c/mnt/config/environments/ production.rb:33: uninitialized constant Memcached (NameError) Sorry, I don't know what to do . On Sep 10, 5:54 pm, Oren Teich o...@heroku.com wrote: if you're using a gemfile, you don't want to have any config.gem

Re: SSH Keys

2010-09-08 Thread Oren Teich
You need to add your keys from the command line with the heroku gem: heroku keys:add Oren On Wed, Sep 8, 2010 at 11:13 AM, Steven Garcia stevendgar...@gmail.comwrote: When I am added as a collaborator to a project I am unable to push or clone due to an error Permission denied (publickey).

Re: How to deploy app with sensitive config information?

2010-09-03 Thread Oren Teich
thanks for the note - docs updated. Oren On Fri, Sep 3, 2010 at 1:22 PM, marcel mpoi...@gmail.com wrote: heroku config truncates the values by default. If you want to quickly grab your S3 key or mongohq_url, use the secret --long parameter. It should really be in the documentation. heroku

Re: free vs. paid heroku app performance

2010-08-31 Thread Oren Teich
I don't really mind the sluggish spin up time. What I do mind is having slug compilation occasionally take 4+ hours instead of the normal 3 minutes. That means I can't show my boss the current state of Slug compile should never take that long. It sounds like a bug - we have noticed a few

Re: free vs. paid heroku app performance

2010-08-31 Thread Oren Teich
What is Heroku's timeout when spinning up dynos/workers? I thought that I'd seen this mentioned somewhere, but I can't find it now. I ask because an app I'm thinking of would need to hit external services and the database when starting up, which could take a while. 30 seconds. Is there

Re: EU bucket cost implications

2010-08-19 Thread Oren Teich
We are in US-EAST. On Thu, Aug 19, 2010 at 3:50 AM, Alex a...@heaton.me wrote: I don't actually know which of the locations Heroku runs from, perhaps someone from heroku can help us out. -- You received this message because you are subscribed to the Google Groups Heroku group. To post to

Re: NOTICE: Updating Bundler this week

2010-08-05 Thread Oren Teich
Bundler 1.0.0 RC2 is now deployed. On Sunday, August 1, 2010, Oren Teich o...@heroku.com wrote: On Tuesday August 3rd we will be updating Bundler to 1.0.0RC2.  Apps will continue to run unaffected.  Before you push an update, please double check that your app works correctly with the latest

Re: NOTICE: Updating Bundler this week

2010-08-03 Thread Oren Teich
interested in a status update ;-) On Aug 2, 12:33 am, Adrian Cuadros adrian.cuad...@gmail.com wrote: Great, Have been waiting a few days for this. Thanks :) On 1 ago, 20:29, Oren Teich o...@heroku.com wrote: On Tuesday August 3rd we will be updating Bundler to 1.0.0RC2. Apps

Re: Heroku console crashing

2010-08-02 Thread Oren Teich
Also check out http://github.com/ddollar/heroku-sql-console On Mon, Aug 2, 2010 at 9:15 AM, Jonathan jse...@gmail.com wrote: Running database transactions through this remote console setup is iffy...  It might work better to do a db:pull (ideally of just the tables you want to change), do the

NOTICE: Updating Bundler this week

2010-08-01 Thread Oren Teich
On Tuesday August 3rd we will be updating Bundler to 1.0.0RC2. Apps will continue to run unaffected. Before you push an update, please double check that your app works correctly with the latest version of Bundler. Some things to note: * Adding an add-on or a config var will recompile your

Re: Heroku console crashing

2010-08-01 Thread Oren Teich
That's how Heroku works - http://docs.heroku.com/performance#request-timeout. A console command is treated identically to a HTTP request. Oren On Sun, Aug 1, 2010 at 6:57 PM, Mike mikel...@gmail.com wrote: Okay, actually fixed this, sort of, by updating my heroku gem. Now it now longer

Re: How long are cron jobs allowed to run for?

2010-07-18 Thread Oren Teich
There is no hard limit currently. I'd suggest you not have them run for more than a few minutes. If you need to do longer work, have the cron job fire off a background task. Oren On Sat, Jul 17, 2010 at 5:57 PM, GarethLAtWork garethlatw...@gmail.comwrote: Does Heroku kill off cron jobs after

Re: alternative to pony

2010-07-09 Thread Oren Teich
Any reason you are trying to keep the slug size down? Anything under 50MB isn't a problem. Oren On Thu, Jul 8, 2010 at 1:27 PM, Shane sh...@digitalsanctum.com wrote: I just added pony to my app to send email and it added ~1.5MB to my slug size. Is there an alternative that's lighter?

Re: Can't use memcache with my application

2010-06-25 Thread Oren Teich
Just pushed an update for the northscale gem: http://github.com/heroku-examples/r3b4-memcache-heroku/commit/4fbc4f15dfa9f375b30325a62d9311a87cf07e7b Oren On Fri, Jun 25, 2010 at 4:11 AM, Neil Middleton neil.middle...@gmail.comwrote: I'm not sure if this is a related issue or not, but heroku

Re: git push heroku resets database each time

2010-06-25 Thread Oren Teich
It's because you have your enviornment set. That's a rails feature. Production doesn't do that. On Fri, Jun 25, 2010 at 12:22 AM, lsiden lsi...@gmail.com wrote: Each time I push my app to heroku, I notice that the database has been reset (emptied). Is this because I have environment=test

Re: Database importing very slow

2010-06-24 Thread Oren Teich
Are you running the latest version of taps (sudo gem update taps)? Is the primary key on your table an integer? http://blog.heroku.com/archives/2010/4/21/supporting_big_data_part_1/ On Thu, Jun 24, 2010 at 4:25 AM, Brad oconnor.b...@gmail.com wrote: Oops, I didn't say how slow. So far it's

Re: RMagick installation issues

2010-06-18 Thread Oren Teich
Migrate your app to the bamboo stack - http://docs.heroku.com/bamboo On Thu, Jun 17, 2010 at 10:20 PM, rcanand rcan...@gmail.com wrote: Hi, I am relatively new to rails/heroku, so this may be a noob question. I am trying to deploy a rails 2.3.5 project to heroku. This project requires the

Re: Rails 3 now 187 or 192 only

2010-06-11 Thread Oren Teich
We won't be supporting 1.9.2head before 1.9.2 is officially released.We work hard to provide a stable platform for commercial deployment, and 1.9.2 isn't there yet. We are investigating updating 1.8.7 to the latest REE patch level to address the crashing 1.8.7 issue. Oren On Fri, Jun 11,

Re: Missing the Rails 2.3.5 gem.

2010-06-02 Thread Oren Teich
This problem is detailed here: http://blog.heroku.com/archives/2010/5/25/rails_2_3_6_dependency_issues/ Oren On Wed, Jun 2, 2010 at 3:04 PM, giorgio george.pever...@gmail.com wrote: I get the same message but I dont understand your solution! I have in my Gemfile: gem rails, = 2.3.5,

Re: Reduce heroku compiled slug size

2010-05-31 Thread Oren Teich
Don't worry about it. Bamboo has larger slug size due to incorporating everything into your slug. Slug size is the sum of all your gems that's installed plus your application. If you're under 100MB, you're fine. Oren On Wed, May 26, 2010 at 2:23 AM, Estanislau Trepat etre...@gmail.comwrote:

Re: Varnish cache purging

2010-05-22 Thread Oren Teich
That's wrong. I'll fix the docs. The only way to flush varnish right now is to do a fresh git push. Oren On Sat, May 22, 2010 at 5:05 AM, Daniele to...@vitamino.it wrote: Hi, in the Heroku docs (http://docs.heroku.com/http-caching) I read: Pressing shift-reload in the browser will cue the

Re: Monitoring Memcached

2010-05-12 Thread Oren Teich
At this point you can't. Northscale is working on expanding their add-on to offer this type of functionality. Oren On Tue, May 11, 2010 at 2:21 AM, Neil neil.middle...@gmail.com wrote: I'm just wondering how you would go about monitoring your memcache usage/stats for a given application.

Re: Monitoring Memcached

2010-05-12 Thread Oren Teich
Just heard back from Northscale. The stats command does work. --- The stats command works and gives per-bucket stats right now, provided the memcached connection is authenticated, so users should be able to get their own real-time stats already if they know how to use it. There are some

Familiar with Azure and willing to talk to the press?

2010-05-07 Thread Oren Teich
I have a reporter asking us for a user of Heroku who has also used Azure, and can comment on the two. anyone fit that description and willing to talk to the press? Oren -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email

Re: IP Address Range

2010-05-02 Thread Oren Teich
Unfortunately no. We spin up and down new machines on a daily basis as load changes. Each time we do that, they get a different IP address. Your dynos dynamically move across the machines, so it's impossible to know a source IP address, or even a range beyond the entirety of amazon's address

Re: Bug report?: New Relic Bronze Add On having issues on mri-1.9.1 and with Rails 3.0.0.beta2

2010-04-28 Thread Oren Teich
new relic doesn't support rails 3. On Wed, Apr 28, 2010 at 1:45 AM, Daryl daryl.mann...@gmail.com wrote: Something to check. Adding it in borked my app with no failure messages in heroku logs but removing it brought it back to normal. Have left it out for now. Too bad. It's nice... =] ciao

Re: Database timeouts

2010-04-23 Thread Oren Teich
Sorry guys, it's been a busy few days here. We have been making improvements to our infrastructure to address this. Hopefully no one is seeing any more timeouts after yesterday. If you are, reply back and let us know. Oren On Fri, Apr 23, 2010 at 10:06 AM, djangst djan...@gmail.com wrote:

Re: What logs get stored by heroku?

2010-04-19 Thread Oren Teich
we store only ncsa style logs. We don't even store your output from heroku logs - hence only 100 lines. Oren On Mon, Apr 19, 2010 at 1:20 AM, Alex a...@heaton.me wrote: I've got a little sinatra password generating application that I'm confident is secure, but I wanted to make sure no

Re: Default index page on Heroku server

2010-04-19 Thread Oren Teich
Did you remove public/index.html? Oren On Mon, Apr 19, 2010 at 4:15 PM, Brett brett.huneyc...@gmail.com wrote: Hi all, I'm having a problem with the default index page on an app I've recently uploaded to http://lebronandkobe2.heroku.com. I want my custom signatures controller to appear

Re: Slug size and websolr-sunspot_rails

2010-04-14 Thread Oren Teich
your slug limit is 100mb. If you see somewhere saying 20mb, that's a bug. Can you let me know where you saw it so we can update it? Oren 2010/4/12 Tomaž Žlender tomaz.zlen...@gmail.com Hello, slug size of my git repo jumped from 1.9 MB to 21 MB when I added -- version 1.0.3.2 --source

Re: RMagick on bamboo-ree-1.8.7

2010-04-11 Thread Oren Teich
I don't think bundler uses version. Simply say gem rmagick, 2.12.2 Oren On Sun, Apr 11, 2010 at 4:38 AM, railsnerd rails.n...@gmail.com wrote: Hi there RMagick does not seem to be installed on bamboo-ree-1.8.7 If I do require 'RMagick' at the console it is not found. Are there plans

Looking for a Northscale memcache reference

2010-04-06 Thread Oren Teich
Hi there, We're getting ready to announce the relationship with northscale. As part of the press activity, we'd like to get a quote from an app using the service. If you're using northscale in a decent way (no hello world apps), and can provide a quote, please contact me directly. Thanks, Oren

Re: sass_on_heroku / hassle

2010-03-27 Thread Oren Teich
on the hassle github page. Do you know if Hassle is advised to used by Heroku? The page and the information on Heroku website seem to be 'outdated'. Heroku.com still mentions sass_on_heroku but it's github page says it's deprecated for pedro's Hassle. Cheers, Marcel On Mar 26, 6:40 pm, Oren

Re: sass_on_heroku / hassle

2010-03-26 Thread Oren Teich
hassle stores the stylesheets in varnish, cached for all dynos. Oren On Fri, Mar 26, 2010 at 6:30 AM, Marcel Overdijk marceloverd...@gmail.comwrote: As I understand sass_on_heroku or better hassle can be used to compile sass stylesheets to the /tmp folder on Heroku. I'm wondering what the

Re: bundler requires RubyGems version = 1.3.6 Errors while deploying a rails 3 app

2010-03-25 Thread Oren Teich
are you running on the bamboo stack? run heroku stack to see which stack it's set to. Oren On Thu, Mar 25, 2010 at 11:33 AM, Nathan Clark nathanclar...@gmail.comwrote: Hi, I was trying to deploy a sample rails 3 app. I follow the rails 3 document. I followed this as well

Re: Excluding development dependencies with Bundler

2010-03-25 Thread Oren Teich
From talks with the bundler team, they won't be ditching this anytime soon. Ben, How big is your slug? If it's 30 or 40MB, I wouldn't worry about it. Oren On Thu, Mar 25, 2010 at 1:13 PM, Pedro Belo pe...@heroku.com wrote: Hi Ben, Last time I checked Bundler would always download gems,

Looking for big data sets - improving data handling

2010-03-17 Thread Oren Teich
Hi all, we're in the process of improving our data handling, extending taps to make sure it supports bigger data sets of 10GB or larger. To make sure we're covering the right situations, I'm looking for people who have big databases that they can share with us to test with. We'll destroy the

Re: Heroku technical questions

2010-03-15 Thread Oren Teich
at this time. [/QUOTE] However, my app would still not start at Mar 14, 2010 - 4:25 UTC. That sounds odd for sure. In the future, make sure to submit a ticket if you're seeing errors. We had no other reports that I'm aware of. It's possible you got unlucky somehow. So, what exactly

Re: Heroku technical questions

2010-03-15 Thread Oren Teich
on it within 5 minutes. Oren On Mon, Mar 15, 2010 at 9:44 AM, Oren Teich o...@heroku.com wrote: at this time. [/QUOTE] However, my app would still not start at Mar 14, 2010 - 4:25 UTC. That sounds odd for sure. In the future, make sure to submit a ticket if you're seeing errors. We had

Re: Heroku technical questions

2010-03-15 Thread Oren Teich
on it within 5 minutes. Oren On Mon, Mar 15, 2010 at 9:44 AM, Oren Teich o...@heroku.com wrote: at this time. [/QUOTE] However, my app would still not start at Mar 14, 2010 - 4:25 UTC. That sounds odd for sure. In the future, make sure to submit a ticket if you're seeing errors. We had

Memcache is now in public beta

2010-03-12 Thread Oren Teich
Hi guys, we'll be putting a blog post up March 16th, but wanted to give you a heads up. Memcached is now in public beta. It's free while in beta, during which time we're making sure we've quashed all the bugs and analyzing usage patterns. Full docs on how to use it is here:

Re: Memcache is now in public beta

2010-03-12 Thread Oren Teich
is for memcached? -Terence On Fri, 2010-03-12 at 13:33 -0800, Oren Teich wrote: Hi guys, we'll be putting a blog post up March 16th, but wanted to give you a heads up. Memcached is now in public beta. It's free while in beta, during which time we're making sure we've quashed all the bugs

Re: Rails gem missing by default in Bamboo REE 1.8.7 stack

2010-03-12 Thread Oren Teich
there are no gems at all installed on bamboo. The boot process requires the gem. Is there a reason you vendored the gem? Why not just pin the version in your .gems file instead? Oren On Fri, Mar 12, 2010 at 6:42 PM, Arun Thampi arun.tha...@gmail.com wrote: Hi guys - I tried migrating my

  1   2   >