2012年09月レンタル鯖7: 【ヘロク】 Heroku Part1 【PostgreSQL】 (577) TOP カテ一覧 スレ一覧 2ch元 削除依頼
【GMO】ロケットネットについて語ろう (268)
鯖ダウンを愚痴るスレッド part3 (656)
CORESERVER.JP Part24 (539)
■独自ドメインの使える共有レンタルサーバ2■ (619)
AZAReA (233)
海外VPSプランってどうよ?9 (919)

【ヘロク】 Heroku Part1 【PostgreSQL】


1 :2012/02/16 〜 最終レス :2012/11/02

http://www.heroku.com/
https://postgres.heroku.com/
http://addons.heroku.com/
http://devcenter.heroku.com/articles/using-the-cli
https://github.com/heroku
http://blog.heroku.com/
https://twitter.com/#!/heroku
https://status.heroku.com/
https://twitter.com/#!/herokustatus
http://www.facebook.com/herokujp
http://groups.google.com/group/heroku-ja
http://groups.google.com/group/heroku/

2 :
ruby
http://find.2ch.net/?STR=ruby
【RoR】Ruby on Rails Part13
http://kohada.2ch.net/test/read.cgi/php/1320393984/l50

3 :
なぜ今頃突然に

4 :
Migrating to the Celadon Cedar Stack | Heroku Dev Center
http://devcenter.heroku.com/articles/cedar-migration

5 :
http://devcenter.heroku.com/articles/rails3
http://devcenter.heroku.com/articles/rails31_heroku_cedar
http://devcenter.heroku.com/articles/rails3x-asset-pipeline-cedar
http://stackoverflow.com/questions/tagged/heroku
http://railsapps.github.com/rails-heroku-tutorial.html
http://blog.heroku.com/archives/2011/5/31/celadon_cedar/

6 :
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50

7 :
https://twitter.com/#!/search/heroku
https://twitter.com/#!/cloooote

8 :

http://www.iron.io/
http://docs.iron.io/worker
https://addons.heroku.com/iron_worker


9 :
http://b.hatena.ne.jp/t/heroku?sort=eid
http://b.hatena.ne.jp/t/heroku

10 :
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
http://rubydoc.info/gems/ar-octopus/frames
https://github.com/tchandy/octopus
https://www.ruby-toolbox.com/categories/Active_Record_Sharding


11 :
https://github.com/mperham/data_fabric
https://github.com/kovyrin/db-charmer
https://github.com/technoweenie/masochism
https://github.com/tchandy/octopus
https://github.com/schoefmax/multi_db
https://github.com/mixonic/ShardTheLove



12 :
Twitterのトラブルから見る、DB分割でスケーラブルなRailsサイト構築:TKMR.blog.show
http://blog.tkmr.org/tatsuya/show/311-twitter-db-rails
Magic Multi-Connections: A “facility in Rails to talk to more than one database at a time”
http://drnicwilliams.com/2007/04/12/magic-multi-connections-a-facility-in-rails-to-talk-to-more-than-one-database-at-a-time/
ActsAsReadonlyable
http://revolutiononrails.blogspot.com/2007/04/plugin-release-actsasreadonlyable.html
https://github.com/masarakki/acts_as_multi_connection
https://github.com/tchandy/octopus
https://github.com/kovyrin/db-charmer
https://github.com/mperham/data_fabric
https://www.ruby-toolbox.com/categories/Active_Record_Sharding

13 :
acts_as_readonlyable
http://revolutiononrails.blogspot.com/2007/04/plugin-release-actsasreadonlyable.html
http://drnicwilliams.com/2007/04/12/magic-multi-connections-a-facility-in-rails-to-talk-to-more-than-one-database-at-a-time/
octopus
Database Sharding for ActiveRecord
https://github.com/tchandy/octopus
User.where(:name => "Thiago").limit(3).using(:slave_one)
Octopus.using(:slave_two) do
User.create(:name => "Mike")
end
Database sharding and Rails - Stack Overflow
http://stackoverflow.com/questions/44145/database-sharding-and-rails

14 :
https://github.com/runeleaf/acts_as_readonlyable


15 :
ActiveRecord の find(id) と find_by_id(id) の違い
http://higelog.brassworks.jp/?p=71

16 :
https://github.com/tchandy/octopus/wiki/Sharding
https://github.com/tchandy/octopus
class ApplicationController < ActionController::Base
around_filter :select_shard
def select_shard(&block)
Octopus.using(current_user.country, &block)
end
end
https://github.com/mperham/data_fabric
class ApplicationController < ActionController::Base
around_filter :select_shard
private
def select_shard(&block)
DataFabric.activate_shard(:city => @current_user.city, &block)
end
end

17 :
ActiveRecord の find(id) と find_by_id(id) の違い
レコードが見つからなかったとき
find(id) 例外が発生する
find_by_id(id) nil が返る
http://higelog.brassworks.jp/?p=71


18 :
Comment.find_all_by_id([2, 3, 5])
http://stackoverflow.com/questions/1441791/how-to-select-where-id-in-array-rails-activerecord-without-exception

19 :
http://partitioned.rubyforge.org/

20 :

octopus
Database Sharding for ActiveRecord
https://github.com/tchandy/octopus
https://github.com/tchandy/octopus/wiki/config-file
https://github.com/tchandy/octopus/wiki/Sharding
ar-octopus
http://gendosu.jp/archives/1037



21 :
http://www.sssg.org/blogs/naoya/archives/1989
http://blog.agoragames.com/blog/2010/01/29/getting-started-with-data_fabric/
class ApplicationController < ActionController::Base
around_filter :select_shard
private
def select_shard(&block)
DataFabric.activate_shard(:city => @current_user.city, &block)
end
end
https://github.com/fiveruns/data_fabric/blob/ee9ec728686613acb58f0bcc482c179703c24ded/README.rdoc
http://rubydoc.info/gems/data_fabric/1.3.3/file/README.rdoc

22 :
#{group}_#{shard}_#{environment} - sharding, no replication, e.g. “city_austin_production”
data_fabric :replicated => true, :shard_by => :city
https://github.com/mperham/data_fabric
class ApplicationController < ActionController::Base
around_filter :select_shard
private
def select_shard(&block)
DataFabric.activate_shard(:city => @current_user.city, &block)
end
end

23 :
Amazon.co.jp: Heroku Cedar: Jurg van Vliet, Flavia Paganelli, Jasper Geurtsen, Matti Paksula, Att.. 
http://www.amazon.co.jp/gp/product/1449319637

24 :
RoR Wiki 翻訳 Wiki - HowtoUseMultipleDatabases
http://web.archive.org/web/20070217161907/http://techno.hippy.jp/rorwiki/?HowtoUseMultipleDatabases
やむにやまれず:ActiveRecordで異なる複数のDBへ接続しにいく方法
http://blog.livedoor.jp/sparklegate/archives/50376930.html
[Ruby] ActiveRecord で複数のデータベースに接続する方法 « messaliberty 日本語
http://jp.messaliberty.com/2009/02/ruby-how-to-use-multiple-databases-with-activerecord/

25 :
https://github.com/engineyard/datafabric-example/blob/master/app/controllers/application_controller.rb
https://github.com/engineyard/datafabric-example/blob/master/app/controllers/accounts_controller.rb
https://github.com/engineyard/datafabric-example/blob/master/app/controllers/figments_controller.rb

26 :
Master-Slave clusters to scale out your Rails models reads.
Vertical sharding by moving some of your models to a separate (maybe even dedicated) servers and still keep using AR associations
Horizontal sharding by slicing your models data to pieces and placing those pieces into different databases and/or servers.
http://kovyrin.net/2010/04/16/dbcharmer-rails-can-scale/
https://github.com/kovyrin/db-charmer
http://kovyrin.github.com/db-charmer/

27 :
http://groups.google.com/group/db-charmer

28 :
http://kovyrin.github.com/db-charmer/#migrations

29 :


>>10


30 :
http://rubydoc.info/gems/data_fabric/frames

31 :
https://github.com/schoefmax/multi_db
http://firn.jp/2010/07/19/rails_multi_db

32 :

【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
http://rubydoc.info/gems/ar-octopus/frames
https://github.com/tchandy/octopus
https://github.com/kovyrin/db-charmer
https://github.com/mperham/data_fabric
https://www.ruby-toolbox.com/categories/Active_Record_Sharding

33 :
HerokuでWebアプリ開発を始めるなら知っておきたいこと (10)参考リンク集 - アインシュタインの電話番号☎
http://d.hatena.ne.jp/ruedap/20110508/ruby_heroku_web_app_development_tips_10

34 :
何このスレ

35 :
>>24
HowtoUseMultipleDatabases in Ruby on Rails
http://oldwiki.rubyonrails.org/rails/pages/HowtoUseMultipleDatabases
http://kadoppe.com/archives/2011/12/rails-activerecord-warning-cant-mass-assign-protected-attributes-type.html
http://d.hatena.ne.jp/rudeboyjet/20101221/p1
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50

36 :
https://github.com/Dashwire/active_shard

37 :
個人でちょっとしたアプリ作って公開するには、無料分だとちょっとDBの容量が心もとなくない?
ただ20GBの共有データベースに課金するぐらいなら、VPS使った方が良くないかな?
個人的に使うアプリを色々と置かせてもらってるので、Herokuは好きなんだけど・・・
それともなんか他に良いやり方あるかな?

38 :
Get up and running in minutes, and deploy instantly with git.
Focus 100% on your code, and never think about servers
http://www.heroku.com/
ヒト、モノ、カネは有限
選択と集中

39 :
Herokuはつかえない。最初は良かったけど結局は高くつく。
さくらとか、カゴヤとかのレンサバの方が百倍マシ。

40 :
ケーススタディ11 初期の成功を放棄し、スケールするためのPivotとは?Herokuの場合 | "Lean Startup Japan"
Herokuは2011年1月にSalesforce.comに2億1200万ドル(約172億円!!)で買収されました。
彼らは「さらなる集中」の必要性に気づきます。
そこでの選択は「Webエディタ機能の放棄」でした。
http://leanstartupjapan.org/?p=237

41 :
クラウド型ストレージ「Amazon S3」は安いか? − @IT
1つはデータの冗長構成についてで、
Amazonは地理的に離れた最低2つのデータセンターにまたがって3重の冗長度でデータを保持している。
自前で同様のことをするには、RAID構成のストレージを2つのデータセンターに置き、それらの間でリアルタイムのレプリケーションを行う必要がある。
http://www.atmarkit.co.jp/news/200901/09/s3.html

42 :
HerokuがPostgreSQLのDatabase-as-a-Serviceを開始。しかし料金表がおかしいぞ − Publickey
If a meteor were to wipe out the east coast, you won’t lose your data.
もしも宇宙からの隕石で米東海岸が壊滅しても、データが失われることはありません。
http://www.publickey1.jp/blog/11/herokupostgresqldatabase-as-a-service.html

43 :
Heroku Postgresを触ってみた PostgreSQL Advent Calendar #2 - 象と戯れ - postgresqlグループ
http://postgresql.g.hatena.ne.jp/umitanuki/20111202/1322810909
https://postgres.heroku.com/
http://www.heroku.com/

44 :

このぐらいの性能でレプリケーション、バックアップ、リストア、ログ管理等等を
全く気にしなくていいとすれば、
月200でサーバ+DBAなんか雇えないわけで、十分ペイする気がします。
http://postgresql.g.hatena.ne.jp/umitanuki/20111202/1322810909


45 :
https://github.com/alexkazeko/faye_shards
http://rails-alex.blogspot.com/2011/10/ssl-support-for-high-loaded-faye-nodejs.html

46 :
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50

47 :
PostgreSQL 9.1 Now Default
https://postgres.heroku.com/blog/past/2012/3/1/postgresql_91_now_default/

48 :

http://ja.wikipedia.org/wiki/TCO
TCO (Total Cost of Ownership) とは「総保有コスト」のことで、ある設備などの資産に関する、購入から廃棄までに必要な時間と支出の総計。
予算を作成し要求する際、ランニングコスト(保守・運用・維持等のための費用、例として設備・システムなどのメンテナンス、
有償の更新、管理のための人件費、光熱費など)のために必要な経費を考慮に入れず、
初期投資額(イニシャルコスト)だけに注目しがちである。
TCOはそれらをトータルに含めた経費で、実際に支出すべき金銭の全額にあたる。

49 :
【test-unit】RSpec【minitest】
http://kohada.2ch.net/test/read.cgi/php/1330647705/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50


50 :
http://www.postgresql.org/docs/9.0/static/app-psql.html

51 :
$ gem install mysql2postgres

52 :
http://devcenter.heroku.com/articles/heroku-postgres-documentation
Fork (beta)
Forking creates a new database containing a snapshot
of an existing database at the current point in time.
Forked databases do not stay up-to-date with the original database and are writable.
Follow (beta)
Followers are read-only and stay stay up-to-date
with the changes to your database.


53 :
Heroku PG Backups
http://devcenter.heroku.com/articles/pgbackups

54 :
Automatic monthly snapshots (i.e. backups) are automatically enabled for standalone databases.
They must be manually enabled when database are provisioned as an add-on.
Standalone databases do not appear through our command-line client.
http://devcenter.heroku.com/articles/differences-standalone-vs-addons-database

55 :
https://addons.heroku.com/pgbackups

56 :
https://postgres.heroku.com/databases


57 :
Restoring from a Backup
http://devcenter.heroku.com/articles/pgbackups#restoring_from_a_backup

58 :
fork
分岐
http://dic.yahoo.co.jp/dsearch?p=fork&enc=UTF-8&stype=0&dtype=1

59 :
【test-unit】RSpec【minitest】
http://kohada.2ch.net/test/read.cgi/php/1330647705/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
https://postgres.heroku.com/databases

60 :
http://www.heroscale.com/
http://twitter.com/heroscale


61 :

scaling scheduler for heroku dynos/workers
http://rubygems.org/gems/heroku_scale_scheduler


62 :

TASK FREQUENCY
heroku:scale:dynos Every 10 minutes
heroku:scale:workers Every 10 minutes
http://rubydoc.info/gems/heroku_scale_scheduler/0.0.2/frames

63 :
https://github.com/hsbt/heroku_scale_scheduler
https://github.com/railsjedi/heroku-rails

64 :
https://github.com/fastestforward/heroku_san

65 :

Heroku | Nezumi 2.0 for Managing Heroku Apps 'on-the-go' Now Available for iPhone
http://blog.heroku.com/archives/2012/2/21/nezumi-2-for-iphone/
http://itunes.apple.com/us/app/nezumi/id346715875?mt=8

66 :
https://github.com/hsbt/heroku-invoice

67 :
Heroku Toolbelt  
https://toolbelt.herokuapp.com/

68 :
みんさん、英語よめるの?すげー

69 :
Ruby on Railsが簡単というのは嘘 - 30 to 30
http://toyoshi.hatenablog.com/entry/2012/03/09/143753
Rails Hub情報局: 素人がWebサービスを作ってみて分かった9つのこと
http://el.jibun.atmarkit.co.jp/rails/2011/09/web9-1e8b.html


70 :
Heroku app drops initial requests
http://stackoverflow.com/questions/4909651/heroku-app-drops-initial-requests
Keep Heroku 1 dyno instance always alive [closed]
http://stackoverflow.com/questions/4297543/keep-heroku-1-dyno-instance-always-alive

71 :
How many simultaneous connections will a shared database on Heroku allow? - Quora
You should be safe with up to around 20 connections.
http://www.quora.com/How-many-simultaneous-connections-will-a-shared-database-on-Heroku-allow

72 :
https://addons.heroku.com/heroku-shared-postgresql
20 connections
Ingress support

73 :
>>71-72
既存のShared Database 20GBと比較して、これはどういう位置付けになるんだろ?

74 :
プラン      ronin     fugu ika zilla baku mecha
接続コネクション数 16 20 50 100 200 400
http://thinkit.co.jp/story/2011/03/23/2060?page=0,1
http://blog.heroku.com/archives/2010/11/4/heroku_postgresql/

75 :
さくらvps
http://d.hatena.ne.jp/kaosf/20111214/1323876555

76 :
heroku addons:add heroku-shared-postgresql:basic

77 :
Outside Connections
In addition to being available to the Heroku runtime,
databases can be accessed directly by clients running elsewhere.
All connections require SSL.
http://devcenter.heroku.com/articles/heroku-shared-postgresql
http://devcenter.heroku.com/articles/labs-heroku-shared-postgresql

78 :
さくらのVPS http://vps.sakura.ad.jp
Cloudcore http://cloudcore.jp
Serversman http://serversman.jp

79 :
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50


80 :
SonicGardenにおけるherokuでのサービス運用構成 - blog.mah-lab.com
http://blog.mah-lab.com/2012/03/12/sonicgarden-heroku/

81 :
Herokuで定期バックアップを無料で簡単に取得する方法 - スモールスタート
http://blog.mat-aki.net/heroku-easy-free-daily-backup
mataki/heroku_backup_task - GitHub
https://github.com/mataki/heroku_backup_task

82 :
heroku addons:add heroku-shared-postgresql:basic
heroku addons:add ssl:piggyback
heroku addons:add scheduler:standard
heroku addons:add mailgun:starter
heroku addons:add cron:daily
heroku config:add AWS_S3_SECRET_KEY="xxxx" AWS_S3_KEY_ID="xxxx" BACKUP_BACKET="backet-name"
https://github.com/mataki/heroku_backup_task

83 :
アプリのDBデータを別アプリにリストアする方法 - よかろうもん!
http://d.hatena.ne.jp/interu/20120313/1331633642

84 :
Why Startups Need Automated Infrastructures
http://www.slideshare.net/adamhjk/why-startups-need-automated-infrastructures

85 :
groongaに対応してくれないかな…

86 :
Introducing key/value data storage in Heroku Postgres
https://postgres.heroku.com/blog/past/2012/3/14/introducing_keyvalue_data_storage_in_heroku_postgres/

87 :

heroku/hstore_example
http://hstoredemo.herokuapp.com/
https://github.com/heroku/hstore_example
NoSQL with Postgres - Using Hstore in Rails - YouTube
http://www.youtube.com/watch?v=trycX7CL2A0

88 :
Bonsai ElasticSearch
Fulltext search that celebrates craftsmanship
https://addons.heroku.com/bonsai

89 :
https://status.heroku.com/

90 :

Heroku | Add-ons
https://addons.heroku.com/mwiki

91 :
MemCachier
Give your database a break with a scalable in-memory cache.
https://addons.heroku.com/memcachier
RoboWhois
Query WHOIS records and check domain availability with a unified, consistent API direcly from your app.
https://addons.heroku.com/robowhois

92 :
ruby on rails - Easy way to prevent Heroku idling? - Stack Overflow
http://stackoverflow.com/questions/5480337/easy-way-to-prevent-heroku-idling
heroku addons:add newrelic:standard
https://addons.heroku.com/newrelic
http://pingdom.com/


93 :
What is dyno idling? | Heroku Dev Center
http://devcenter.heroku.com/articles/dyno-idling
Heroku | Dev Center | The Dyno Manifold
http://devcenter.heroku.com/articles/dyno-manifold
http://devcenter.heroku.com/articles/dynos#frequently-asked-questions

94 :

http://groups.google.com/group/heroku/browse_thread/thread/9f1a5d7d677fb4dc
You can install the free New Relic add-on.
It has an availability monitor feature that will ping your site twice per minute,
thus preventing the dyno from idling.
http://stackoverflow.com/questions/5480337/easy-way-to-prevent-heroku-idling

Apps that have only 1 web dyno will be idled out after one hour of inactivity.
Apps that have more than 1 web dyno are never idled out. Workers dynos are never idled out.
http://devcenter.heroku.com/articles/dyno-idling

95 :
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50
【RoR】Ruby on Rails Part14
http://kohada.2ch.net/test/read.cgi/php/1329492840/l50

96 :
クラウド上の(多言語)統合開発環境Kodingが$2Mを調達–グローバルな開発コラボが可能に
http://jp.techcrunch.com/archives/20120315koding/
Welcome to Koding. A new way for developers to get work done.
http://koding.com/
Cloud9 IDE - Ajax.org
http://c9.io/

97 :

Node.jsを手軽に試せるJavaScript統合開発環境「Cloud9 IDE」、クラウドでの提供開始 − Publickey
http://www.publickey1.jp/blog/11/nodejsjavascriptcloud9_ide.html
Cloud9 IDE is an online development environment for
Javascript and Node.js applications as well as
HTML, CSS, PHP, Java, Ruby and 23 other languages.
http://c9.io/

98 :
Reduce Server Deployment Cycles with Heroku - YouTube
http://www.youtube.com/watch?v=YbXiIjJffHk

99 :
5分でリリースできるRailsアプリ on Heroku
http://www.youtube.com/watch?v=m0BD7RwbNc0

100 :
Custom Error Pages | Add-ons | Heroku
https://addons.heroku.com/custom_error_pages

101 :
注目のPaaSを一挙に紹介! 〜Cloud Foundry、OpenShift、Herokuなど − TechTargetジャパン クラウド&SaaS
http://techtarget.itmedia.co.jp/tt/news/1203/21/news02.html

102 :
クラウド・ロックイン
http://dev.classmethod.jp/cloud/libclou/
http://libcloud.apache.org/supported_providers.html

103 :
Heroku | Dev Center | Inspecting Heroku Processes
http://devcenter.heroku.com/articles/ps

104 :
http://twitter.com/heroscale
http://www.heroscale.com/


105 :
http://www.youtube.com/watch?v=xncByKPU7Dw
消される前に

106 :
Amazonクラウド、PHP対応PaaS機能を追加。Gitによるデプロイも可能に − Publickey
http://www.publickey1.jp/blog/12/amazonphppaasgit.html

107 :
HerokuでFacebookアプリを運用しよう « ノーティス
http://www.notice.co.jp/archives/1189

108 :
DocRaptor
Painless pdf and excel file creation
https://addons.heroku.com/docraptor

109 :
http://ruby.heroku.com/

110 :
待望のPostgreSQL 9.2は大幅性能アップするのか?(1/2) − @IT
http://www.atmarkit.co.jp/fdb/rensai/dbwatch2012/dbwatch201203_01.html

111 :
http://twitter.com/#!/search/%23rails_q

112 :
https://www.parse.com/

モバイルアプリのサーバサイド/バックエンドを肩代わりする人気のParseがベータを卒業
http://jp.techcrunch.com/archives/20120326parse-beta/

113 :
Rails Hub情報局: Rubyはイノベーション言語として選ばれている
http://el.jibun.atmarkit.co.jp/rails/2012/03/ruby-3574.html

114 :
InfoQ: Herokuはどうやって高可用性を確保しているか - QCon Londonの発表から
http://www.infoq.com/jp/news/2012/03/heroku-high-availability-qcon

115 :
マスタ/スレーブの冗長化の基本は4台1セット
http://d.hatena.ne.jp/uncafe/20110919
月間57億PV、300台のサーバを運用するミツバチワークスが編み出したインフラ技術
データベースのレプリケーション(複製)では、slaveに最低3台のサーバを適用している。
http://jibun.atmarkit.co.jp/ad/comp/112mitsu/01.html


116 :
EC2はサーバーを停止するとデータが消える 2年以上も前の話です。。
EBS用いれば、サーバー停止 してもデータは消えない
EC2はIPアドレスが毎回変わってしまう
EIP(Elastic IP)を用いて固定アドレスを割り当て可能
クラウドは障害がおきると何もできない
物理DC/サーバーも障害は起こる。
クラウドの良さは、障 害からの復帰に複数の手段があり、備えておける
http://www.slideshare.net/kentamagawa/aws-9170814

117 :
require 'heroku-api'
heroku = Heroku::API.new(:api_key => API_KEY)
post_ps_scale('app', 'type', 'quantity') # scale 'type' type processes to 'quantity' for 'app' app
https://github.com/heroku/heroku.rb

118 :
Heroku API
https://api-docs.heroku.com/

119 :
herokuはオワコン。遅いし、高いし、実はあんまり便利でもないし。
イメージで売ってるけど、使ってみると最悪。
さくらやGMOが無ければもう少し頑張れたのに、何だかかわいそう。


120 :
PaaSのなかではマシな方じゃないの?

121 :
クラウド型ストレージ「Amazon S3」は安いか? − @IT
1つはデータの冗長構成についてで、
Amazonは地理的に離れた最低2つのデータセンターにまたがって3重の冗長度でデータを保持している。
自前で同様のことをするには、RAID構成のストレージを2つのデータセンターに置き、それらの間でリアルタイムのレプリケーションを行う必要がある。
http://www.atmarkit.co.jp/news/200901/09/s3.html
このぐらいの性能でレプリケーション、バックアップ、リストア、ログ管理等等を
全く気にしなくていいとすれば、
月200でサーバ+DBAなんか雇えないわけで、十分ペイする気がします。
http://postgresql.g.hatena.ne.jp/umitanuki/20111202/1322810909

122 :
HerokuがPostgreSQLのDatabase-as-a-Serviceを開始。しかし料金表がおかしいぞ − Publickey
If a meteor were to wipe out the east coast, you won’t lose your data.
もしも宇宙からの隕石で米東海岸が壊滅しても、データが失われることはありません。
http://www.publickey1.jp/blog/11/herokupostgresqldatabase-as-a-service.html

123 :
NewRelic Webサービスのパフォーマンスを監視するサービス。
1分毎(設定で変更できます)に死活監視する機能がついているため、
アイドル時間によるherokuのダウン防止にも役立っています。
http://blog.mah-lab.com/2012/03/12/sonicgarden-heroku/
You can install the free New Relic add-on.
It has an availability monitor feature that will
ping your site twice per minute,
thus preventing the dyno from idling.
http://stackoverflow.com/questions/5480337/easy-way-to-prevent-heroku-idling

124 :
No need to install any plugin or library into your app,
no need for a specific version of Rails or any framework or language.
Just connect your database to Adminium and get access to a fully featured administration interface.
https://addons.heroku.com/adminium
heroku addons:add adminium
heroku plugins:install git://github.com/isc/heroku-adminium
heroku adminium
https://adminium.herokuapp.com/dashboard
https://devcenter.heroku.com/articles/adminium


125 :
All plans have a 1TB database max.
http://www.heroku.com/pricing
1 terabyte of storage
https://postgres.heroku.com/pricing
Network Bandwidth: 2TB/month - Soft
Shared DB processing: Max 200msec per second CPU time - Soft
Dyno RAM usage: 512MB - Hard
Slug Size: 100MB - Hard
Request Length: 30 seconds - Hard
http://policy.heroku.com/aup

126 :
Heroku Security
https://policy.heroku.com/security
Critical Production Apps Run On Heroku
Priority Support
24x7 support with 2-hour response time from product engineers.
http://go.heroku.com/critical/

127 :
admin
https://adminium.herokuapp.com/dashboard
https://addons.heroku.com/adminium

【Heroku】コマンドラインでDBにアクセスする(rails dbconsole する) - ふわふわRuby on Rails
http://d.hatena.ne.jp/zucay/20120425/1335317587
https://github.com/ddollar/heroku-sql-console

128 :
プラン ronin fugu ika zilla baku mecha
接続コネクション数 16 20 50 100 200 400
http://thinkit.co.jp/story/2011/03/23/2060?page=0,1
http://blog.heroku.com/archives/2010/11/4/heroku_postgresql/
https://addons.heroku.com/heroku-postgresql
20 connections Ingress support
https://addons.heroku.com/heroku-shared-postgresql
https://devcenter.heroku.com/articles/heroku-shared-postgresql
How many simultaneous connections will a shared database on Heroku allow? - Quora
You should be safe with up to around 20 connections.
http://www.quora.com/How-many-simultaneous-connections-will-a-shared-database-on-Heroku-allow
SHARED_DATABASE 5MB $0 $15 20GB
http://www.heroku.com/pricing

129 :
PythonAnywhere is a Python development and hosting environment
that displays in your web browser and
runs on our servers.
http://www.pythonanywhere.com/

130 :
rake で実行するタスクに時間がかかったとして、
それについて dyno の消費というか料金とかはどうなるのでしょうか?
具体的には、Apple の Push 通知の実行を rake コマンドから行おうと考えておりまして、
数分から数十分程度の処理時間はかかると思っています。
そもそも Apple サーバとの持続的な接続が可能かどうかも知りたいです。
テスト環境だとデバイス数も少なく、一瞬で終わってしまうので、
時間がかかる処理でどうなるのかが良くわかりません。
よろしくお願いします。

131 :
IronWorker
Very cost effective - $0.05 per hour billed by the second so you really only pay for what you use.
If you only use 1 minute per hour you only pay $0.0008 per hour.
https://addons.heroku.com/iron_worker
https://devcenter.heroku.com/articles/iron_worker
https://github.com/meskyanichi/hirefire
http://hirefireapp.com/
http://stackoverflow.com/questions/6807704/how-to-kill-resque-workers-on-heroku
Worker dynos also cost $0.05/hour.
https://devcenter.heroku.com/articles/scaling
https://devcenter.heroku.com/articles/delayed-job#running_dj_workers_on_heroku

132 :

Heroku's new, free PostgreSQL 9.1 development database
https://postgres.heroku.com/blog/past/2012/4/26/heroku_postgres_development_plan/
$ heroku addons:add heroku-postgresql:dev
Dev
https://addons.heroku.com/heroku-postgresql


133 :
jbbs.livedoor.jp/bbs/lite/read.cgi/business/5380/1334663269/l30

134 :
PostgreSQL 9.1 Now Default
https://postgres.heroku.com/blog/past/2012/3/1/postgresql_91_now_default/

135 :
「PostgreSQLはデータセンターなど大規模な環境で展開されるケースが非常に多い。
たとえばHerokuなどでは何百万台というサーバを運用している。
こういったプロバイダにとって消費電力の低減は死活問題」(Haas氏)
http://enterprisezine.jp/dbonline/detail/3861?p=2

136 :

Why Postgres - Craig Kerstiens  
http://craigkerstiens.com/2012/04/30/why-postgres/
Instagram Engineering • Sharding & IDs at Instagram  
http://instagram-engineering.tumblr.com/post/10853187575/sharding-ids-at-instagram

137 :
Heroku | Add-ons
Micro
5 wiki pages
10MB attached files
https://addons.heroku.com/mwiki
https://devcenter.heroku.com/articles/mwiki

138 :

https://github.com/HipByte/RubyMotionSamples/blob/master/Timer/app/timer_controller.rb
https://github.com/HipByte/RubyMotionSamples/blob/master/Hello/app/hello_view.rb
https://github.com/HipByte/RubyMotionSamples/blob/master/Paint/app/paint_view.rb
https://github.com/HipByte/RubyMotionSamples/blob/master/Tweets/app/tweets_controller.rb
https://github.com/HipByte/RubyMotionSamples/blob/master/Locations/app/locations_controller.rb

139 :
cron
http://www.cron-job.org/cgi-bin/cronweb

140 :
http://stocks.finance.yahoo.co.jp/stocks/detail/?code=3632
http://stocks.finance.yahoo.co.jp/stocks/detail/?code=2432

141 :

How to get 4x the performance out of Heroku with Unicorn
http://blog.railsonfire.com/2012/05/06/Unicorn-on-Heroku.html

142 :
Crane: Heroku's new $50 per month production database
https://postgres.heroku.com/blog/past/2012/5/3/crane_the_new_50_per_month_production_database_/
Crane
400 MB Cache
$ 50 / mo
Kappa
800 MB Cache
$ 100 / mo
https://postgres.heroku.com/pricing

143 :
http://ec2-cost.heroku.com/
http://aws.amazon.com/jp/ec2/instance-types/
http://aws.amazon.com/jp/ec2/pricing/
http://www.frederico-araujo.com/2011/12/27/why-ec2-still-sux-on-disk-io/
http://news.ycombinator.com/item?id=3945740
https://devcenter.heroku.com/articles/migrating-data-between-plans
https://devcenter.heroku.com/changelog-items/37

144 :
Connections are the number of processes (dynos + workers + external connections) which can connect to a database simultaneously.
https://devcenter.heroku.com/articles/database

145 :
Blitz is a Heroku add-on for providing self-service, cloud-based,
integrated load and performance testing for your app.
https://devcenter.heroku.com/articles/blitz
The basic Blitz plan lets you run tests simulating up to 250 users for free (see all Blitz pricing plans). Test using the Blitz UI,
https://addons.heroku.com/blitz



146 :

1.Ika: $800/month, 50 connections, 7.5 GB of RAM, 4 compute units
2.Baku: $3200/month, 128 connections, 34 GB of RAM, 13 compute units
3.Mecha: $6400/month, 256 connections, 68 GB of RAM, 26 compute units
http://www.postgresql.org/about/news/1259/

147 :
http://www.slideshare.net/savvasgeorgiou/cloudcamp-athens-2011-presenting-heroku
https://status.heroku.com/incident/151
http://aws.amazon.com/jp/ebs/

148 :
Cloudfuji
http://cloudfuji.com/

149 :
ヘロク、SaaS型DB「Heroku Postgres」の安価なプランをベータ公開
エントリー向け、既存プランの半額以下となる月額50ドル/100ドル
http://www.computerworld.jp/topics/601/クラウド・コンピューティング/202331/ヘロク、SaaS型DB「Heroku%20Postgres」の安価なプランをベータ公開

150 :
Ika: $800/month, 50 connections, 7.5 GB of RAM, 4 compute units
Baku: $3200/month, 128 connections, 34 GB of RAM, 13 compute units
Mecha: $6400/month, 256 connections, 68 GB of RAM, 26 compute units
http://blog.heroku.com/archives/2010/11/4/heroku_postgresql/
http://www.postgresql.org/about/news/1259/


151 :
$ heroku addons:add heroku-shared-postgresql
$ heroku pg:info HEROKU_SHARED_POSTGRESQL_COPPER
=== HEROKU_SHARED_POSTGRESQL_COPPER
Status: ok
Tables: 5
Bytes: 81920
Connections: 6
Idle connections: 5
Idle connections in txn: 0
Active connections: 1
https://devcenter.heroku.com/articles/heroku-shared-postgresql

152 :
アカウントごとのAWS全体の月額使用料金の取得
各アカウントで使用しているAWSサービスごとの月額使用料金の取得
Consolidated Billingで紐づいたアカウント全てのAWS月額資料料金の取得
Consolidated Billingで紐づいたアカウント全てで使用した、各AWSサービスの月額使用料金の取得
http://blog.serverworks.co.jp/tech/2012/05/11/estimated-monthly-charge-cloudwatch/

153 :
Heroku
https://aws.amazon.com/solution-providers/isv/heroku

154 :
idle
http://twitter.com/hanachin_/status/201218523446509568
http://beouk.blogspot.jp/2012/02/keeping-heroku-awake.html
http://adam.heroku.com/past/2010/6/30/replace_cron_with_clockwork/
http://www.cron-job.org/cgi-bin/cronweb
NewRelic Webサービスのパフォーマンスを監視するサービス。
1分毎(設定で変更できます)に死活監視する機能がついているため、
アイドル時間によるherokuのダウン防止にも役立っています。
http://blog.mah-lab.com/2012/03/12/sonicgarden-heroku/
You can install the free New Relic add-on.
It has an availability monitor feature that will
ping your site twice per minute,
thus preventing the dyno from idling.
http://stackoverflow.com/questions/5480337/easy-way-to-prevent-heroku-idling

155 :

さくらインターネット VPSスレ Part14
http://toro.2ch.net/test/read.cgi/hosting/1334747246/l50
http://toro.2ch.net/hosting/subback.html

156 :
Cloudcamp Athens 2011 Presenting Heroku
http://www.slideshare.net/savvasgeorgiou/cloudcamp-athens-2011-presenting-heroku

157 :
Performance of 1 Heroku dyno : rails
http://www.reddit.com/r/rails/comments/q4xtr/performance_of_1_heroku_dyno/
More concurrency on a single Heroku dyno with the new Celadon...
http://michaelvanrooijen.com/articles/2011/06/01-more-concurrency-on-a-single-heroku-dyno-with-the-new-celadon-cedar-stack/
Benchmark ruby versus node.js on Heroku :: OpenHood
http://openhood.com/ruby/node/heroku/sinatra/mongo_mapper/unicorn/express/mongoose/cluster/2011/06/14/benchmark-ruby-versus-node-js/

158 :
4 unicorn worker instances, on a single Dyno! Prior to Celadon Cedar
4 Unicorn Workers
Time taken for tests: 0.979 seconds
Requests per second: 918.90 [#/sec]
http://michaelvanrooijen.com/articles/2011/06/01-more-concurrency-on-a-single-heroku-dyno-with-the-new-celadon-cedar-stack/

159 :
How to get 4x the performance out of Heroku with Unicorn
http://blog.railsonfire.com/2012/05/06/Unicorn-on-Heroku.html
Getting Started with Rails 3.x on Heroku/Cedar | Heroku Dev Center
https://devcenter.heroku.com/articles/rails3
I'm using Unicorn and I don't see any data - New Relic Documentation
https://newrelic.com/docs/troubleshooting/im-using-unicorn-and-i-dont-see-any-data

160 :

https://status-beta.heroku.com/
https://status.heroku.com/
https://twitter.com/#!/herokustatus

161 :
heroku throughput
http://blog.evanweaver.com/2012/02/29/hello-heroku-world/
Mu Dynamics Blog » blitz.io: How many dynos do I need on Heroku?
Measuring the number of dynos you need
http://blog.mudynamics.com/2011/05/25/blitzio-how-many-dynos-do-i-need-on-heroku/
http://blitz.io/
https://github.com/kowsik/dyno-blitzer
https://devcenter.heroku.com/articles/error-codes#h11__backlog_too_deep
https://devcenter.heroku.com/articles/error-codes#h12__request_timeout

162 :
how many requests you wish to serve per second.
15 requests per second at 100ms per request would require two dynos.
30 requests per second would require 3 dynos
https://devcenter.heroku.com/articles/backlog-too-deep
https://devcenter.heroku.com/categories/performance
https://devcenter.heroku.com/articles/scaling


163 :
Dyno調べた。これが今の限界。 - 絵事後素
http://necopy.heroku.com/14
heroku consoleが原因でブラウザからのアクセスがブロックされる場合がある。 - Sooey
http://journal.sooey.com/99

164 :
Use heromon to monitor the queue length of your app !
heromon is a plugin for the heroku CLI, so install it as usual:
$ heroku plugins:install git@github.com:joergviola/heroku-monitor.git
http://heromon.herokuapp.com/
https://github.com/joergviola/heroku-monitor


165 :
This shows that Heroku was able to serve 159 requests within a second,
and thus approximately 686,000 requests a day.
http://neilmiddleton.com/getting-more-from-your-heroku-dynos/
Dyno Memory Behavior
Each dyno gets 512MB of memory to operate within.
https://devcenter.heroku.com/articles/dynos

166 :
A single dyno on Heroku can process a lot of hits if you tune it 
Easiest: HTTP caching on heroku
response.headers['Cache-Control'] = 'public, max-age=300'
Little harder: asset_sync and Rails 3.1
http://www.joshcrews.com/2012/01/a-single-dyno-on-heroku-can-process-a-lot-of-hits-if-you-tune-it
https://github.com/rumblelabs/asset_sync

167 :
なぜ Forkwell はリリース初日にサーバダウンを繰り返したのか - 表参道フォークウヱル別館
http://annex-forkwell.heroku.com/2012/04/12/server_failure
http://annex-forkwell.heroku.com/2012/04/16/server_failure_answers

168 :
ニフティクラウドが活用方法を展示、個人向けPaaSやマルチリージョン対応なども明らかに
ニフティクラウドC4SA
http://itpro.nikkeibp.co.jp/article/NEWS/20120514/396435/
http://blogs.itmedia.co.jp/business20/2012/05/iaaspaas-4aba.html

169 :
MOGOK
http://mogok.jp/

170 :
OpenShift by Red Hat
https://openshift.redhat.com/app/
OpenShift by Red Hat | Hacker News
http://news.ycombinator.com/item?id=3975865

171 :
InfoQ: High Availability at Heroku  
http://www.infoq.com/presentations/High-Availability-at-Heroku

172 :
https://github.com/openshift/rails-example
https://github.com/openshift/sinatra-example

173 :
http://stocks.finance.yahoo.co.jp/stocks/detail/?code=3632
http://stocks.finance.yahoo.co.jp/stocks/detail/?code=2432
http://stocks.finance.yahoo.co.jp/stocks/detail/?code=2121
さくらインターネット VPSスレ Part14
http://toro.2ch.net/test/read.cgi/hosting/1334747246/l50
http://toro.2ch.net/hosting/subback.html

174 :
Keeping your Heroku app awake - Heroku | Google Groups
http://groups.google.com/group/heroku/browse_thread/thread/9f1a5d7d677fb4dc
idle idling アイドル アイドリング heroku
http://beouk.blogspot.jp/2012/02/keeping-heroku-awake.html
http://adam.heroku.com/past/2010/6/30/replace_cron_with_clockwork/
http://www.cron-job.org/cgi-bin/cronweb
NewRelic Webサービスのパフォーマンスを監視するサービス。
1分毎(設定で変更できます)に死活監視する機能がついているため、
アイドル時間によるherokuのダウン防止にも役立っています。
http://blog.mah-lab.com/2012/03/12/sonicgarden-heroku/
You can install the free New Relic add-on.
It has an availability monitor feature that will
ping your site twice per minute,
thus preventing the dyno from idling.
http://stackoverflow.com/questions/5480337/easy-way-to-prevent-heroku-idling

175 :
Pingdom - Web site monitoring for 100% uptime. Measure your downtime.
http://www.pingdom.com/
heroku でアイドリングになるのを回避する
http://d.hatena.ne.jp/kaz_shu/20120308/1331222413

176 :
Apacheの同時接続数とPostgresqlの同時接続数について - Shoulder.jp
http://shoulder.jp/archives/007768.php
PostgreSQL:チューニング勘所 - Y-110's Wiki
http://php.y-110.net/wiki/index.php?PostgreSQL%A1%A7%A5%C1%A5%E5%A1%BC%A5%CB%A5%F3%A5%B0%B4%AA%BD%EA

177 :
max_connections (integer)
データベースサーバに同時接続する最大数を決定します。 デフォルトは典型的に100接続ですが、
http://www.postgresql.jp/document/9.1/html/runtime-config-connection.html
max_connections (integer)
http://www.postgresql.org/docs/9.1/static/runtime-config-connection.html

178 :
HerokuにJRuby on Rails環境を構築
http://d.hatena.ne.jp/kaorumori/20120519/1337433639

179 :
Using JRuby for Rails Applications on Cloud Foundry | Blog  
http://blog.cloudfoundry.com/2012/04/19/deploying-jruby-on-rails-applications-on-cloud-foundry/

180 :
ASCII.jp:KDDIウェブ、共用サーバーに無償のステージング環境
http://ascii.jp/elem/000/000/695/695038/

181 :
Railsonfire | Heroku Dev Center
https://devcenter.heroku.com/articles/railsonfire
https://addons.heroku.com/Railsonfire

182 :
AWSの新マーケットプレイス、IBMやSAPなどのクラウド・アプリを1クリックで購入可能に
購入前に製品をテストできる点に大きな魅力
http://www.computerworld.jp/topics/601/クラウド・コンピューティング/202205/AWSの新マーケットプレイス、IBMやSAPなどのクラウド・アプリを1クリックで購入可能に

https://aws.amazon.com/marketplace
Ruby on Rails - Web Application Framework provided by TurnKey Linux
https://aws.amazon.com/marketplace/pp/B0078X1N26/ref=gtw_msl_title?ie=UTF8&pf_rd_r=158WHHQ7D9DN027PM31A&pf_rd_m=A33KC2ESLMUT5Y&pf_rd_t=101&pf_rd_i=awsmp-gateway-1&pf_rd_p=1362852262&pf_rd_s=right-3


183 :
http://toro.2ch.net/test/read.cgi/hosting/1337405111/l50

184 :
Launch delayed jobs with scheduled http requests - Moment
http://momentapp.com/
IronWorker
Very cost effective - $0.05 per hour billed by the second so you really only pay for what you use.
If you only use 1 minute per hour you only pay $0.0008 per hour.
https://addons.heroku.com/iron_worker
https://devcenter.heroku.com/articles/iron_worker
https://github.com/meskyanichi/hirefire
http://hirefireapp.com/
http://stackoverflow.com/questions/6807704/how-to-kill-resque-workers-on-heroku
Worker dynos also cost $0.05/hour.
https://devcenter.heroku.com/articles/scaling
https://devcenter.heroku.com/articles/delayed-job#running_dj_workers_on_heroku

185 :
ここは?
http://bit.ly/JROv52

186 :
>>185
a8

187 :
Sqale - 開発者のためのホスティングサービス【スケール】Ruby on Rails 対応。
http://sqale.jp/

188 :
https://github.com/paperboy-sqale/sqale-support/wiki/GettingStartedForWindows
https://github.com/paperboy-sqale/sqale-support/wiki/GettingStartedForMac
ユーザーが外部に用意したデータベースを使用することは可能です。
https://sqale.jp/faq


189 :
Rackhub - リーンでスマートに生きるエンジニアのための開発プラットフォーム
http://rackhub.net/
http://www.fluxflex.com/

190 :
「MySQLが技術的なギャップを縮めてきているものの、PostgreSQLは優秀で人気がある」
http://www.computerworld.jp/topics/601/
MySQLにはDDLトランザクション処理がないので、
http://www.infoq.com/jp/news/2009/05/heroku-provisionless-revolution
MySQL :: MySQL 5.1 リファレンスマニュアル :: 12.4.2 ロールバックできないステートメント
http://dev.mysql.com/doc/refman/5.1/ja/cannot-roll-back.html

191 :
Dokuen - A Personal Heroku | Hacker News
http://news.ycombinator.com/item?id=4010042

192 :
herokuコマンドで複数アカウントを使いわける - Sooey
http://journal.sooey.com/162

193 :
Micro Cloud Foundry
https://my.cloudfoundry.com/micro

194 :
Worqshop is a small development environment for the iPad with GitHub and Heroku support.
It features a fast code editor with syntax highlighting for Python, Ruby, HTML, CSS, and JavaScript files
http://worqshop.com/

195 :
MySQL is done. It's the Postgres Age. by Jeff Dickey
http://dickey.xxx/mysql-is-done-it-s-the-postgres-age
「MySQLが技術的なギャップを縮めてきているものの、PostgreSQLは優秀で人気がある」
http://www.computerworld.jp/topics/601/
MySQLにはDDLトランザクション処理がないので、
http://www.infoq.com/jp/news/2009/05/heroku-provisionless-revolution
MySQL :: MySQL 5.1 リファレンスマニュアル :: 12.4.2 ロールバックできないステートメント
http://dev.mysql.com/doc/refman/5.1/ja/cannot-roll-back.html

196 :
Heroku上でスクリーンショットサーバを動かす - snippets from shinichitomita’s journal
http://d.hatena.ne.jp/shinichitomita/20120523/1337775270
https://github.com/stomita/heroku-screenshot
http://heroku-screenshot-nodejs.herokuapp.com/request.html

197 :
Loggly | Add-ons | Heroku
https://addons.heroku.com/loggly

198 :
InfoQ: Herokuはどうやって高可用性を確保しているか - QCon Londonの発表から
Erlangのエラーカーネルというコンセプトに着想を得ている。
http://www.infoq.com/jp/news/2012/03/heroku-high-availability-qcon

199 :
https://addons.heroku.com/sendgrid
SendGrid | Heroku Dev Center
https://devcenter.heroku.com/articles/sendgrid

200 :
https://addons.heroku.com/newrelic
New Relic | Heroku Dev Center
https://devcenter.heroku.com/articles/newrelic
http://newrelic.com/pricing

201 :
Herofu - A simple file server for Heroku  
http://herofu.heroku.com/

202 :
パブリッククラウドのHadoop対応状況を比較する──Amazon、Google、Herokuの場合 − TechTargetジャパン 情報系アプリケーション
http://techtarget.itmedia.co.jp/tt/news/1205/28/news06.html
https://addons.heroku.com/treasure-data

203 :
タグ heroku が付けられた質問 - QA@IT  
http://qa.atmarkit.co.jp/questions/tagged/heroku

204 :
企業データベースとしてPostgreSQLがMySQLより優れているわけ - builder
http://builder.japan.zdnet.com/db-sql/20407740/

205 :
Heroku Chief Opens the Door to More Processes, Bigger Ecosystem, Less Amazon
http://www.readwriteweb.com/cloud/2012/05/heroku-chief-opens-the-door-to-more-processes-bigger-ecosystem-less-amazon.php

206 :
Heroku Status for iPhone 3GS, iPhone 4, iPhone 4S, iPod touch (3rd generation), iPod touch (4th g...
http://itunes.apple.com/app/id527084835
Heroku | Nezumi 2.0 for Managing Heroku Apps 'on-the-go' Now Available for iPhone
http://blog.heroku.com/archives/2012/2/21/nezumi-2-for-iphone/
http://itunes.apple.com/us/app/nezumi/id346715875?mt=8

207 :

happtech: 日本語環境のwordpressをherokuで動かす方法
http://happtech.blogspot.com/2012/04/wordpressheroku.html
wordpress-heroku-ja-demo | Just another WordPress site
http://wordpress-heroku-ja-demo.herokuapp.com/

208 :
https://github.com/mhoofman/wordpress-heroku

209 :
マスタ/スレーブの冗長化の基本は4台1セット
http://d.hatena.ne.jp/uncafe/20110919
データベースのレプリケーション(複製)では、slaveに最低3台のサーバを適用している。
http://jibun.atmarkit.co.jp/ad/comp/112mitsu/01.html
MySQLをmaster:slave=1:1構成にして参照をslaveに向けるのがなぜ良くないか - 酒日記 はてな支店
http://d.hatena.ne.jp/sfujiwara/20110620/1308531677
MySQLで参照の負荷分散を行うslaveは3台から構成するのがよいのでは - 酒日記 はてな支店
http://d.hatena.ne.jp/sfujiwara/20110621/1308625519

210 :

Niftyクラウド、PaaSとしてC4SAのサービスを開始 − Publickey Topics
http://www.publickey2.jp/2012/05/niftypaasc4sa.html
アプリケーションの開発・運用を「シンプル」で「スマート」に。ニフティクラウド C4SA
http://c4sa.nifty.com/
MOGOK
http://mogok.jp/
Sqale - 開発者のためのホスティングサービス【スケール】Ruby on Rails 対応。
http://sqale.jp/

211 :
PostgreSQL 9.2 beta improves scalability, adds JSON - The H Open Source: News and Features
http://www.h-online.com/open/news/item/PostgreSQL-9-2-beta-improves-scalability-adds-JSON-1573815.html

212 :
RailsInstaller for OS X | Engine Yard Blog
http://www.engineyard.com/blog/2012/railsinstaller-for-os-x/
https://github.com/railsinstaller/railsinstaller-nix/downloads
https://github.com/downloads/railsinstaller/railsinstaller-nix/RailsInstaller-1.0.0-osx-10.7.app.tgz
https://github.com/downloads/railsinstaller/railsinstaller-nix/RailsInstaller-1.0.0-osx-10.6.app.tgz

213 :
rails.app by Yehuda Katz ? Kickstarter
http://www.kickstarter.com/projects/1397300529/railsapp

214 :
Create a JSON API from any HTML page via DOM attributes
http://apify.heroku.com/resources/new

215 :
https://github.com/ddollar/heroku-accounts

216 :
Heroku Isn't for Idiots - Randall Degges
http://rdegges.com/heroku-isnt-for-idiots

217 :
Heroku vs. Amazon Web Services | Smashingboxes, web and mobile application development in Durham NC
http://smashingboxes.com/heroku-vs-amazon-web-services/
http://justcramer.com/2012/06/02/the-cloud-is-not-for-you/


218 :
Ruby, Ruby on Rails インシデントサポートサービス|EnterpriseOSS(エンタープライズオーエスエス)
http://www.enterpriseoss.jp/product/support/support_ruby01.html
イーシー・ワン、「ナレッジセンターレスキューサービス」
http://www.atpress.ne.jp/view/11616

219 :
Dynometer
https://dynometer.restful-labs.com/
http://hirefireapp.com/
http://www.heroscale.com/
http://twitter.com/heroscale
Heroku API
https://api-docs.heroku.com/

220 :
Whenever you make changes to your application and push your Code to GitHub we take the latest version of your code, run all your tests and,
if you want, push to your staging and/or production application.
https://addons.heroku.com/railsonfire
Railsonfire | Heroku Dev Center
https://devcenter.heroku.com/articles/railsonfire
Continuous Integration and Continuous Deployment 4 Ruby - Railsonfire
https://www.railsonfire.com/

221 :
Herokuでcron?もう古いかも、それ - Meltdown Countdown
http://marutanm.hatenablog.com/entry/20110719/p1
https://github.com/marutanm/heroku-cedar-clock
Beo Blog: Keeping Heroku Awake
http://beouk.blogspot.com/2012/02/keeping-heroku-awake.html
https://addons.heroku.com/scheduler

222 :
App Store - Doppler for Heroku
http://itunes.apple.com/app/id387552592
Heroku Status for iPhone 3GS, iPhone 4, iPhone 4S, iPod touch (3rd generation), iPod touch (4th g...
http://itunes.apple.com/app/id527084835
Heroku | Nezumi 2.0 for Managing Heroku Apps 'on-the-go' Now Available for iPhone
http://blog.heroku.com/archives/2012/2/21/nezumi-2-for-iphone/
http://itunes.apple.com/us/app/nezumi/id346715875?mt=8

223 :
Scheduled Jobs and Custom Clock Processes in Ruby with Clockwork | Heroku Dev Center
https://devcenter.heroku.com/articles/clock-processes-ruby
Scheduled Jobs and Custom Clock Processes | Heroku Dev Center
https://devcenter.heroku.com/articles/scheduled-jobs-custom-clock-processes

224 :
heroku addons:add shared-database
http://qiita.com/items/96749c0e099f516303f0
https://devcenter.heroku.com/articles/database

225 :
InfoQ: Adam Wiggins on Building Heroku on Top of Amazon EC2  
http://www.infoq.com/interviews/wiggins-heroku-ec2-cloud
Heroku runs on top of Amazon's EC2 service
http://www.reddit.com/r/rails/comments/qdqwt/heroku_vs_traditional_hosting/

226 :
Windows Azure 無料評価版
http://www.windowsazure.com/ja-jp/pricing/free-trial/

227 :
AppHarbor  
https://appharbor.com/

228 :
$ heroku releases
$ heroku rollback
https://devcenter.heroku.com/articles/releases
http://blog.heroku.com/archives/2010/11/17/releases/

229 :
Ladies and Gentlemen:
Attention,please!
My name is Charles Han. I am from the hometown of Wang Yangming王陽明おうようめいand Zhu Shunshui朱舜水しゅ しゅんすい.
/ //////////////////// /////////////// Investjp.com
Investkr.com //////// ///// financejp.com
Financekr.com /////// /////
These four domains seek appraisal and cooperation, Any individuals and corporations which have any ideas or comments please contact me via email charlesjqhan@163.com msn charlesjqhan@msn.com .

女士们,先生们:
我是Charles,来自王阳明和朱舜水的故乡。
/ // ///////////////////////////// //// Investjp.com
Investkr.com //////// ///// financejp.com
Financekr.com /////// /////
以上域名寻求评估和合作,任何有想法和评论的个人和公司请联系我。

Charlesと申します。王陽明と朱舜水の故郷から参りました。
/ /// ////////////////// /////////////// Investjp.com
Investkr.com //////// ///// financejp.com
Financekr.com /////// /////
以上のドメインが合作と評価を求めています。興味がある方々はご連絡ください。
email charlesjqhan@163.com msn charlesjqhan@msn.com

230 :
http://cedar-versions.herokuapp.com/evil
http://bamboo-mri192-versions.heroku.com/evil
http://bamboo-ree-versions.heroku.com/evil
http://aspen-versions.heroku.com/evil
https://github.com/wuputah/heroku-versions


231 :
http://www.ec2instances.info/
http://ec2-cost.heroku.com/

232 :
List all app releases:
releases = app.releases
And rollback to any release:
releases.rollback 'v1'
https://github.com/goshakkk/ruroku

233 :
【AWS発表】 AWS SDK for Rubyを提供開始 - Amazon Web Services ブログ
http://aws.typepad.com/aws_japan/2011/07/introducing-the-aws-sdk-for-ruby.html
b = Bookmark.new(
:title => 'Amazon EC2',
:url => 'http://aws.amazon.com/ec2',
:tags => [ 'aws', 'cloud', 'compute'])
b.save

234 :
https://devcenter.heroku.com/articles/clock-processes-ruby

235 :
waratuman | Apple Push Notifications with Heroku
http://www.waratuman.com/2011/01/13/apple-push-with-heroku/

236 :
Amazon ec2とは何か?
http://www.slideshare.net/Shinya_131/amazon-ec2-13117367

237 :
http://twitter.com/search/%23herokai_dc

238 :
Heroku | クラウドアプリケーションプラットフォーム
http://herokujp.herokuapp.com/

239 :
https://devcenter.heroku.com/changelog

240 :
Semaphore - Hosted Continuous Integration Service for Ruby and Rails
https://semaphoreapp.com/

241 :
New Relic and the State of the Stacks - A New Report on Usage of Java, PHP, Python and Ruby
http://blog.newrelic.com/2012/06/13/new-relic-redmonk-state-of-the-stack/?utm_term=stateofthestack&mpc=BA-NEWS-RPM-en-100-redmonk-stateofthestack

242 :
https://twitter.com/#!/herokuchangelog

243 :
「MySQLが技術的なギャップを縮めてきているものの、PostgreSQLは優秀で人気がある」
http://www.computerworld.jp/topics/601/
MySQLにはDDLトランザクション処理がないので、
http://www.infoq.com/jp/news/2009/05/heroku-provisionless-revolution
MySQL :: MySQL 5.1 リファレンスマニュアル :: 12.4.2 ロールバックできないステートメント
http://dev.mysql.com/doc/refman/5.1/ja/cannot-roll-back.html
トランザクション処理について
http://okwave.jp/qa/q3155847.html

244 :
Mina
Really fast deployer and server automation tool
http://nadarei.co/mina/

245 :
Deploying Rack-based Apps | Heroku Dev Center
https://devcenter.heroku.com/articles/rack

246 :
Amazon Web Service (AWS) でサービスをデプロイしてみた
http://tech.feedforce.jp/deploy_on_amazon_web_service.html

247 :
EC2 t1.microインスタンスの性能特性 « Linux練習帳
http://php6.jp/linux/2012/02/01/ec2-t1-micro-instance-performance-characteristic/

248 :
上から下までRubyが活躍していると指摘したのは、フクオカRuby大賞の特別賞を受賞した「Cloud Foundry」の生みの親の1人
http://el.jibun.atmarkit.co.jp/rails/2012/03/ruby-3574.html
Rails Hub情報局: Cloud FoundryがRuby「で」作られたクラウドだった件
http://el.jibun.atmarkit.co.jp/rails/2011/06/cloud.html
ついにCloud FoundryにWorker(Standalone app)が実装された!ので、早速触ってみた | u1's tech blog
http://blog.udcp.net/2012/05/02/how-to-use-cloud-foundry-standalone-apps/
Cloud Foundry Improves Support For Background Processing | Blog
http://blog.cloudfoundry.com/2012/05/01/cloud-foundry-improves-support-for-background-processing/

249 :
セールスフォースのアーキテクチャはPaaSに向いていないと、Ruby on RailsクラウドのEngine Yardがブログで指摘 − Publickey
http://www.publickey1.jp/blog/11/paasruby_on_railsengine_yard.html
Cloud 2? | Engine Yard Ruby on Rails Blog
http://www.engineyard.com/blog/2011/cloud-2/
Amazonクラウド、ついにJava対応PaaSの「Beanstalk」発表。Ruby on Rails対応も準備中 − Publickey
http://www.publickey1.jp/blog/11/amazonjavapaasbeanstalkruby_on_rails.html


250 :
https://status.heroku.com/
https://twitter.com/#!/herokustatus
AWS障害による影響を小さくするための設計(2011/4/21の障害を踏まえて) - よかろうもん!
http://d.hatena.ne.jp/interu/20110425/1303731515
youRoomにおいて発生した 2011/4/21 のAWSの障害について技術的な観点から - mat_akiの日記
http://d.hatena.ne.jp/mat_aki/20110422/1303440808


251 :
クラウド型ストレージ「Amazon S3」は安いか? − @IT
1つはデータの冗長構成についてで、
Amazonは地理的に離れた最低2つのデータセンターにまたがって3重の冗長度でデータを保持している。
自前で同様のことをするには、RAID構成のストレージを2つのデータセンターに置き、それらの間でリアルタイムのレプリケーションを行う必要がある。
http://www.atmarkit.co.jp/news/200901/09/s3.html
このぐらいの性能でレプリケーション、バックアップ、リストア、ログ管理等等を
全く気にしなくていいとすれば、
月200でサーバ+DBAなんか雇えないわけで、十分ペイする気がします。
http://postgresql.g.hatena.ne.jp/umitanuki/20111202/1322810909
ttp://b.hatena.ne.jp/entry/twitter.com/2celeb/status/213562130300014592
https://status.heroku.com/incidents/375

252 :
S3はストレージであってデータベースでは無いので・・・

253 :
Amazon の Virginia DC がダウン: Quora や Heroku に影響が! « Agile Cat — in the cloud
http://agilecat.wordpress.com/2012/06/16/amazon-の-virginia-dc-がダウン:-quora-や-heroku-に影響が!/
Amazon に起こった大規模ダウンタイムを分析する
Amazon AWS の障害を総括すると、クラウドの勝利が見えてくる_1
http://agilecat.wordpress.com/2011/04/25/amazon-aws-の障害を総括すると、クラウドの勝利が見えて/
Amazon AWS の障害を総括すると、クラウドの勝利が見えてくる_2
http://agilecat.wordpress.com/2011/04/27/amazon-aws-の障害を総括すると、クラウドの勝利が見え%e3%81-2/

254 :
Mac App Store - Navicat Essentials for PostgreSQL
http://itunes.apple.com/app/id466725643
Navicat - PostgreSQL
http://www.navicat.com/en/products/navicat_pgsql/pgsql_overview.html

255 :
How to get 4x the performance out of Heroku with Unicorn
http://blog.railsonfire.com/2012/05/06/Unicorn-on-Heroku.html
More concurrency on a single Heroku dyno with the new Celadon Cedar stack
http://michaelvanrooijen.com/articles/2011/06/01-more-concurrency-on-a-single-heroku-dyno-with-the-new-celadon-cedar-stack/
Blueprint
http://devstructure.github.com/blueprint/

256 :
NASA は OpenStack を捨て、Amazon に乗り換えたのか? « Agile Cat — in the cloud
http://agilecat.wordpress.com/2012/06/14/nasa-は-openstack-を捨て、amazon-に乗り換えたのか/

257 :

Heroku: What were the reasons for Heroku choosing PostgreSQL over MySQL? - Quora
http://www.quora.com/Heroku/What-were-the-reasons-for-Heroku-choosing-PostgreSQL-over-MySQL
How many simultaneous connections will a shared database on Heroku allow? - Quora
You should be safe with up to around 20 connections.
http://www.quora.com/How-many-simultaneous-connections-will-a-shared-database-on-Heroku-allow

258 :
【徹底比較】2大Open Paas、Cloud FoundryとOpenShiftの強み/弱み − TechTargetジャパン クラウド&SaaS 
http://techtarget.itmedia.co.jp/tt/news/1206/18/news02.html

259 :
日本Cloud Foundryグループ  
http://www.cloudfoundry.gr.jp/

260 :
http://news.ycombinator.com/item?id=4126651


261 :
仮想化:HerokuではじめるPaaS開発 - builder  
http://builder.japan.zdnet.com/virtualization/sp_heroku2012/

262 :
第3回 クラウドプラットフォーム「Heroku」の活用 | Think IT
http://thinkit.co.jp/story/2011/03/23/2060?page=0,1

263 :
action.io
0 to Rails in 60 Seconds.
https://www.action.io/

264 :
Amazonクラウド先週のシステム障害、原因は電源トラブル。二重三重の防護策が次々と倒れる − Publickey
マルチアベイラビリティゾーンの設定がされていれば問題なかったが、
このアベイラビリティゾーンのみで稼働しているものについては、電源が復活するまで待たなくてはならなくなった。
http://www.publickey1.jp/blog/12/amazon_16.html

265 :
Semaphore - Hosted Continuous Integration Service for Ruby and Rails  
https://semaphoreapp.com/

266 :
http://engawa.2ch.net/test/read.cgi/poverty/1340297411/
http://realtime.search.yahoo.co.jp/search?rkf=2&ei=UTF-8&p=%E3%83%95%E3%82%A1%E3%83%BC%E3%82%B9%E3%83%88%E3%82%B5%E3%83%BC%E3%83%90%E3%83%BC

267 :
実践「Heroku」をセットアップしてサンプルアプリを動かそう | Think IT
http://thinkit.co.jp/story/2012/06/21/3594
youRoomとPivotalTrackerではじめる無駄のないコミュニケーション | Think IT
http://thinkit.co.jp/story/2012/06/14/3573?page=0,1

268 :
cdn asset host rails31 · herokaijp/devcenter Wiki · GitHub
https://github.com/herokaijp/devcenter/wiki/cdn-asset-host-rails31

269 :
kantan
Similar to Heroku, but on your own hardware
https://github.com/jacobwg/kantan
http://rubygems.org/gems/kantan


270 :
>>269
早すぎる。first commit から 1時間しか経ってないの

271 :
って、中身はまだ Thor 版 hello world でしかないのか

272 :
[お知らせ:【重要】弊社一部サーバーの障害に関するお知らせ] ファーストサーバ サポートWEB
http://b.hatena.ne.jp/entry/support.fsv.jp/info/nw20120623_kyoyu.html

273 :
おしべめしべ
http://www.slideshare.net/puriketu99/ss-13429968

274 :
Amazon.co.jp: Heroku Cedar: Jurg van Vliet, Flavia Paganelli, Jasper Geurtsen, Matti Paksula, Att...
http://www.amazon.co.jp/gp/product/1449319637
Amazon.co.jp: Heroku: 洋書
http://www.amazon.co.jp/gp/product/5511737992


275 :
How to increase ActiveRecord thread pool size on heroku - Stack Overflow
http://stackoverflow.com/questions/10045302/how-to-increase-activerecord-thread-pool-size-on-heroku
heroku-buildpack-ruby/lib/language_pack/ruby.rb at master · heroku/heroku-buildpack-ruby · GitHub
https://github.com/heroku/heroku-buildpack-ruby/blob/master/lib/language_pack/ruby.rb#L325-387

276 :
ActiveRecordのestablish_connectionに気をつけろ - 車輪の再発明
http://d.hatena.ne.jp/raugisu/20120428/1335598633
【訂正】Railsでconnection数を破綻させずにestablish_connectionで別DBを利用する - 車輪の再発明
http://d.hatena.ne.jp/raugisu/20120429/1335725405

277 :
ActiveRecord::Base.establish_connection(
"postgres://myuser:mypass@localhost/somedatabase"
)
http://api.rubyonrails.org/classes/ActiveRecord/Base.html#method-c-connected-3F

278 :

Progstr Filer - Home
http://docs.progstr.com/filer-getting-started.html
https://addons.heroku.com/progstr

279 :
$ git remote add heroku git@heroku.com:appname.git
https://devcenter.heroku.com/articles/git
クラウドな会社の介錯人が雑談: 新しい環境からHerokuの既存アプリを更新
http://blog.hashiva.net/2012/06/heroku.html

280 :
ruby on rails - Why do people use Heroku when AWS is present? What's distinguishing about Heroku
Currently it's $0.05/hr for a dyno hour, compared to $0.025/hr for an AWS micro instance or $0.09/hr for an AWS small instance.
http://stackoverflow.com/questions/9802259/why-do-people-use-heroku-when-aws-is-present-whats-distinguishing-about-heroku

281 :

https://devcenter.heroku.com/articles/database
https://devcenter.heroku.com/articles/heroku-postgres-dev-plan


282 :
How to get 4x the performance out of Heroku with Unicorn
http://blog.railsonfire.com/2012/05/06/Unicorn-on-Heroku.html
Blueprint
http://devstructure.github.com/blueprint/
4 unicorn worker instances, on a single Dyno! Prior to Celadon Cedar
http://michaelvanrooijen.com/articles/2011/06/01-more-concurrency-on-a-single-heroku-dyno-with-the-new-celadon-cedar-stack/

283 :
When using Thin, this dyno will hammer away quite happily serving one request at a time.
Therefore, you could have four Unicorn processes running in one Heroku dyno.
http://neilmiddleton.com/getting-more-from-your-heroku-dynos/

284 :
http://www.anlyznews.com/2012/06/blog-post_25.html
http://togetter.com/li/326427

285 :
さくらクラウド・さくらVPS・AmazonEC2・Rackspace CloudでRailsプロジェクトを作ってベンチマーク - ふじおかのブログ -Ruby牛タン親方は休憩中です-
http://d.hatena.ne.jp/xibbar/20120625#1340584854

286 :
Do a backup with more frequency. Although PG Backups Add-ons has a daily frequency, you can create a rake task using Heroku gem and schedule it to do in less time;
If you are doing a real app, consider migrating it to Heroku production database,
since it has a better infra, health checks and you can also access the database when needed. Consider also duplicating your database using a follower strategy, so you can just change to the other in case of any problem.
http://loudcoding.com/posts/how-to-recover-from-a-corrupted-table-on-heroku-shared-database/

287 :
https://devcenter.heroku.com/articles/pgbackups
auto-week and auto-month
Not available on development plans
https://devcenter.heroku.com/articles/pgbackups

288 :
https://addons.heroku.com/pgbackups

289 :
「さくらのクラウド」、自社開発ストレージに転換 βテスト開始 - ITmedia ニュース
http://www.itmedia.co.jp/news/articles/1206/25/news123.html

290 :
https://github.com/heroku/heroku
https://github.com/heroku/heroku.rb
get_ps('app') # list current processes for 'app' app
post_ps('app', 'command') # run 'command' command in context of 'app' app
post_ps_restart('app') # restart all processes for 'app' app
post_ps_scale('app', 'type', 'quantity') # scale 'type' type processes to 'quantity' for 'app' app
post_ps_stop('app', 'ps' => 'web.1') # stop 'web.1' process for 'app' app
post_ps_stop('app', 'type' => 'web') # stop all 'web' processes for 'app' app
put_dynos('app', 'dynos') # set number of dynos for bamboo app 'app' to 'dynos'
put_workers('app', 'workers') # set number of workers for bamboo app 'app' to 'workers'
post_ps_restart('app', 'ps' => 'web.1') # restart 'web.1' process for 'app' app

291 :
require 'heroku-api'
heroku = Heroku::API.new(:api_key => API_KEY)
post_ps_scale('app', 'type', 'quantity') # scale 'type' type processes to 'quantity' for 'app' app
https://github.com/heroku/heroku.rb
Heroku API
https://api-docs.heroku.com/

292 :
Action.IO
https://www.action.io/
The Twelve-Factor App
http://www.12factor.net/

293 :
Heroku Installer - 開発な日々  
http://gkbr.me/post/25234471050

294 :
Herokuとrails
http://www.slideshare.net/ShinichirouNakamura/herokurails
About rails 3
http://www.slideshare.net/issei126/about-rails-3-13456888

295 :
Dumper: Database Backup for Rails  
http://dumper.io/

296 :
https://github.com/kenn/dumper
https://twitter.com/#!/dumperapp

297 :
Dynometer
https://dynometer.restful-labs.com/
http://hirefireapp.com/
http://www.heroscale.com/
http://twitter.com/heroscale
Heroku API
https://api-docs.heroku.com/

298 :
heroku addons:add heroku-postgresql:dev
https://postgres.heroku.com/blog/past/2012/4/26/heroku_postgres_development_plan/
heroku addons:add heroku-postgresql:crane
https://postgres.heroku.com/blog/past/2012/5/3/crane_the_new_50_per_month_production_database_/

299 :
Scalr is an open-source cloud management software for public and private cloud infrastructure.
Scalr supports AWS, Rackspace, Cloudstack, Eucalyptus and Nimbula
http://scalr.net

300 :
Papertrail
The log management service we always wanted.
Papertrail makes logs fun. Ish.
https://addons.heroku.com/papertrail
https://addons.heroku.com/loggly
https://addons.heroku.com/logentries
https://addons.heroku.com/progstr
https://devcenter.heroku.com/articles/logging



301 :
Herokuで動かす スクリーンショットサーバ
http://www.slideshare.net/shinichitomita/heroku-13481894
Heroku meetup #5_Best Teacher
http://www.slideshare.net/toshimitsumiyachi/heroku-meetupbest-teacher

302 :

https://devcenter.heroku.com/articles/ssl
https://devcenter.heroku.com/articles/csr
https://devcenter.heroku.com/articles/ssl-certificate
https://devcenter.heroku.com/articles/ssl-endpoint

303 :


https://github.com/heroku/heroku-buildpack-hello

304 :
http://www.slideshare.net/shinichitomita/phantomjs-screenshot-server-on-heroku

305 :
HerokuでPHPをmbstring付きで動かす&パフォーマンス比較 : candycane development blog
herokuはpagodaboxやphpfogよりもパフォーマンスが良かったようです。
http://blog.candycane.jp/archives/1375
heroku で PHP を使う - A Day in Serenity @ Kenji  
http://d.hatena.ne.jp/Kenji_s/20120228/1330418302
linux - PHP Multibyte String on Heroku - Stack Overflow  
http://stackoverflow.com/questions/8656247/php-multibyte-string-on-heroku

306 :

http://qa.atmarkit.co.jp/
http://stackoverflow.com/

307 :

https://devcenter.heroku.com/articles/buildpacks
https://github.com/heroku/heroku-buildpack-hello
Example usage:
$ ls
hello.txt
$ heroku create --stack cedar --buildpack http://github.com/heroku/heroku-buildpack-hello.git
$ git push heroku master
...
-----> Heroku receiving push
-----> Fetching custom buildpack
-----> HelloFramework app detected
-----> Found a hello.txt

308 :

https://devcenter.heroku.com/articles/buildpacks
https://devcenter.heroku.com/articles/buildpack-api
https://devcenter.heroku.com/articles/buildpack-binaries


309 :

Heroku | Provider
https://addons.heroku.com/provider
https://addons.heroku.com/provider/resources
https://addons.heroku.com/provider/resources/technical/sample
https://addons.heroku.com/provider/resources/technical/reference/index
https://addons.heroku.com/provider/resources/technical/reference/kensa-create



310 :
https://github.com/herokaijp/devcenter/wiki/_pages

311 :
pusher
https://github.com/tarnfeld/PusherChat-Rails
http://pusher-chat.heroku.com/

312 :
NIFTY Cloud C4SAって何? OSSCafe
http://www.slideshare.net/ysaotome/nifty-cloud-c4sa-osscafe

313 :
How much does a dyno cost? | Heroku Dev Center
https://devcenter.heroku.com/articles/how-much-does-a-dyno-cost
https://devcenter.heroku.com/articles/usage-and-billing
https://devcenter.heroku.com/articles/oneoff-admin-ps
http://d.hatena.ne.jp/koshigoeb/20111112/1321070001


314 :
Database performance on Heroku is measured by connections, memory, and CPU Units.
Connections are the number of processes (dynos + workers + external connections)
which can connect to a database simultaneously.
https://devcenter.heroku.com/articles/database
プラン ronin fugu ika zilla baku mecha
接続コネクション数 16 20 50 100 200 400
http://thinkit.co.jp/story/2011/03/23/2060?page=0,1
http://blog.heroku.com/archives/2010/11/4/heroku_postgresql/
https://addons.heroku.com/heroku-postgresql
How many simultaneous connections will a shared database on Heroku allow? - Quora
You should be safe with up to around 20 connections.
http://www.quora.com/How-many-simultaneous-connections-will-a-shared-database-on-Heroku-allow

315 :
$ heroku addons:add heroku-shared-postgresql
$ heroku pg:credentials HEROKU_SHARED_POSTGRESQL_COPPER
$ heroku pg:psql HEROKU_SHARED_POSTGRESQL_COPPER
$ heroku pg:info HEROKU_SHARED_POSTGRESQL_COPPER
=== HEROKU_SHARED_POSTGRESQL_COPPER
Status: ok
Tables: 5
Bytes: 81920
Connections: 6
Idle connections: 5
Idle connections in txn: 0
Active connections: 1
https://devcenter.heroku.com/articles/heroku-shared-postgresql

316 :
Gondor — effortless production Django hosting
https://gondor.io/

317 :
Dev plan databases are limited to 20 connections.
https://devcenter.heroku.com/articles/heroku-postgres-dev-plan
https://devcenter.heroku.com/articles/heroku-labs-default-heroku-postgresql-dev


318 :
Uploading Files to S3 in Rails with Paperclip | Heroku Dev Center
https://devcenter.heroku.com/articles/uploading-files-s3-rails-paperclip
Using AWS S3 to Store Static Assets and File Uploads | Heroku Dev Center
https://devcenter.heroku.com/articles/s3#credentials

319 :
Heroku is down again. | Hacker News
http://news.ycombinator.com/item?id=4180339
Heroku down? | Hacker News
http://news.ycombinator.com/item?id=4114846

320 :
「クックパッド」の裏側にいってきた
http://b.hatena.ne.jp/entry/www.sssg.org/blogs/naoya/archives/1126

321 :
Creating your own Syslog drain
You can run a standalone EC2 instance with Ubuntu and rsyslog.
To begin, boot an instance and allow Heroku’s servers access to the syslog port:
https://devcenter.heroku.com/articles/logging
https://devcenter.heroku.com/articles/logentries
https://devcenter.heroku.com/tags/logging


322 :

https://status.heroku.com/
https://twitter.com/#!/herokustatus
AWS障害による影響を小さくするための設計(2011/4/21の障害を踏まえて) - よかろうもん!
http://d.hatena.ne.jp/interu/20110425/1303731515
youRoomにおいて発生した 2011/4/21 のAWSの障害について技術的な観点から - mat_akiの日記
http://d.hatena.ne.jp/mat_aki/20110422/1303440808

323 :
さくらクラウド・さくらVPS・AmazonEC2・Rackspace CloudでRailsプロジェクトを作ってベンチマーク
http://d.hatena.ne.jp/xibbar/20120625#1340584854

324 :
http://proxy.heroku.com/

325 :
fog - The Ruby cloud services library  
http://fog.io

326 :
2012年までにIaaSやPaaSはなくなる!?
http://www.bell-net.co.jp/blog/?cat=178
Google、Amazon対抗のIaaS「Google Compute Engine」発表
http://www.itmedia.co.jp/news/articles/1206/29/news032.html
http://cloud.google.com/pricing/compute-engine.html


327 :
http://www.infoq.com/jp/news/2012/07/GCE

328 :
heroku run rake assets:precompile

329 :
HerokuCheck
http://hrkcheck.dejitama.com

330 :
wal
https://github.com/heroku/WAL-E

331 :
米クラウドベンダー「SoftLayer」は、Amazon、RackSpaceとどう戦っているか? − Publickey
http://www.publickey1.jp/blog/12/softlayeramazonrackspace.html


332 :
tuningathon 4 に参加&優勝してきました - blog.tnmt.info
refineryていうRoR製CMSのブログ機能のチューニングがお題
http://blog.tnmt.info/2012/07/01/tuningathon4/

333 :
http://titanous.com/posts/vulnerabilities-in-heroku-build-system

334 :
Scaling PHP Cloud  
https://pagodabox.com/

335 :
Treasure Data Analytics 第6回 〜Heroku Addon からアクションログを取得する〜 - doryokujin's blog
http://doryokujin.hatenablog.jp/entry/2012/07/05/025737
http://docs.treasure-data.com/articles/heroku-rails
http://toolbelt.treasure-data.com/


336 :
Rubber and Amazon EC2
Deploying to Amazon EC2 allows you to scale an application quickly.
http://railscasts.com/episodes/347-rubber-and-amazon-ec2


337 :
Kavis氏のブログによれば、氏の会社は2009年から5回AWSの障害に見舞われているが、サービスが落ちたことはない。
http://www.infoq.com/jp/news/2012/07/Avoiding-Downtime-in-Cloud
How we avoided downtime again as AWS takes an outage | Kavis Technology Consulting
http://www.kavistechnology.com/blog/?p=2056
https://status.heroku.com/
https://twitter.com/#!/herokustatus
AWS障害による影響を小さくするための設計(2011/4/21の障害を踏まえて) - よかろうもん!
http://d.hatena.ne.jp/interu/20110425/1303731515
youRoomにおいて発生した 2011/4/21 のAWSの障害について技術的な観点から - mat_akiの日記
http://d.hatena.ne.jp/mat_aki/20110422/1303440808
Amazon の Virginia DC がダウン: Quora や Heroku に影響が! « Agile Cat — in the cloud
http://agilecat.wordpress.com/2012/06/16/amazon-の-virginia-dc-がダウン:-quora-や-heroku-に影響が!/
Amazon に起こった大規模ダウンタイムを分析する
Amazon AWS の障害を総括すると、クラウドの勝利が見えてくる_1
http://agilecat.wordpress.com/2011/04/25/amazon-aws-の障害を総括すると、クラウドの勝利が見えて/
Amazon AWS の障害を総括すると、クラウドの勝利が見えてくる_2
http://agilecat.wordpress.com/2011/04/27/amazon-aws-の障害を総括すると、クラウドの勝利が見え%e3%81-2/

338 :
HerokuでPHPのコマンドラインを使うには : candycane development blog
http://blog.candycane.jp/archives/1525

339 :
$ git push heroku yourbranch:master

340 :
http://herocutter.heroku.com/
https://github.com/heroku/heroku
https://github.com/heroku/heroku.rb
https://github.com/fastestforward/heroku_san
https://github.com/ddollar/heroku-accounts




341 :
Working with SVN and Heroku | Robin Percy's Blog
http://blog.robinpercy.com/2012/04/29/working-with-svn-and-heroku/

342 :
Heroku’s early history: 4 home pages that made $212 million < Francis is
http://www.flourish.org/blog/?p=687

343 :
意外と知られていない無料VPS(centos,debian)を入手しよう!
http://hiroki.jp/2012/07/07/4625/

344 :
>>343
http://hirocaster.github.com/wdpress69/
https://github.com/hirocaster/wdpress69/

345 :
CentOSをサーバとして活用するための基本的な設定 (さくらインターネット創業日記)
http://tanaka.sakura.ad.jp/archives/001065.html
さくら VPS CentOS 6.2 の基本設定まとめ - くにくにネット
http://kuni92.net/article/264519222.html

346 :
http://aws.amazon.com/jp/sdkforruby/
https://github.com/amazonwebservices/aws-sdk-for-ruby
http://docs.amazonwebservices.com/AWSRubySDK/latest/frames.html
https://github.com/timkay/aws
http://timkay.com/aws/

347 :
https://sqale.jp/about
Monitoring Casual Talk #1でNagiosの運用について話してきました - lamanotramaの日記
http://d.hatena.ne.jp/lamanotrama/20120618/1339988584
http://ja.wikipedia.org/wiki/Nagios

348 :
sqale
https://speakerdeck.com/u/hsbt/p/introduction-of-sqale

349 :
http://codelearn.org/launch
RoR in the browser (Heroku + Code-academy) | Hacker News
http://news.ycombinator.com/item?id=4213260
https://www.action.io/


350 :
Heroku Invoice Security follow-up | Hacker News  
http://news.ycombinator.com/item?id=4127016

351 :
Amazonクラウドを襲った嵐が、EC2、EBS、ELB、RDSの障害に発展した理由(前編) − Publickey
http://www.publickey1.jp/blog/12/amazonec2ebselbrds.html
Amazonクラウドを襲った嵐が、EC2、EBS、ELB、RDSの障害に発展した理由(後編) − Publickey
http://www.publickey1.jp/blog/12/amazonec2ebselbrds_1.html

352 :
Heroku | Cloud Application Platform
http://www.heroku.com/
AppFog - The Cloud Foundry Experts
http://www.appfog.com/
Sqale - 開発者のためのホスティングサービス【スケール】Ruby on Rails 対応。
http://sqale.jp/


353 :
https://github.com/appfog/af-ruby-rails

354 :
ruby on rails - Heroku - invalid byte sequence in US-ASCII (ArgumentError) - Stack Overflow
http://stackoverflow.com/questions/8089129/heroku-invalid-byte-sequence-in-us-ascii-argumenterror

355 :
PosgreSQL向けのバックアップ/リカバリマネージャー「Barman 1.0」が登場 | エンタープライズ | マイナビニュース
http://news.mynavi.jp/news/2012/07/11/011/
http://www.pgbarman.org/

356 :
インストーラーで簡単セットアップのWebベースPostgreSQL管理「TeamPostgreSQL」 - MOONGIFT|オープンソース・ソフトウェア紹介を軸としたITエンジニア、Webデザ...
http://www.moongift.jp/2012/06/20120604-3/
http://www.teampostgresql.com/

357 :
https://status.heroku.com/incidents/386

358 :
$ heroku addons:add heroku-shared-postgresql
$ heroku pg:info HEROKU_SHARED_POSTGRESQL_COPPER
=== HEROKU_SHARED_POSTGRESQL_COPPER
Status: ok
Tables: 5
Bytes: 81920
Connections: 6
Idle connections: 5
Idle connections in txn: 0
Active connections: 1
https://devcenter.heroku.com/articles/heroku-shared-postgresql

359 :
Semaphore - Hosted Continuous Integration Service for Ruby and Rails  
https://semaphoreapp.com/

360 :
精鋭がHeroku開発に挑む--「スタートアップ on Heroku」 - page2 - builder
Gmailの成功にも強い刺激を受けたとのこと。
Gmailによって、ユーザーはサーバの設定やスパムの排除などといった運用面の課題から解放され、メールを利用するという本質のみにフォーカスできるようになった。
http://builder.japan.zdnet.com/virtualization/35019245/2/

361 :
https://twitter.com/kadoppe/status/223704739072835586

362 :
まるで魔法。GitリポジトリをHerokuに直接デプロイ「Heroku Installer」 - MOONGIFT|オープンソース・ソフトウェア紹介を軸としたITエンジニア、Webデザイナー向けブログ
http://www.moongift.jp/2012/07/20120713-2/

363 :
PostgreSQLで遅くなるクエリ 200以上のカラムを持つテーブルが数10あるDBを構築
http://axion.sakura.ne.jp/blog/index.php?UID=1341976799

364 :
Node.jsのPaaSでメジャーをねらうNodejitsuがJoyentとの提携でその第一歩を
http://jp.techcrunch.com/archives/20120713nodejitsu-takes-on-heroku-microsoft-azure-with-node-js-platform-cloud/
nodejitsu.com
http://nodejitsu.com/

365 :
HerokuのSinatraにバックグラウンドワーカーを詰め込んで節約  
http://b.hatena.ne.jp/entry/shokai.org/blog/archives/6309

366 :
heroku(ハロク)で行こう - NAVER まとめ
http://matome.naver.jp/odai/2133535673129074201

367 :
AWSの障害に起因したHerokuの障害について、Heorkuによるレポートが公開されたので要点を翻訳しました(全訳ではありません)
世界でも有数のインフラエンジニアであるAmazonの従業員がうまく稼働させられないものは、恐らく誰にもできないだろう
http://journal.sooey.com/130

368 :
Amazonって本当はレベル低いだろ?

369 :
>>367
さんくす

370 :
Heroku | Buildpacks: Heroku for Everything  
http://blog.heroku.com/archives/2012/7/17/buildpacks/

371 :
Ten Million Rows for Under Ten Bucks
http://b.hatena.ne.jp/entry/s/postgres.heroku.com/blog/past/2012/7/12/row_limits_for_dev_plan_and_introducing_the_basic_plan_/
Heroku | Heroku Postgres Basic Plan and Row Limits
http://blog.heroku.com/archives/2012/7/16/heroku_postgres_basic_plan_and_row_limits/

372 :
Dev Starter Tier 10,000 row limit 0 MB cache
Basic Starter Tier 10 million row limit 0 MB cache
Crane Production Tier 0.4 GB cache
https://addons.heroku.com/heroku-postgresql

373 :
Mecha Production Tier 68 GB cache
$6400.00 per month
https://addons.heroku.com/heroku-postgresql


374 :
Starter Tier
Free and low-cost plans designed for trial, development, testing, and basic usage.
99.5% Expected Uptime.
No dedicated data cache.
https://addons.heroku.com/heroku-postgresql

375 :
Production Tier
Designed for serious production usage, starting at $50 / month.
99.95% expected uptime.
Dedicated data cache varies with the plan size (0.4 - 68 gb). Up to 1 tb of total storage.
Database "Forks" make testing and development safe and effortless.
Database "Followers" provide one-click replication for horizontal scalability.
Automated health-checks ensure that your database stays available.
Auto snapshots (daily) with 1 month retention
https://addons.heroku.com/heroku-postgresql

376 :
All Plans
Fully managed database service.
Continuous Protection - Write ahead logs are backed up every 60 seconds for maximum durability.
Data Clips - share the data in your database with simple, secure URLs.
Direct psql / libpq access
Postgres 9.1. Un-modified for guaranteed compatibility.
Postgres Extensions (hstore)
https://addons.heroku.com/heroku-postgresql

377 :
顧客は必要に迫られて行わなければならない作業、バックアップ/リカバリ、ストレージ管理、アップグレードなどに費やす時間を節約できる。そして顧客自身の付加価値を高めるためのアプリケーション開発に集中できる。
http://www.atmarkit.co.jp/news/201207/19/aws.html

378 :
Postgres.app | the easiest way to run PostgreSQL on the Mac
http://postgresapp.com/
https://github.com/mattt/PostgresApp

379 :
PosgreSQL向けのバックアップ/リカバリマネージャー「Barman 1.0」が登場 | エンタープライズ | マイナビニュース
http://news.mynavi.jp/news/2012/07/11/011/index.html

380 :
PostgreSQL Rising
http://wekeroad.com/2012/07/19/postgresql-rising
MySQL is done. It's the Postgres Age. by Jeff Dickey
http://dickey.xxx/mysql-is-done-it-s-the-postgres-age
「MySQLが技術的なギャップを縮めてきているものの、PostgreSQLは優秀で人気がある」
http://www.computerworld.jp/topics/601/
MySQLにはDDLトランザクション処理がないので、
http://www.infoq.com/jp/news/2009/05/heroku-provisionless-revolution
MySQL :: MySQL 5.1 リファレンスマニュアル :: 12.4.2 ロールバックできないステートメント
http://dev.mysql.com/doc/refman/5.1/ja/cannot-roll-back.html

381 :
http://ja.wikipedia.org/wiki/PostgreSQL

382 :
Cloudinary - Blog - Heroku add-on for image management in the cloud
http://cloudinary.com/blog/heroku_add_on_for_image_management_in_the_cloud

383 :
PaaSをオープンソースのCloud Foundryで仕掛けるVMwareの狙いはどこにある? − Publickey
http://www.publickey1.jp/blog/11/paascloud_foundryvmware.html
Cloud Foundryことはじめ
http://blog.udcp.net/2011/11/07/cloud-foundryことはじめ2%e3%80%80―cloud-foundryって何が美味しいの?―/
Rails Hub情報局: Cloud FoundryがRuby「で」作られたクラウドだった件
http://el.jibun.atmarkit.co.jp/rails/2011/06/cloud.html
Rails Hub情報局: Rubyはイノベーション言語として選ばれている
http://el.jibun.atmarkit.co.jp/rails/2012/03/ruby-3574.html

384 :
Cloudinary | Add-ons | Heroku
https://addons.heroku.com/cloudinary

385 :
システム・エンジニアの基礎知識
http://www.sist.ac.jp/~suganuma/kougi/other_lecture/SE/SE.html

386 :
heroku pg:credentials --reset --app <your-app>
heroku pg:credentials
Rotating Database Credentials | Heroku Dev Center
https://devcenter.heroku.com/articles/rotating-database-credentials

387 :
Upload
Cloudinary::Uploader.upload("my_picture.png")
Embedding and transforming images
cl_image_tag("sample.jpg", :width => 100, :height => 150, :crop => :fill)
https://devcenter.heroku.com/articles/cloudinary

388 :
$ heroku labs:enable default-heroku-postgresql-dev
$ heroku labs:disable default-heroku-postgresql-dev
https://devcenter.heroku.com/articles/labs-default-heroku-postgresql-dev

389 :
https://postgres.heroku.com/blog/past/2012/7/17/rotate_database_credentials_on_heroku_postgres_/
https://postgres.heroku.com/blog/past/2012/7/18/postgresapp_the_easiest_way_to_develop_with_postgres_on_a_mac/

390 :
フレクトのR&Dブログ: Herokuの負荷テスト
http://blog.flect.co.jp/labo/2012/07/heroku-578d.html


391 :
時計仕掛けのHeroku | Synergy Marketing LAB BLOG
http://lab.synergy-marketing.co.jp/blog/tech/heroku-addons-scheduler

392 :
Heroku does not support session affinity.
Requests are routed to your application nodes (dynos) using round-robin.
https://devcenter.heroku.com/articles/intro-for-java-developers


393 :
dynoを増やすとリクエストはラウンドロビンで各dynoに割り振られます。
セッションは考慮されないのでセッション変数的なものを使用する場合はMemcacheが必須になります。
http://blog.flect.co.jp/labo/2012/07/heroku-578d.html

394 :
http://en.wikipedia.org/wiki/Load_distribution
http://en.wikipedia.org/wiki/Round-robin_DNS

395 :
Fast & Scalable // Speaker Deck
https://speakerdeck.com/u/schneems/p/fast-scalable

396 :
>>314 >>315
Limits
Crane databases can have up to 20 simultaneous connections.
Kappa databases can have up to 40 simultaneous connections.
https://devcenter.heroku.com/articles/heroku-postgres-documentation#limits
Crane & Kappa connection limits
https://devcenter.heroku.com/changelog-items/99


397 :
Heroku | Release of new database plans on August 1st  
http://blog.heroku.com/archives/2012/7/26/new-heroku-postgres-db-plans-released/

398 :
Heroku Postgres Dev Plan | Heroku Dev Center
Dev plan databases are limited to 20 connections and 10,000 total rows.
https://devcenter.heroku.com/articles/heroku-postgres-dev-plan#limits

399 :
https://addons.heroku.com/papertrail

400 :
Heroku
Load-balancing is automatic.
When you scale your application up and down,
the individual nodes (dynos) automatically register and de-register with the routing infrastructure.
Heroku does not support session affinity.
Requests are routed to your application nodes (dynos) using round-robin.
https://devcenter.heroku.com/articles/intro-for-java-developers

401 :
ubuntu
debian
linux
windows

402 :
http://www1.nhk.or.jp/olympic/live/

403 :
http://www.exoplatform.com/company/en/resource-viewer/Getting-Started-Guide/deploy-a-ruby-on-rails-app-to-heroku-with-exo-cloud-ide

404 :
PaaS「ニフティクラウド C4SA」正式版--Ruby on RailsやMySQLも提供 - CNET Japan
http://japan.cnet.com/news/service/35019850/
Sqale - 開発者のためのホスティングサービス【スケール】Ruby on Rails 対応。
http://sqale.jp/

405 :
MOGOK
http://mogok.jp/

406 :
Shared Workforce | Add-ons | Heroku  
https://addons.heroku.com/sharedworkforce

407 :
unwiredcouch.com - Deploying Sensu monitoring on Heroku
http://unwiredcouch.com/2012/07/31/deploy-sensu-heroku.html
https://github.com/sensu/sensu

408 :
http://www.ustream.tv/channel/niftycloudc4sa

409 :
AppFog: Pricing
https://console.appfog.com/pricing

410 :
web dyno idled out after one hour of inactivity.
https://devcenter.heroku.com/articles/dynos#dyno-idling

411 :

Connections to one-off dynos will be closed after one hour of inactivity (in both input and output).
https://devcenter.heroku.com/articles/oneoff-admin-ps

412 :
All That Cloud: Amazon, Google App Engine, Windows Azure, Heroku, Jelastic - Java Code Geeks
http://www.javacodegeeks.com/2012/07/all-that-cloud-amazon-google-app-engine.html

413 :
ioDriveは10万IOPS、SSDも3.6万IOPSほどでした。
ハードディスクでは数百から千ぐらいのIOPS
http://internet.watch.impress.co.jp/docs/special/20120731_549042.html
IOPSは、ディスクが1秒当たりに処理できるI/Oアクセスの数である。
IOPSが高ければ高いほど、高性能なディスクと言える。
http://itpro.nikkeibp.co.jp/article/lecture/20070104/258117/

414 :
>>314 >>315
Limits
Crane databases can have up to 20 simultaneous connections.
Kappa databases can have up to 40 simultaneous connections.
https://devcenter.heroku.com/articles/heroku-postgres-documentation#limits

415 :
PostgreSQL におけるサービス運用妨害 (サーバクラッシュ) の脆弱性
http://jvndb.jvn.jp/ja/contents/2012/JVNDB-2012-003235.html

416 :
ゆるふわLinux-HA 〜PostgreSQL編〜  
http://www.slideshare.net/smellman/linuxha-postgresql

417 :
heroku pg:psql でタイムアウトが発生する...
なぜだろう?

418 :
HerokuのOne-Off processについて - こしごぇ
http://d.hatena.ne.jp/koshigoeb/20111112/1321070001
https://devcenter.heroku.com/articles/usage-and-billing
https://devcenter.heroku.com/articles/oneoff-admin-ps

419 :
One-Off process
Running heroku run XXX invokes a one-off dyno,
which Heroku now accounts for based on wall clock execution time.
For example, an interaction via heroku run console in which you open the run the command at 10:00,
do a few queries for 6 minutes, and then close the session at 10:06, would accrue 0.1 dyno-hour.
http://devcenter-jon.herokuapp.com/articles/billing-changes


420 :
Revert: Crane/Kappa Connection Limits
Change effective on 27 July 2012
We’ve reverted the crane/kappa connection limit change from 2 days ago.
Any new crane/kappas will not have a limit and
we’ll be going through and removing any set limits on those types of databases.
https://devcenter.heroku.com/changelog-items/100

421 :
One-off dynos disconnect when idle
Change effective on 12 June 2012
When the terminal attached to a heroku run dyno has had no input or output for one hour,
the dyno will be disconnected and terminated via SIGHUP. This avoids unexpected charges when leaving console sessions (such as django-admin.py shell or rails console) sitting idle.
https://devcenter.heroku.com/changelog-items/59

422 :

“AWSこけたらみなこける”の打開策としてAppFogとRackspaceがマルチクラウドPaaSを準備
http://jp.techcrunch.com/archives/20120801appfog-and-rackspace-want-to-break-your-app-out-of-amazons-walled-garden/

423 :
http://guides.rubyonrails.org/v2.3.11/i18n.html

424 :
heroku addons:add shared-database


425 :
Using a CDN Asset Host with Rails 3.1 | Heroku Dev Center
https://devcenter.heroku.com/articles/cdn-asset-host-rails31

426 :

$ heroku addons:add pgbackups
https://devcenter.heroku.com/articles/pgbackups
https://devcenter.heroku.com/articles/export-from-heroku-postgres
https://addons.heroku.com/pgbackups


427 :

Heroku vs. Amazon Web Services, a Cloud Comparison | Cloud Zone
http://cloud.dzone.com/articles/comparison-clouds-heroku-amazon
[Ruby][さくらクラウド][AWS][Rackspace]さくらクラウド・さくらVPS・AmazonEC2・Rackspace CloudでRailsプロジェクトを作ってベンチマーク
http://d.hatena.ne.jp/xibbar/20120625#1340584854

428 :
http://www.ec2instances.info/
http://ec2-cost.heroku.com/
http://aws.amazon.com/jp/ec2/pricing/


429 :
6 Free Cloud Services for Programmers | ZoomZum  
http://zoomzum.com/6-free-cloud-services-for-programmers/

430 :
$ heroku config
ってやると
you don't have access to the app myapp
って出るんだが・・・。
なんでなの?
分からん。

431 :

#347 Rubber and Amazon EC2 - RailsCasts
http://railscasts.com/episodes/347-rubber-and-amazon-ec2?view=asciicast
https://github.com/wr0ngway/rubber/

432 :
EC2 on Rails
http://ec2onrails.rubyforge.org/

433 :

rails + rubber + github + amazon ec2 free tier step by step
http://ilakeruby.blogspot.com/2011/04/rails-rubber-github-amazon-free-tier.html
How to Deploy a Rails app to EC2 in less than an hour using Rubber | Ginzametrics.com
http://www.ginzametrics.com/deploy-rails-app-to-ec2-with-rubber.html
Deploying your Rails app to AWS EC2 using Rubber « ramenlab
http://ramenlab.wordpress.com/2011/06/24/deploying-your-rails-app-to-aws-ec2-using-rubber/

434 :
rubber - Google グループ  
https://groups.google.com/forum/?fromgroups#!forum/rubber-ec2

435 :
Heroku Postgres Starter Tier | Heroku Dev Center
Limits
Dev plan databases are limited to 20 connections and 10,000 total rows.
Basic plan databases are limited to 20 connections and 10,000,000 total rows.
https://devcenter.heroku.com/articles/heroku-postgres-starter-tier#limits

436 :
Dynometer
https://dynometer.restful-labs.com/
https://devcenter.heroku.com/articles/cloudvertical
http://hirefireapp.com/
http://www.heroscale.com/
http://twitter.com/heroscale
Heroku API
https://api-docs.heroku.com/

437 :
http://toro.2ch.net/test/read.cgi/hosting/1341929184/l50

438 :

AWS EC2の月額料金 
http://d.hatena.ne.jp/shin/20110712/p1
スモールインスタンスリージョン オンデマンド 1年リザーブ 3年リザーブ
東京 5840円 4221円 3446円
US西海岸 5548円 3853円 3114円
US東海岸 4964円 3265円 2530円

439 :
http://aws.amazon.com/jp/ec2/

440 :
http://cloud.sakura.ad.jp/specification.php
サーバプラン料金 月額料金 日割料金 CPU メモリ ディスク
プラン1 2,500円 126円 仮想1コア 2GB 20GB
プラン2 3,750円 189円 仮想1コア 3GB 20GB

441 :
Amazon EC2 で Windows 環境の構築 その1 リモートデスクトップで接続
http://awoni.net/hosting/ec2-setup/
Amazon EC2 で Windows 環境の構築 その2 日本語化
http://awoni.net/hosting/ec2-japanese/
http://www.slideshare.net/tomoyukitochihira/aws-13718053


442 :
EC2はサーバーを停止するとデータが消える 2年以上も前の話です。。
EBS用いれば、サーバー停止 してもデータは消えない
EC2はIPアドレスが毎回変わってしまう
EIP(Elastic IP)を用いて固定アドレスを割り当て可能
クラウドは障害がおきると何もできない
物理DC/サーバーも障害は起こる。
クラウドの良さは、障害からの復帰に複数の手段があり、備えておける
http://www.slideshare.net/kentamagawa/aws-9170814
http://www.slideshare.net/kentamagawa/ss-8786548
http://www.slideshare.net/yuumi3/aws-on-rails

443 :
ioDriveは10万IOPS、SSDも3.6万IOPSほどでした。
ハードディスクでは数百から千ぐらいのIOPS
http://internet.watch.impress.co.jp/docs/special/20120731_549042.html
http://server.sakura.ad.jp/dedicated/expressg2.html
IOPSは、ディスクが1秒当たりに処理できるI/Oアクセスの数である。
IOPSが高ければ高いほど、高性能なディスクと言える。
http://itpro.nikkeibp.co.jp/article/lecture/20070104/258117/

444 :
第41夜 AWSのEC2とかスケールアップとか
http://d.hatena.ne.jp/shin/20110928/p1

445 :
http://toro.2ch.net/test/read.cgi/hosting/1341929184/l50
http://twitter.com/kunihirotanaka
http://twitter.com/aono

446 :
さくらのVPSでWindows XPを動かしてはいない日記 - アルヒ森の中困ったさんに出会った日記
http://d.hatena.ne.jp/aruhi00/20110627/p1
http://f.hatena.ne.jp/aruhi00/20110627224117

447 :

PostgreSQL is Our New Default | Engine Yard Blog
http://www.engineyard.com/blog/2012/postgresql-is-our-new-default/
MySQL vs PostgreSQL - WikiVS
http://www.wikivs.com/wiki/MySQL_vs_PostgreSQL#bodyContent

448 :
PostgreSQLがセキュリティアップデート - XMLの問題に対処 | エンタープライズ | マイナビニュース
「9.1.5」「9.0.9」「8.4.13」
http://news.mynavi.jp/news/2012/08/20/054/

449 :
ioDriveとIONがインストールされた1Uサーバは100万IOPS(秒間I/O回数)以上、最大6GB/秒のスループット、0.06ミリ秒未満のレイテンシを実現
http://www.computerworld.jp/topics/561/ストレージ/204383/フュージョンアイオー、「ioDrive」搭載サーバを共有ストレージにするソフトウェア発表
ioDriveは10万IOPS、SSDも3.6万IOPSほどでした。
ハードディスクでは数百から千ぐらいのIOPS
http://internet.watch.impress.co.jp/docs/special/20120731_549042.html
http://server.sakura.ad.jp/dedicated/expressg2.html
IOPSは、ディスクが1秒当たりに処理できるI/Oアクセスの数である。
IOPSが高ければ高いほど、高性能なディスクと言える。
http://itpro.nikkeibp.co.jp/article/lecture/20070104/258117/

450 :

【AWS発表】 Glacier – 1GBあたり月額約1円で利用可能なアーカイブストレージが登場 - Amazon Web Services ブログ
http://aws.typepad.com/aws_japan/2012/08/amazon-glacier-archival-storage-for-one-penny-per-gb-per-month.html

451 :
【AWS発表】 2TBのSSDを持つ、ハイ I/O EC2 インスタンスの登場 - Amazon Web Services ブログ
SSDストレージは、インスタンスのローカル側に存在しています。
PVMの場合、120,000 ランダムリード IOPS (Input/Output Operations Per Second) 、
10,000〜85,000ランダムライトIOPSが期待できます(ともに4K ブロック)。
http://aws.typepad.com/aws_japan/2012/07/aws発表-new-high-io-ec2-instance-type-hi14xlarge-2-tb-of-ssd-backed-storage.html

452 :
Fusion-io、10億IOPSの新技術「Auto Commit Memory」発表。ストレージなんてレベルじゃない、パーシステントなメモリだ − Publickey
http://www.publickey1.jp/blog/12/fusion-io10iopsauto_commit_memory.html
まさに怪物! Fusion-ioが容量10テラバイト/性能130万IOPSのフラッシュドライブ「ioDrive Octal」発表 − Publickey
http://www.publickey1.jp/blog/11/_fusion-io10130iopsiodrive_octal.html


453 :
性能の話では、実際にioDrive1台でHDD200台をストライピングしたくらいのIOPSをたたき出したベンチマーク結果
http://blog.sotm.jp/20110619/sfstudy-01

454 :
Spreedly Core | Add-ons | Heroku
https://addons.heroku.com/spreedlycore
https://devcenter.heroku.com/articles/spreedlycore
https://spreedlycore.com/manual/quickstart
Gemfury | Add-ons | Heroku
https://addons.heroku.com/gemfury
https://devcenter.heroku.com/articles/gemfury


455 :
Rap Genius Goes from 0 to 10 Million Users on Heroku
http://success.heroku.com/rapgenius
http://rapgenius.com/

456 :
Zero downtime deploys for Rails apps - Pedro Belo - RailsConf 2012
http://confreaks.com/videos/896-railsconf2012-zero-downtime-deploys-for-rails-apps

457 :
require 'heroku-api'
heroku = Heroku::API.new(:api_key => API_KEY)
post_ps_scale('app', 'type', 'quantity') # scale 'type' type processes to 'quantity' for 'app' app
https://github.com/heroku/heroku.rb
Heroku API
https://api-docs.heroku.com/

458 :
さくらのクラウドAPIドキュメント
サーバのリソースモニタ情報を取得
GET /server/:serverid/power
サーバの起動状態を取得
PUT /server/:serverid/power
サーバを起動
DELETE /server/:serverid/power
サーバを停止
PUT /server/:serverid/reset
http://developer.sakura.ad.jp/cloud/api/

459 :
mixi API Quick Start(サンプルアプリを自動作成) << mixi Developer Center (ミクシィ デベロッパーセンター) 
http://developer.mixi.co.jp/about-platform/api_quick_start/overview/

460 :
Ruby on Rails: 50 Best Websites Developed Using Ruby on Rails  
http://rubylogix.blogspot.com/2012/05/50-best-websites-developed-using-ruby.html

461 :
Herokuとrails
http://www.slideshare.net/ShinichirouNakamura/herokurails

462 :
forkwell.com Y U SO SLOW // Speaker Deck
https://speakerdeck.com/u/a_matsuda/p/forkwell-dot-com-y-u-so-slow

463 :
The Switch from Heroku to Hardware | Hacker News
http://news.ycombinator.com/item?id=4458308
http://justcramer.com/2012/08/30/how-noops-works-for-sentry/

464 :
PostgreSQL Query Cache - "pqc"
http://www.slideshare.net/uptimejp/postgresql-query-cache-pqc

465 :
https://github.com/snaga/pqc
http://nagaetty.hatenablog.com/entry/2012/08/21/211055


466 :
https://postgres.heroku.com/pricing
Crane
400 MB Cache
$ 50 / mo
kappa
Kappa
800 MB Cache
$ 100 / mo
ronin
Ronin
1.7 GB Cache
$ 200 / mo  

467 :
Queries made from cached data are often 100-1000x faster than from the full data set.
Well engineered, high performance, web applications will have 99% or more of their queries be served from cache.
https://devcenter.heroku.com/articles/cache-size
https://addons.heroku.com/heroku-postgresql


468 :
Fast Database Changeovers Using Followers | Heroku Dev Center
https://devcenter.heroku.com/articles/fast-database-changeovers

469 :
Bryan Landers | The Heroku Pricing Gap + Add-on Fever
http://blog.bryanlanders.com/post/26155936402/heroku-pricing-gap-addon-fever
http://news.ycombinator.com/item?id=4180726

470 :
http://stackoverflow.com/questions/12239442/cache-size-on-heroku-postgres-smaller-than-advertised
https://devcenter.heroku.com/articles/cache-size
http://www.postgresql.org/docs/current/static/storage-toast.html

471 :
Ruby PaaSのEngine Yardが日本で本格展開。IIJの「Mogok」も来月オープン予定と、Ruby PaaSが相次いで登場 − Publickey
http://www.publickey1.jp/blog/12/ruby_paasengine_yardiijruby_paasmogokruby_paas.html

472 :
dynos herokaijp/devcenter Wiki · GitHub
https://github.com/herokaijp/devcenter/wiki/dynos

473 :
http://aws.amazon.com/jp/s3/
http://www.rackspace.com/cloud/public/files/
http://dreamhost.com/cloud/dreamobjects/

474 :
JavaでHerokuのWorkerを作成する - フレクトのR&Dブログ
http://blog.flect.co.jp/labo/2012/09/javaherokuworke-7422.html
http://www.facebook.com/groups/171846576268309/permalink/268991549887144/
http://blog.flect.co.jp/labo/2012/08/playframework-5a1c.html

475 :
ついにCloud FoundryにWorker(Standalone app)が実装された!ので、早速触ってみた
http://blog.udcp.net/2012/05/02/how-to-use-cloud-foundry-standalone-apps/

476 :
フレクトのR&Dブログ: Herokuの負荷テスト
http://blog.flect.co.jp/labo/2012/07/heroku-578d.html

477 :
なんだこのスレ

478 :
As Heroku Boss Flees to Olive Farm, Where's the Platform Cloud Going? | Wired Enterprise | Wired.com
http://www.wired.com/wiredenterprise/2012/09/heroku/

479 :
>>477
2ちゃんねらーでHeroku使いこなせる奴が一人もいないので
記事のリンク貼ってごまかしているのです

480 :
Heroku | Multiple Ruby Version Support on Heroku
In your Gemfile:
source 'http://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.3'
http://blog.heroku.com/archives/2012/5/9/multiple_ruby_version_support_on_heroku/

481 :
PostgreSQL: PostgreSQL 9.2 released
http://www.postgresql.org/about/news/1415/
http://news.ycombinator.com/item?id=4499171

482 :

http://server.sakura.ad.jp/dedicated/simulation.php

http://www.ec2instances.info/
http://ec2-cost.heroku.com/
http://aws.amazon.com/jp/ec2/pricing/
http://aws.amazon.com/jp/ec2/instance-types/
http://www.frederico-araujo.com/2011/12/27/why-ec2-still-sux-on-disk-io/
http://news.ycombinator.com/item?id=3945740
https://devcenter.heroku.com/articles/migrating-data-between-plans
https://devcenter.heroku.com/changelog-items/37

483 :
https://gumroad.com/l/zvMS

484 :
http://bighadoop.wordpress.com/2012/08/23/big-data-on-heroku-hadoop-from-treasure-data/

485 :
リモートサーバのgit環境を構築 + git pushでdeploy出来るようにするまでのまとめ | clicktx::Tech::Memo
http://perl.no-tubo.net/2012/04/05/リモートサーバのgit環境を構築-git-pushでdeploy出来るように/
git pushでdeployな生活をつくる方法 - コードで気楽な日々を
http://d.hatena.ne.jp/hao_yayoi/20110817/1313516842

486 :
CoffeeMeeting Blog - CoffeeMeetingの現在のシステム構成を公開します  
http://coffeemeeting.tumblr.com/post/29882811187/coffeemeeting

487 :
A Letter to Heroku - Please Tier the Dynos | Hacker News
http://news.ycombinator.com/item?id=4503294

488 :
http://www.theherokuhackersguide.com/

489 :
http://rdegges.com/my-heroku-book-is-finished#more

490 :
Pagoda Box Is Easier Than Amazon Web Services, But More Customizable Than Heroku | TechCrunch
http://techcrunch.com/2012/09/11/pagoda-box-is-easier-than-amazon-web-services-but-more-customizable-than-heroku/
https://pagodabox.com/


491 :
PostgreSQL Rising
http://wekeroad.com/2012/07/19/postgresql-rising
MySQL is done. It's the Postgres Age. by Jeff Dickey
http://dickey.xxx/mysql-is-done-it-s-the-postgres-age
「MySQLが技術的なギャップを縮めてきているものの、PostgreSQLは優秀で人気がある」
http://www.computerworld.jp/topics/601/
MySQLにはDDLトランザクション処理がないので、
http://www.infoq.com/jp/news/2009/05/heroku-provisionless-revolution
MySQL :: MySQL 5.1 リファレンスマニュアル :: 12.4.2 ロールバックできないステートメント
http://dev.mysql.com/doc/refman/5.1/ja/cannot-roll-back.html

492 :
Pagoda BoxはAmazon Web Servicesより使いやすくHerokuよりもカスタマイズの自由あり
http://jp.techcrunch.com/archives/20120911pagoda-box-is-easier-than-amazon-web-services-but-more-customizable-than-heroku/


493 :
ストレージサービスであるAmazon S3の標準ストレージは、
99.999999999%の堅牢性と、99.99%の可用性を提供できるように設計されており、
また、世界中に広がるネットワークを活用し、
2つの施設における同時データ喪失を防げるように設計されています。
http://cloud.watch.impress.co.jp/docs/column/keyman/20120913_559151.html
HerokuがPostgreSQLのDatabase-as-a-Serviceを開始。しかし料金表がおかしいぞ − Publickey
If a meteor were to wipe out the east coast, you won’t lose your data.
もしも宇宙からの隕石で米東海岸が壊滅しても、データが失われることはありません。
http://www.publickey1.jp/blog/11/herokupostgresqldatabase-as-a-service.html


494 :
Heroku Meetup #6レポート その1 - フレクトのR&Dブログ
http://blog.flect.co.jp/labo/2012/09/heroku-meetup-6-5d24.html
プラン ronin fugu ika zilla baku mecha
接続コネクション数 16 20 50 100 200 400
http://thinkit.co.jp/story/2011/03/23/2060?page=0,1
http://blog.heroku.com/archives/2010/11/4/heroku_postgresql/
https://addons.heroku.com/heroku-postgresql

495 :
http://server.sakura.ad.jp/dedicated/simulation.php

http://www.ec2instances.info/
http://ec2-cost.heroku.com/
http://aws.amazon.com/jp/ec2/pricing/
http://aws.amazon.com/jp/ec2/instance-types/
http://www.frederico-araujo.com/2011/12/27/why-ec2-still-sux-on-disk-io/
http://news.ycombinator.com/item?id=3945740
https://devcenter.heroku.com/articles/migrating-data-between-plans
https://devcenter.heroku.com/changelog-items/37

496 :
JSONのネイティブサポートやNoSQLライクな拡張も
「PostgreSQL 9.2」リリース、大幅な性能アップを実現
具体的には、最大で毎秒35万件のリードクエリ(従来の4倍強)、
データウェアハウスクエリのIndex-onlyスキャン(同2〜20倍)、
最大で毎秒1万4000件のデータ書き込み(同5倍)に対応している。
http://www.atmarkit.co.jp/news/201209/11/postgresql.html


497 :
1.Ika: $800/month, 50 connections, 7.5 GB of RAM, 4 compute units
2.Baku: $3200/month, 128 connections, 34 GB of RAM, 13 compute units
3.Mecha: $6400/month, 256 connections, 68 GB of RAM, 26 compute units
http://www.postgresql.org/about/news/1259/

498 :

なぜTwitterは低遅延のままスケールできたのか 秒間120万つぶやきを処理、Twitterシステムの“今” − @IT
2008年時点でTwitter上で生まれるつぶやきの数は秒間30だったが、
2010年4月現在は約700にまで膨れ上がっている。
スポーツイベントやオスカーの発表時など、ピーク時には秒間2000に達するという。
http://www.atmarkit.co.jp/news/201004/19/twitter.html

499 :

Heroku Meetup #6レポート その1 - フレクトのR&Dブログ
5000件/秒
http://blog.flect.co.jp/labo/2012/09/heroku-meetup-6-5d24.html


500 :
heroku
http://www.ustream.tv/recorded/25394362

501 :
レポート:Sapporo RubyKaigi 2012 スペシャルレポート|gihyo.jp … 技術評論社
http://gihyo.jp/news/report/01/sapporo-rubykaigi2012

502 :
http://www.slideshare.net/mizzy/inside-sqales-backend-at-sapporo-ruby-kaigi-2012


503 :
http://www.ustream.tv/user/rubysapporo
http://www.ustream.tv/recorded/25395947
http://www.ustream.tv/recorded/25396312
http://www.ustream.tv/recorded/25396236


504 :
heroku でアイドリングになるのを回避する - kaz_shuの日記
http://d.hatena.ne.jp/kaz_shu/20120308/1331222413
how to stop an app on heroku - Stack Overflow
http://stackoverflow.com/questions/2811453/how-to-stop-an-app-on-heroku
google app engine - Heroku - Spin Up - Stack Overflow
http://stackoverflow.com/questions/5278206/heroku-spin-up

505 :
Keeping your Heroku app awake - Heroku | Google Groups
http://groups.google.com/group/heroku/browse_thread/thread/9f1a5d7d677fb4dc
idle idling アイドル アイドリング heroku
http://beouk.blogspot.jp/2012/02/keeping-heroku-awake.html
http://adam.heroku.com/past/2010/6/30/replace_cron_with_clockwork/
http://www.cron-job.org/cgi-bin/cronweb
NewRelic Webサービスのパフォーマンスを監視するサービス。
1分毎(設定で変更できます)に死活監視する機能がついているため、
アイドル時間によるherokuのダウン防止にも役立っています。
http://blog.mah-lab.com/2012/03/12/sonicgarden-heroku/
You can install the free New Relic add-on.
It has an availability monitor feature that will
ping your site twice per minute,
thus preventing the dyno from idling.
http://stackoverflow.com/questions/5480337/easy-way-to-prevent-heroku-idling

506 :

PHPカンファレンス2012 スペシャルレポート:当日レポート[随時更新]|gihyo.jp … 技術評論社
http://gihyo.jp/news/report/01/phpcon2012/0001

507 :
http://www.ustream.tv/recorded/25418815

508 :
http://www.ustream.tv/recorded/25419544

509 :
How to increase ActiveRecord thread pool size on heroku - Stack Overflow
http://stackoverflow.com/questions/10045302/how-to-increase-activerecord-thread-pool-size-on-heroku
heroku-buildpack-ruby/lib/language_pack/ruby.rb at master · heroku/heroku-buildpack-ruby · GitHub
https://github.com/heroku/heroku-buildpack-ruby/blob/master/lib/language_pack/ruby.rb#L325-387

510 :
Class: ActiveRecord::ConnectionAdapters::ConnectionPool
http://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/ConnectionPool.html

511 :
ruby on rails - Does Postgres have native connection pooling like mysql? - Stack Overflow
http://stackoverflow.com/questions/10490050/does-postgres-have-native-connection-pooling-like-mysql
https://github.com/rails/rails/issues/1627

512 :
#sprk2012 まとめ - Togetter
http://togetter.com/li/372782

513 :

"Entry"というモデル名をさける
http://www.ustream.tv/recorded/25419544
Enumerable#entries
http://ruby-doc.org/core-1.9.3/Enumerable.html

514 :

19:00
heroku worker redis
http://www.ustream.tv/recorded/23304417


515 :
Simultaneous connections
The herokuapp.com routing stack can be used for async or multi-threaded apps that wish to handle more than one connection simultaneously.
Ruby webservers such as Goliath, Thin (with a suitable web framework such as Async Sinatra), or your own custom EventMachine web process are some examples.
https://devcenter.heroku.com/articles/http-routing#the_herokuappcom_http_stack)

516 :
Getting Django on Heroku prancing 8 times faster.
http://www.askthepony.com/blog/2011/07/getting-django-on-heroku-prancing-8-times-faster/
Django and PostgreSQL – improving the performance with no effort and no code.
http://www.askthepony.com/blog/2011/07/django-and-postgresql-improving-the-performance-with-no-effort-and-no-code/

517 :
レポート:Sapporo RubyKaigi 2012 スペシャルレポート|gihyo.jp … 技術評論社
http://gihyo.jp/news/report/01/sapporo-rubykaigi2012

518 :
マスタ/スレーブの冗長化の基本は4台1セット
http://d.hatena.ne.jp/uncafe/20110919
データベースのレプリケーション(複製)では、slaveに最低3台のサーバを適用している。
http://jibun.atmarkit.co.jp/ad/comp/112mitsu/01.html
MySQLをmaster:slave=1:1構成にして参照をslaveに向けるのがなぜ良くないか - 酒日記 はてな支店
http://d.hatena.ne.jp/sfujiwara/20110620/1308531677
MySQLで参照の負荷分散を行うslaveは3台から構成するのがよいのでは - 酒日記 はてな支店
http://d.hatena.ne.jp/sfujiwara/20110621/1308625519

519 :
http://www.ec2instances.info/
http://ec2-cost.heroku.com/
http://aws.amazon.com/jp/ec2/pricing/
http://www.gmocloud.com/price/
http://cloud.sakura.ad.jp/specification.php
http://vps.sakura.ad.jp/
http://server.sakura.ad.jp/
http://server.sakura.ad.jp/dedicated/simulation.php


520 :
http://www.rackspace.com/cloud/public/servers/pricing/
http://www.slicehost.com/
http://www.linode.com/
http://www.windowsazure.com/ja-jp/pricing/calculator/?scenario=virtual-machines


521 :
http://www.softlayer.com/dedicated-servers/
http://www.softlayer.com/cloudlayer/computing

522 :
Heroku | Announcing Heroku Enterprise for Java
http://blog.heroku.com/archives/2012/9/19/announcing_heroku_enterprise_for_java/
Heroku Java Support | Heroku Dev Center
https://devcenter.heroku.com/articles/java-support

523 :
http://enterprise-java-dev.herokuapp.com/

524 :
http://qa.atmarkit.co.jp/q/2404

525 :
http://www.brightbox.co.uk/rails-hosting-pricing

526 :
FAQ: Installation | Django documentation | Django
https://docs.djangoproject.com/en/dev/faq/install/
PostgreSQL is recommended, because we’re PostgreSQL fans


527 :
64コアまでスケールするPostgreSQL 9.2が登場
http://www.atmarkit.co.jp/fdb/rensai/dbwatch2012/dbwatch201209_02.html

528 :
待望のPostgreSQL 9.2は大幅性能アップするのか?(1/2) − @IT
http://www.atmarkit.co.jp/fdb/rensai/dbwatch2012/dbwatch201203_01.html
JSONのネイティブサポートやNoSQLライクな拡張も
「PostgreSQL 9.2」リリース、大幅な性能アップを実現
具体的には、最大で毎秒35万件のリードクエリ(従来の4倍強)、
データウェアハウスクエリのIndex-onlyスキャン(同2〜20倍)、
最大で毎秒1万4000件のデータ書き込み(同5倍)に対応している。
http://www.atmarkit.co.jp/news/201209/11/postgresql.html

529 :
このスレはおんなじ人が頑張って更新してるのかな?

530 :
"Entry"というモデル名をさける
http://www.ustream.tv/recorded/25419544
Enumerable#entries
http://ruby-doc.org/core-1.9.3/Enumerable.html

531 :
Ruby on Rails Guides: Ruby on Rails 4.0 Release Notes
http://edgeguides.rubyonrails.org/4_0_release_notes.html

532 :
Amazon.co.jp: Professional Heroku Programming: An Architect's Guide: Chris Kemp,Brad Gyger: 洋書
http://www.amazon.co.jp/gp/product/1118508998

533 :
https://addons.heroku.com/treasure-data
クラウド上のデータ分析ウェアハウスを提供するTreasure DataがRuby言語の松本氏らから$1.5Mを調達
http://jp.techcrunch.com/archives/20120928treasure-data-launches-cloud-based-data-warehouse-with-investment-from-ruby-creator-yukihiro-matz-matsumoto/

534 :
868 :名無しさん@お腹いっぱい。:2012/09/27(木) 21:43:00.60 0
プロセスが落ちてない
(プロセス監視
OSがリソース不足でない
(リソース監視
サーバ内の監視処理が落ちてない
(監視処理が実行されるのを死活監視
サーバが落ちてない
(Pingで監視
ネットワークが落ちてない
(SWの監視
監視サーバが落ちてない
(Ping
監視サーバのOSがリソース不足でない
(リソース監視
監視処理が落ちてない
(監視処理が実行されるのを監視
くらいをお互いのサーバでやって、外のPingでの死活監視サービスで2台監視
2台のサーバは別の場所設置
ユーザーの不具合報告先あればなおいい
くらいやればいいじゃない
そんな重要ならね

535 :
LXC入門 - Osc2011 nagoya  
http://www.slideshare.net/masahide_yamamoto/osc2011-nagoya
http://joes.co.jp/comic/

536 :
さくらの専用サーバとOpenStackで作るプライベートクラウド - SourceForge.JP Magazine : オープンソースの話題満載
http://sourceforge.jp/magazine/12/09/18/1126211

537 :
今さら聞けないAWS on Rails - SSSSLIDE
http://sssslide.com/www.slideshare.net/yuumi3/aws-on-rails

538 :
ioDriveとIONがインストールされた1Uサーバは100万IOPS(秒間I/O回数)以上、最大6GB/秒のスループット、0.06ミリ秒未満のレイテンシを実現
http://www.computerworld.jp/topics/561/ストレージ/204383/フュージョンアイオー、「ioDrive」搭載サーバを共有ストレージにするソフトウェア発表
ioDriveは10万IOPS、SSDも3.6万IOPSほどでした。
ハードディスクでは数百から千ぐらいのIOPS
http://internet.watch.impress.co.jp/docs/special/20120731_549042.html
http://server.sakura.ad.jp/dedicated/expressg2.html

539 :
【AWS発表】 2TBのSSDを持つ、ハイ I/O EC2 インスタンスの登場 - Amazon Web Services ブログ
SSDストレージは、インスタンスのローカル側に存在しています。
PVMの場合、120,000 ランダムリード IOPS (Input/Output Operations Per Second) 、
10,000〜85,000ランダムライトIOPSが期待できます(ともに4K ブロック)。
http://aws.typepad.com/aws_japan/2012/07/aws発表-new-high-io-ec2-instance-type-hi14xlarge-2-tb-of-ssd-backed-storage.html


540 :
過去には、私達は、時間とコストの非常にかかるコードベースのパフォーマンスチューニングに何百日も投資してきましたが、
Amazon RDS プロビジョンド IOPSを使ったところ、
たった1日でそれらのパフォーマンスチューニングの結果を上回ることができました。
Amazonクラウド、オンプレミスを超えたデータベース性能の向上機能「Provisioned IOPS for Amazon RDS」開始。パラメータでストレージ性能を設定 − Publickey
http://www.publickey1.jp/blog/12/amazonprovisioned_iops_for_amazon_rds.html

541 :

Fusion-io、10億IOPSの新技術「Auto Commit Memory」発表。ストレージなんてレベルじゃない、パーシステントなメモリだ − Publickey
http://www.publickey1.jp/blog/12/fusion-io10iopsauto_commit_memory.html
まさに怪物! Fusion-ioが容量10テラバイト/性能130万IOPSのフラッシュドライブ「ioDrive Octal」発表 − Publickey
http://www.publickey1.jp/blog/11/_fusion-io10130iopsiodrive_octal.html
性能の話では、実際にioDrive1台でHDD200台をストライピングしたくらいのIOPSをたたき出したベンチマーク結果
http://blog.sotm.jp/20110619/sfstudy-01

542 :
https://devcenter.heroku.com/articles/heroku-postgres-documentation#other-resources

543 :
PostgreSQLをMySQLへコンバートしてみた « サーバーワークス エンジニアブログ
http://blog.serverworks.co.jp/tech/2012/09/27/postgresqlをmysqlへコンバートしてみた/

544 :

Third-Party Buildpacks | Heroku Dev Center
https://devcenter.heroku.com/articles/third-party-buildpacks

545 :
Image management in the cloud.
https://addons.heroku.com/cloudinary
Image processing in the cloud
https://addons.heroku.com/blitline

546 :
>>505
Pete : Avoid Heroku idling with New Relic pings
http://coderwall.com/p/u0x3nw

547 :
上から下までRubyが活躍していると指摘したのは、フクオカRuby大賞の特別賞を受賞した「Cloud Foundry」の生みの親の1人
http://el.jibun.atmarkit.co.jp/rails/2012/03/ruby-3574.html
Rails Hub情報局: Cloud FoundryがRuby「で」作られたクラウドだった件
http://el.jibun.atmarkit.co.jp/rails/2011/06/cloud.html

548 :
Herokuを使って1分でスタートできるFacebookアプリ at nkjmkzk.net
http://nkjmkzk.net/?p=2430

549 :
http://scalr.net/
http://www.rightscale.com/


550 :
http://www.enstratus.com/
http://deltacloud.apache.org/
https://www.cloudkick.com/

551 :
http://www.amazon.com/Cloning-Internet-Applications-Chang-Sheong/dp/1849511063

552 :
http://scalextreme.com/products/monitoring

553 :
WEB+DB PRESS Vol.71|gihyo.jp … 技術評論社
Herokuは,世界で最も利用されているカスタムアプリケーションのためのプラットフォーム提供型クラウドサービス(PaaS:Platform as a Service)です。Amazon WebServicesに代表されるインフラ提供型クラウドサービス(IaaS:Infrastructure as a Service)は,
ハードウェアやOSを調達する手間を省いてくれました。
それに対してPaaSは,アプリケーションの実行に必要なすべての環境に加え,
データベースやミドルウェアについても調達の必要がなくなり,
開発者はアプリケーションの本質的な価値を創造することに集中できます。
http://gihyo.jp/magazine/wdpress/archive/2012/vol71

554 :
https://www.excale.net/

555 :
http://www.ec2instances.info/
http://ec2-cost.heroku.com/
http://aws.amazon.com/jp/ec2/pricing/
http://aws.amazon.com/jp/ec2/reserved-instances/
http://www.gmocloud.com/price/
http://cloud.sakura.ad.jp/specification.php
http://vps.sakura.ad.jp/
http://server.sakura.ad.jp/
http://server.sakura.ad.jp/dedicated/simulation.php

556 :
Koi Deploy
http://koideploy.r12.railsrumble.com/
http://railsrumble.com/entries/299-koi-deploy

557 :
Heroku vs. Amazon Web Services, a Cloud Comparison | Cloud Zone
http://cloud.dzone.com/articles/comparison-clouds-heroku-amazon
[Ruby][さくらクラウド][AWS][Rackspace]さくらクラウド・さくらVPS・AmazonEC2・Rackspace CloudでRailsプロジェクトを作ってベンチマーク
http://d.hatena.ne.jp/xibbar/20120625#1340584854

558 :
http://blog.carlmercier.com/2012/01/05/ec2-is-basically-one-big-ripoff/
http://www.hetzner.de/en/hosting/produkte_rootserver/ex4s
http://joesdatacenter.com/dedicated-server-packages

559 :
http://highscalability.com/blog/2012/10/15/simpler-cheaper-faster-playtomics-move-from-net-to-node-and.html

560 :
米クラウドベンダー「SoftLayer」は、Amazon、RackSpaceとどう戦っているか? − Publickey
http://www.publickey1.jp/blog/12/softlayeramazonrackspace.html
http://www.softlayer.com/dedicated-servers/
http://www.softlayer.com/cloudlayer/computing
http://www.hetzner.de/en/hosting/produktmatrix/rootserver-produktmatrix-ex
http://joesdatacenter.com/dedicated-server-packages
http://www.godaddy.com/hosting/dedicated-servers.aspx?ci=75960

561 :
pgeast_presentation.pdf
http://www.pgrs.net/wp-content/uploads/2011/03/pgeast_presentation.pdf
https://github.com/braintree/mysql_to_postgresql

562 :
どうもこんばんは
cloud9 から node.js のサンプルを作って heroku にデプロイしてみたんですが、
Application Error
An error occurred in the application and your page could not be served. Please try again in a few moments.
If you are the application owner, check your logs for details.
となってしまいました。
そこでlogsをチェックしたいのですが、cloud9のコンソールから
$ heroku logs
としても
Command 'heroku' was not recognized
となってしまいます。
この場合、どうやってログを見ればいいのでしょう。

563 :
Koi Deploy
http://koideploy.r12.railsrumble.com/
http://railsrumble.com/entries/299-koi-deploy
Deploy Button
http://deploybutton.com/

564 :
PostgreSQL Part.9
http://toro.2ch.net/test/read.cgi/db/1338040695/

565 :
How to deploy an rails app on heroku from travis-ci? - Stack Overflow  
http://stackoverflow.com/questions/10235026/how-to-deploy-an-rails-app-on-heroku-from-travis-ci
continuous integration - Using secret api keys on travis-ci - Stack Overflow  
http://stackoverflow.com/questions/9338428/using-secret-api-keys-on-travis-ci/12778315#12778315

566 :
http://www.facebook.com/groups/171846576268309/

567 :
AWSの障害に起因したHerokuの障害について、Heorkuによるレポートが公開されたので要点を翻訳しました(全訳ではありません)
世界でも有数のインフラエンジニアであるAmazonの従業員がうまく稼働させられないものは、恐らく誰にもできないだろう
http://journal.sooey.com/130
Kavis氏のブログによれば、氏の会社は2009年から5回AWSの障害に見舞われているが、サービスが落ちたことはない。
http://www.infoq.com/jp/news/2012/07/Avoiding-Downtime-in-Cloud
How we avoided downtime again as AWS takes an outage | Kavis Technology Consulting
http://www.kavistechnology.com/blog/?p=2056
https://status.heroku.com/
https://twitter.com/#!/herokustatus
AWS障害による影響を小さくするための設計(2011/4/21の障害を踏まえて) - よかろうもん!
http://d.hatena.ne.jp/interu/20110425/1303731515
youRoomにおいて発生した 2011/4/21 のAWSの障害について技術的な観点から - mat_akiの日記
http://d.hatena.ne.jp/mat_aki/20110422/1303440808
Amazon の Virginia DC がダウン: Quora や Heroku に影響が! « Agile Cat — in the cloud
http://agilecat.wordpress.com/2012/06/16/amazon-の-virginia-dc-がダウン:-quora-や-heroku-に影響が!/
Amazon に起こった大規模ダウンタイムを分析する
Amazon AWS の障害を総括すると、クラウドの勝利が見えてくる_1
http://agilecat.wordpress.com/2011/04/25/amazon-aws-の障害を総括すると、クラウドの勝利が見えて/
Amazon AWS の障害を総括すると、クラウドの勝利が見えてくる_2
http://agilecat.wordpress.com/2011/04/27/amazon-aws-の障害を総括すると、クラウドの勝利が見え%e3%81-2/

568 :
Amazonクラウド先週のシステム障害、原因は電源トラブル。二重三重の防護策が次々と倒れる − Publickey
一方で、障害は特定のアベイラビリティゾーン内だったため、マルチアベイラビリティゾーンの設定が有効だったとも報告で示しています。
http://www.publickey1.jp/blog/12/amazon_16.html
【AWS発表】 東京リージョンで2番目のアベイラビリティゾーンが使用可能に - Amazon Web Services ブログ
http://aws.typepad.com/aws_japan/2011/03/adding-a-second-availability-zone-in-tokyo.html

569 :
SE・プログラマが知ってると便利な脆弱性チェックツール 4 つ | バシャログ。
http://c-brains.jp/blog/wsg/11/11/02-154822.php
https://addons.mozilla.org/ja/firefox/addon/xss-me/
https://addons.mozilla.org/en-US/firefox/addon/sql-inject-me/
https://addons.mozilla.org/en-US/firefox/addon/hackbar/
http://nmap.org/
http://www.rbl.jp/svcheck.php

570 :
HerokuでStreaming APIを使うTwitter Botを作る - monoの開発ブログ
http://blog.monoweb.info/blog/2012/01/24/heroku-streaming-api/

571 :
HerokuのDynoが寝ないようにする #heroku - Qiita
http://qiita.com/items/2f88f6079af0b35ed5e3
One-Off process
Running heroku run XXX invokes a one-off dyno,
which Heroku now accounts for based on wall clock execution time.
For example, an interaction via heroku run console in which you open the run the command at 10:00,
do a few queries for 6 minutes, and then close the session at 10:06, would accrue 0.1 dyno-hour.
http://devcenter-jon.herokuapp.com/articles/billing-changes

572 :

In addition creating followers across availability zones in the US East region,
followers can be created in the US West region with the --region us-west-2 flag.
https://devcenter.heroku.com/articles/disaster-mitigation#crossregion-followers


573 :
Koi Deploy
https://koideploy.com/
http://koideploy.r12.railsrumble.com/
http://railsrumble.com/entries/299-koi-deploy
https://github.com/koideploy/showcase
Deploy Button
http://deploybutton.com/
Deploying to Heroku from TravisCI
http://metabates.com/2012/10/23/deploying-to-heroku-from-travisci/

574 :
AWS Elastic Beanstalk has added support for Ruby and Amazon Virtual Private Cloud (Amazon VPC).
http://aws.amazon.com/releasenotes/3475360443946864

575 :
Deploying a Rails Application to AWS Elastic Beanstalk - AWS Elastic Beanstalk
http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_rails.html
Deploying AWS Elastic Beanstalk Applications in Ruby Using Eb and Git - AWS Elastic Beanstalk
http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_Ruby.html

576 :
Amazon Web Services Blog: AWS Elastic Beanstalk - Ruby Support and VPC Integration
http://aws.typepad.com/aws/2012/11/aws-elastic-beanstalk-ruby-support-and-vpc-integration.html

577 :2012/11/02
【AWS発表】 AWS Elastic Beanstalk - Rubyのサポート開始、さらにVPC統合も可能に - Amazon Web Services ブログ
http://aws.typepad.com/aws_japan/2012/11/aws-elastic-beanstalk-ruby-support-and-vpc-integration.html
http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/customize-containers.html
http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_custom_container.html#create_deploy_Ruby_custom_container-envprop
TOP カテ一覧 スレ一覧 2ch元 削除依頼
XSERVER エックスサーバー Part2 (796)
こんな無料webスペースは嫌だ! (730)
my-sv.net (246)
使いやすいFTPソフト (397)
【日本ラッド】SaaSesってどうですか 9 (268)
2style.netってどーですか? 3 (436)
--log9.info------------------
新!正・統・派181 (903)
80年代のジャニルックスランキング (287)
***番長スレ***【166th】 (424)
ジャニーズ板自治スレッド18 (446)
嵐の曲 8 (631)
iPodをシャッフルして出てきた5曲を晒すスレinジャニ板3 (474)
【圧力】 ジャニーズに消された芸能人 2 【抹殺】 (459)
(●●)(´ε`)(^▽^・)No.58 (297)
週刊文春などでV6・岡田准一と宮崎あおいのR報道 (635)
-錦織一清に言いたい私の本音!−35ー (840)
【愚か者】近藤真彦【ヨイショッ!】 (284)
東山紀之のダメな部分は? (626)
近藤真彦、ジャニ募金で中国から仙台にパンダをレンタル4 (503)
武威担観察日記【12】 (438)
近藤真彦が日本レコード大賞の最優秀歌唱賞を受賞 (389)
滝つ総合スレッド【129】 (446)
--log55.com------------------
片親家庭の長男(長女)のしっかり感は異常
「独身ですか?」と聞かれたら?
中村獅童!この機会に共同親権を訴えろ!
離婚して幸せ!
再婚Jp
【不倫】芸能人やりほうだい【略奪】
養育費払わないのは男親だけじゃない!
前妻のせいで生活が苦しいです・・・・・・・・