Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
Heroku Inside
Heroku Outside
Dining
Living room
Bar
Basement
Heroku Inside
    Ayumu Aizawa
        Heroku Inc.,
Developer Marketing Advocate
Safe harbor: Safe harbor statement under the Private Securities Litigation Reform Act of 1995:
This presentation may contain forward-looking statements that involve risks, uncertainties, and
assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results
of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking
statements we make. All statements other than statements of historical fact could be deemed forward-
looking, including any projections of product or service availability, subscriber growth, earnings, revenues,
or other financial items and any statements regarding strategies or plans of management for future
operations, statements of belief, any statements concerning new, planned, or upgraded services or
technology developments and customer contracts or use of our services.
The risks and uncertainties referred to above include – but are not limited to – risks associated with
developing and delivering new functionality for our service, new products and services, our new business
model, our past operating losses, possible fluctuations in our operating results and rate of growth,
interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual
property and other litigation, risks associated with possible mergers and acquisitions, the immature market
in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our
employees and manage our growth, new releases of our service and successful customer deployment, our
limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise
customers. Further information on potential factors that could affect the financial results of salesforce.com,
inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended April 30, 2011.
This documents and others containing important disclosures are available on the SEC Filings section of the
Investor Information section of our Web site.
Any unreleased services or features referenced in this or other presentations, press releases or public
statements are not currently available and may not be delivered on time or at all. Customers who purchase
our services should make the purchase decisions based upon features that are currently available.
Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking
statements.
自己紹介
Ayumu Aizawa
Heroku Evangelist @ Salesforce.com
Developer Marketing Advocate @ Heroku
 twitter: @ayumin
 Fb: www.facebook.com/ayumu.aizawa
Heroku
What is Heroku?
        Why Heroku?
    Who are using Heroku?
     How to use Heroku?
  When should I try Heroku?
Where are resources of Heroku?
What is Heroku?
• Herokuは、Ruby、Java、Python、Scala、
  Node.js、Clojure など、複数のプログラミング
  言語・フレームワークに対応した、クラウドアプリケ
  ーションの開発を支援する PaaS(Platform-
  as-a-Service)です。
What is Heroku

Agile        Polyglot     Tool

24h

  2-4w
Why Heroku?
• Herokuは、優れた開発者の生産性を
  最大化するプラットフォーム。
 サーバーの存在を意識しなくてよい
 スケーラビリティについて考慮しなくてよい
 プロセス単位で可視化できる
 信頼性・可用性の高いアーキテクチャ
 アドオンシステムによる機能拡張
The 12 Factor App
Herokuは良いWebサービスをつくるための
方法論をカバーしている。

•   Codebase              •   Port binding
•   Dependencies          •   Concurrency
•   Config                •   Disposability
•   Backing Services      •   Dev/prod parity
•   Build, release, run   •   Logs
•   Processes             •   Admin processes
              http://www.12factor.net
Sample App (sinatra)
$ ls
Gemfile       Procfile    app.rb config.ru
$ cat Gemfile
source ‘http://rubygems.org’
gem ‘sinatra’
gem ‘thin’
$ cat config.ru
require ‘./app.rb’
run Sinatra::Application
$ cat app.rb
require ‘sinatra’
get ‘/’ do
 “hello world”
end
$ cat Procfile
web: bundle exec thin –p $PORT –e $RACK_ENV start
Deploy to Heroku
$ git init
Initialized empty Git repository in /path/to/app/.git/
$ git add –A
$ git commit –m ‘initial commit’
[master (root-commit) 5cf507d] initial commit
 4 files changed, 14 insertions(+), 0 deletions(-)
 create mode 100644 Gemfile
 create mode 100644 Procfile
 create mode 100644 app.rb
 create mode 100644 config.ru
$ heroku apps:create –s cedar
http://growing-summer-1456.herokuapp.com/ | git@heroku.com …
Git remote heroku added
$ git push herokumaster
How to use Heroku?
• Herokuクライアントツールをインストール
 Heroku Toolbelt




          https://toolbelt.heroku.com/
Who are using Heroku?
• コンシューマー向けWebアプリケーション
• ソーシャル・メディア連携サービス
• 動画配信サービス
• スマートフォンゲームのサーバーサイド
When should I try Heroku?
            Now!
     http://www.heroku.com
Where are resources of Heroku?

•    導入事例          sucsess.heroku.com
•    プランと価格        heroku.com/pricing
•    技術資料、サポート     devcenter.heroku.com
•    ニュース          news.heroku.com
•    オフィシャルブログ     blog.heroku.com
•    ユーザーコミュニティ    www.facebook.com/herokujp
•    困ったときは        ayumin@heroku.com
Heroku Inside
Architecture Overview
                                   User



                                          Elastic Load barancer



            Control Surface APIs


                                               Dyno Manifold




Developer                                      Logprex
Architecture Overview
Dyno
•   Herokuアーキテクチャを理解するために、
    最も重要な要素のひとつ
Dyno
What is Dyno?
  Dyno Features
How’s Dyno created
What is Dyno

通常のサーバーにおけるプロセスとほぼ同じ。

                 Batch Process
                                 Web Process
       Background Process




いろいろな役割(Process Type)のDynoがある。
What is Dyno
• ひとつひとつのDynoには完全な実行環境が含まれる。



          •   アプリケーション本体
          •   メモリ
          •   設定(環境変数など)
          •   依存ライブラリ
          •   アプリケーション実行環境
              (アプリケーション・コンテナなど)
Dyno Features
• Elasticity
   柔軟な拡張・縮退が可能

• Intelligent Routing
   インテリジェントな経路選択
• Process Management
   プロセス管理

• Distribution & Redundancy
   分散処理と冗長化
Elasticity
•   プロセス単位での拡張、縮退制御が可能


       heroku ps:scale web=5
Elasticity
•   プロセス単位での拡張、縮退制御が可能


       heroku ps:scale web=1
Intelligent Routing
•   Routing Mesh による適切な経路選択
Process management
•   不安定になったDynoは自動的に再起動される
Process management
•   不安定になったDynoは自動的に再起動される
Distribution & Redundancy
•   それぞれのDynoはAWS上に分散配置され、
    完全に独立したリソースを使用している。
How’s Dyno created
Procfile
• Dyno = アプリケーションの実行プロセス
• アプリケーションをリリースした際に、
  Procfileの定義に基づいて生成される

  web: bundle exec rails server -p $PORT -e $RACK_ENV
  worker: bundle exec rake job:work




               web                 worker
Dyno scaling
Process Type毎に独立して拡張可能。




       web   worker   clock
Slug
• Slug = Dynoの元になるオブジェクト
• アプリケーションコードをpushした際に
  各アプリケーションごとに生成される
Slug compiler
• pushされたコードからSlugを生成する。
•   言語・フレームワーク独特のファイル有無によって
    実行環境を判断。
     -buildpackオプションにより明示的に指定することも可能。
Conclusion
Conclusion

• Herokuはアプリケーション開発者の
  生産性を高めることにフォーカスしたPaaS。
• アプリケーションの全ての動作環境を含む
  Dyno単位でプロセス制御が可能。
• デプロイされたコードはSlugオブジェクトに
  変換され、アプリケーションごとに永続化さ
  れる。
When should I try Heroku?
            Now!
     http://www.heroku.com
Where are resources of Heroku?

•    導入事例          sucsess.heroku.com
•    プランと価格        heroku.com/pricing
•    技術資料、サポート     devcenter.heroku.com
•    ニュース          news.heroku.com
•    オフィシャルブログ     blog.heroku.com
•    ユーザーコミュニティ    www.facebook.com/herokujp
•    困ったときは        ayumin@heroku.com
Thank you!
http://www.heroku.com

More Related Content

Heroku Inside

  • 5. Bar
  • 7. Heroku Inside Ayumu Aizawa Heroku Inc., Developer Marketing Advocate
  • 8. Safe harbor: Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward- looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual property and other litigation, risks associated with possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended April 30, 2011. This documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 9. 自己紹介 Ayumu Aizawa Heroku Evangelist @ Salesforce.com Developer Marketing Advocate @ Heroku twitter: @ayumin Fb: www.facebook.com/ayumu.aizawa
  • 11. What is Heroku? Why Heroku? Who are using Heroku? How to use Heroku? When should I try Heroku? Where are resources of Heroku?
  • 12. What is Heroku? • Herokuは、Ruby、Java、Python、Scala、 Node.js、Clojure など、複数のプログラミング 言語・フレームワークに対応した、クラウドアプリケ ーションの開発を支援する PaaS(Platform- as-a-Service)です。
  • 13. What is Heroku Agile Polyglot Tool 24h 2-4w
  • 14. Why Heroku? • Herokuは、優れた開発者の生産性を 最大化するプラットフォーム。  サーバーの存在を意識しなくてよい  スケーラビリティについて考慮しなくてよい  プロセス単位で可視化できる  信頼性・可用性の高いアーキテクチャ  アドオンシステムによる機能拡張
  • 15. The 12 Factor App Herokuは良いWebサービスをつくるための 方法論をカバーしている。 • Codebase • Port binding • Dependencies • Concurrency • Config • Disposability • Backing Services • Dev/prod parity • Build, release, run • Logs • Processes • Admin processes http://www.12factor.net
  • 16. Sample App (sinatra) $ ls Gemfile Procfile app.rb config.ru $ cat Gemfile source ‘http://rubygems.org’ gem ‘sinatra’ gem ‘thin’ $ cat config.ru require ‘./app.rb’ run Sinatra::Application $ cat app.rb require ‘sinatra’ get ‘/’ do “hello world” end $ cat Procfile web: bundle exec thin –p $PORT –e $RACK_ENV start
  • 17. Deploy to Heroku $ git init Initialized empty Git repository in /path/to/app/.git/ $ git add –A $ git commit –m ‘initial commit’ [master (root-commit) 5cf507d] initial commit 4 files changed, 14 insertions(+), 0 deletions(-) create mode 100644 Gemfile create mode 100644 Procfile create mode 100644 app.rb create mode 100644 config.ru $ heroku apps:create –s cedar http://growing-summer-1456.herokuapp.com/ | git@heroku.com … Git remote heroku added $ git push herokumaster
  • 18. How to use Heroku? • Herokuクライアントツールをインストール  Heroku Toolbelt https://toolbelt.heroku.com/
  • 19. Who are using Heroku? • コンシューマー向けWebアプリケーション • ソーシャル・メディア連携サービス • 動画配信サービス • スマートフォンゲームのサーバーサイド
  • 20. When should I try Heroku? Now! http://www.heroku.com
  • 21. Where are resources of Heroku? • 導入事例 sucsess.heroku.com • プランと価格 heroku.com/pricing • 技術資料、サポート devcenter.heroku.com • ニュース news.heroku.com • オフィシャルブログ blog.heroku.com • ユーザーコミュニティ www.facebook.com/herokujp • 困ったときは ayumin@heroku.com
  • 23. Architecture Overview User Elastic Load barancer Control Surface APIs Dyno Manifold Developer Logprex
  • 24. Architecture Overview Dyno • Herokuアーキテクチャを理解するために、 最も重要な要素のひとつ
  • 25. Dyno
  • 26. What is Dyno? Dyno Features How’s Dyno created
  • 27. What is Dyno 通常のサーバーにおけるプロセスとほぼ同じ。 Batch Process Web Process Background Process いろいろな役割(Process Type)のDynoがある。
  • 28. What is Dyno • ひとつひとつのDynoには完全な実行環境が含まれる。 • アプリケーション本体 • メモリ • 設定(環境変数など) • 依存ライブラリ • アプリケーション実行環境 (アプリケーション・コンテナなど)
  • 29. Dyno Features • Elasticity 柔軟な拡張・縮退が可能 • Intelligent Routing インテリジェントな経路選択 • Process Management プロセス管理 • Distribution & Redundancy 分散処理と冗長化
  • 30. Elasticity • プロセス単位での拡張、縮退制御が可能 heroku ps:scale web=5
  • 31. Elasticity • プロセス単位での拡張、縮退制御が可能 heroku ps:scale web=1
  • 32. Intelligent Routing • Routing Mesh による適切な経路選択
  • 33. Process management • 不安定になったDynoは自動的に再起動される
  • 34. Process management • 不安定になったDynoは自動的に再起動される
  • 35. Distribution & Redundancy • それぞれのDynoはAWS上に分散配置され、 完全に独立したリソースを使用している。
  • 37. Procfile • Dyno = アプリケーションの実行プロセス • アプリケーションをリリースした際に、 Procfileの定義に基づいて生成される web: bundle exec rails server -p $PORT -e $RACK_ENV worker: bundle exec rake job:work web worker
  • 39. Slug • Slug = Dynoの元になるオブジェクト • アプリケーションコードをpushした際に 各アプリケーションごとに生成される
  • 40. Slug compiler • pushされたコードからSlugを生成する。 • 言語・フレームワーク独特のファイル有無によって 実行環境を判断。  -buildpackオプションにより明示的に指定することも可能。
  • 42. Conclusion • Herokuはアプリケーション開発者の 生産性を高めることにフォーカスしたPaaS。 • アプリケーションの全ての動作環境を含む Dyno単位でプロセス制御が可能。 • デプロイされたコードはSlugオブジェクトに 変換され、アプリケーションごとに永続化さ れる。
  • 43. When should I try Heroku? Now! http://www.heroku.com
  • 44. Where are resources of Heroku? • 導入事例 sucsess.heroku.com • プランと価格 heroku.com/pricing • 技術資料、サポート devcenter.heroku.com • ニュース news.heroku.com • オフィシャルブログ blog.heroku.com • ユーザーコミュニティ www.facebook.com/herokujp • 困ったときは ayumin@heroku.com