SlideShare una empresa de Scribd logo
1 de 52
Friday, September 10, 2010
Extreme Performance
             with
       Mirah and Dubious


Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
Friday, September 10, 2010
JRuby on AppEngine
                               It rocks, but has some limitations.




Friday, September 10, 2010
Limitations

                     • Not as supported as Java & Python
                     • Long spin up times
                     • Uses more CPU(more expensive)
                     • getting more performance requires writing
                             Java



Friday, September 10, 2010
Spin Up


                     • Rails app instances take a long time to spin
                             up
                     • you can’t keep app instances running (yet)


Friday, September 10, 2010
Long Spin Up Times


                     • Rails instances take 16 seconds or more to
                             spin up
                     • AppEngine limits requests to 30 seconds
                     • Users will hit cold instances

Friday, September 10, 2010
Spin Up Workarounds
                       DeferredDispather
                     • Splits Initialization into three requests(two
                             redirect back)
                             • runtime & rack
                             • require app
                             • dispatch normally

Friday, September 10, 2010
Friday, September 10, 2010
CPU Usage


                     • On AppEngine CPU == $$$$
                     • JRuby uses more CPU than Java or Python


Friday, September 10, 2010
CPU Usage


                     • On AppEngine CPU == $$$$
                     • JRuby uses more CPU than Java or Python


Friday, September 10, 2010
JRuby on AppEngine
                                Optimization

                     1. Write app in Rails
                     2. Find parts that are slow/get heavy traffic
                     3. Rewrite them with Java Servlets



Friday, September 10, 2010
Kinda Sucks, Right?



Friday, September 10, 2010
Enter Mirah & Dubious



Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
Mirah
                             (Duby)




Friday, September 10, 2010
Mirah - Ruby in Javanese



Friday, September 10, 2010
“Charles Oliver Nutter wanted to create
                a language that essentially looked like
                Ruby, but was statically typed and
                compiled to fast JVM bytecode.
                Mirah is the result.”
                                                - mirah.org



Friday, September 10, 2010
Mirah

                     • Uses Ruby syntax+types
                     • Behaves like Java
                     • Extensible through macros


Friday, September 10, 2010
Features From Ruby
                     • Optional arguments ✓
                     • Internal iteration ✓
                     • Closures ✓
                     • Literals ✓
                     • String interpolation ✓
                     • Mixins, “open” classes (soon)
Friday, September 10, 2010
Ruby
                   def fib(a)
                     if a < 2
                       a
                     else
                       fib(a - 1) + fib(a - 2)
                     end
                   end


Friday, September 10, 2010
Mirah
                       github.com/mirah/mirah/examples/fib.mirah
                   def fib(a:int)
                     if a < 2
                       a
                     else
                       fib(a - 1) + fib(a - 2)
                     end
                   end


Friday, September 10, 2010
Macros



Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
Dubious




Friday, September 10, 2010
Dubious

                             A Web Framework
                                 in Mirah


Friday, September 10, 2010
Friday, September 10, 2010
High Performance,
                Light weight,
                Rails like


Friday, September 10, 2010
High Performance,
                Light weight,
                Rails like


Friday, September 10, 2010
Written in Mirah, so it’s
                as fast as Java.



Friday, September 10, 2010
App Instances Spin Up
                           in ~1 sec


Friday, September 10, 2010
High Performance,
                Light weight,
                Rails like


Friday, September 10, 2010
Few Dependencies




Friday, September 10, 2010
Examples



Friday, September 10, 2010
High Performance,
                Light weight,
                Rails like


Friday, September 10, 2010
import dubious.*
                import models.*

                class ContactsController < ApplicationController

                  # GET /contacts
                  def index
                    @contacts = Contact.all.run
                    render index_erb, main_erb
                  end

                  # GET /contacts/1
                  def show
                    @contact = Contact.get(params.id)
                    render show_erb, main_erb
                  end

                  # GET /contacts/new
                  def new
                    @contact = Contact.new
                    render new_erb, main_erb
                  end

                  # GET /contacts/1/edit
                  def edit
                    @contact = Contact.get(params.id)
Friday, September 10, 2010
import dubious.*
                import models.*

                class ContactsController < ApplicationController

                  # GET /contacts
                  def index
                    @contacts = Contact.all.run
                    render index_erb, main_erb
                  end

                  # GET /contacts/1
                  def show
                    @contact = Contact.get(params.id)
                    render show_erb, main_erb
                  end

                  # GET /contacts/new
                  def new
                    @contact = Contact.new
                    render new_erb, main_erb
                  end

                  # GET /contacts/1/edit
                  def edit
                    @contact = Contact.get(params.id)
Friday, September 10, 2010
import dubious.*
                import models.*

                class ContactsController < Appli

                  # GET /contacts
                  def index
                    @contacts = Contact.all.run
                    render index_erb, main_erb
                  end
Friday, September 10, 2010
  end

                  # GET /contacts/new
                  def new
                    @contact = Contact.new
                    render new_erb, main_erb
                  end

                  # GET /contacts/1/edit
                  def edit
                    @contact = Contact.get(param
                    render edit_erb, main_erb
                  end
Friday, September 10, 2010
  end

     # render templates
     def_edb(index_erb,
             'views/contacts/index.html.erb')
     def_edb(show_erb,
             'views/contacts/show.html.erb')
     def_edb(new_erb,
             'views/contacts/new.html.erb')
     def_edb(edit_erb,
             'views/contacts/edit.html.erb')
     def_edb(main_erb,
             'views/layouts/contacts.html.erb')
   end




Friday, September 10, 2010
import   com.google.appengine.ext.duby.db.Model
                             import   com.google.appengine.api.datastore.*
                             import   dubious.TimeConversion
                             import   java.util.Date

                             class Contact < Model
                               property :title,      String
                               property :birthday,   Date
                               property :url,        Link
                               property :platform,   String
                               property :editor,     String
                               property :summary,    Text
                               property :address,    PostalAddress
                               property :phone,      PhoneNumber
                               property :private,    Boolean

                               # timestamps
                               property :created_at, Date
                               property :updated_at, Date
                               def before_save
                                 @updated_at = Date.new
                                 @created_at = updated_at if @created_at.nil?
                               end

                               def coerce_date(o:Object)
                                 TimeConversion.new('jsdate').parse(String(o))
Friday, September 10, 2010     end
import   com.google.appengine.ext.duby.db.Model
                             import   com.google.appengine.api.datastore.*
                             import   dubious.TimeConversion
                             import   java.util.Date

                             class Contact < Model
                               property :title,      String
                               property :birthday,   Date
                               property :url,        Link
                               property :platform,   String
                               property :editor,     String
                               property :summary,    Text
                               property :address,    PostalAddress
                               property :phone,      PhoneNumber
                               property :private,    Boolean

                               # timestamps
                               property :created_at, Date
                               property :updated_at, Date
                               def before_save
                                 @updated_at = Date.new
                                 @created_at = updated_at if @created_at.nil?
                               end

                               def coerce_date(o:Object)
                                 TimeConversion.new('jsdate').parse(String(o))
Friday, September 10, 2010     end
<h1>New contact</h1>

                             <% f = form_for(@contact) %>
                               <%= f.start_form %>
                               <%= f.error_messages %>
                               <p>
                                 <%= f.label :title %><br />
                                 <%= f.text_field :title %>
                               </p>
                               <p>
                                 <%= f.label :summary %><br />
                                 <%= f.text_area :summary %>
                               </p>
                               <p>
                                 <%= f.label :birthday %><br />
                                 <%= f.date_select :birthday %>
                               </p>
                               <p>
                                 <%= f.label :platform %><br />
                                 <%= f.radio_button :platform, 'Mac'   %>Mac
                                 <%= f.radio_button :platform, 'PC'    %>PC
                                 <%= f.radio_button :platform, 'Linux' %>Linux
                               </p>
                               <p>
                                 <%= f.label :editor %><br />
                                 <%= f.select :editor, ['Vim','Emacs','TextMate','Other'
Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
•       JRuby on AppEngine
              • Mirah
              • Dubious
              • Hack

Friday, September 10, 2010
Get Started
                                Demo Time




Friday, September 10, 2010
Me

        Nick Howard

                Avid Rubyist
                Commiter on Dubious
                @baroquebobcat
                Work at Gnip in Boulder, CO




Friday, September 10, 2010
Contribute
            Mirah & Dubious
                mirah.org
                Code
                   github.com/mirah/mirah
                   github.com/mirah/dubious
                Examples
                   rails-annex.appspot.com
                   dubious-demo.appspot.com
                Mailing List
                    groups.google.com/group/mirah

Friday, September 10, 2010

Más contenido relacionado

Similar a Mirah & Dubious Talk Ruby|Web 2010

BDD and Cucumber at barcampGZ
BDD and Cucumber at barcampGZBDD and Cucumber at barcampGZ
BDD and Cucumber at barcampGZleondu
 
DjangoCon 2009 Keynote
DjangoCon 2009 KeynoteDjangoCon 2009 Keynote
DjangoCon 2009 KeynoteTed Leung
 
Red Dirt Ruby Conference
Red Dirt Ruby ConferenceRed Dirt Ruby Conference
Red Dirt Ruby ConferenceJohn Woodell
 
Web Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To ComplexWeb Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To ComplexBrian Hogan
 
Dojo Mobile
Dojo MobileDojo Mobile
Dojo Mobiledylanks
 
Oxente on Rails 2009
Oxente on Rails 2009Oxente on Rails 2009
Oxente on Rails 2009Fabio Akita
 
Akka scalaliftoff london_2010
Akka scalaliftoff london_2010Akka scalaliftoff london_2010
Akka scalaliftoff london_2010Skills Matter
 
The Twitter API: A Presentation to Adobe
The Twitter API: A Presentation to AdobeThe Twitter API: A Presentation to Adobe
The Twitter API: A Presentation to AdobeAlex Payne
 
Aloha on-rails-2009
Aloha on-rails-2009Aloha on-rails-2009
Aloha on-rails-2009John Woodell
 
Jenkins (war)stories
Jenkins (war)storiesJenkins (war)stories
Jenkins (war)storiesToomas Römer
 
HTML5: Toolkits and Gaps
HTML5: Toolkits and GapsHTML5: Toolkits and Gaps
HTML5: Toolkits and Gapsdylanks
 
dotnet-ug-iron-ruby
dotnet-ug-iron-rubydotnet-ug-iron-ruby
dotnet-ug-iron-rubyAmir Barylko
 

Similar a Mirah & Dubious Talk Ruby|Web 2010 (20)

BDD and Cucumber at barcampGZ
BDD and Cucumber at barcampGZBDD and Cucumber at barcampGZ
BDD and Cucumber at barcampGZ
 
Ruby off Rails
Ruby off RailsRuby off Rails
Ruby off Rails
 
DjangoCon 2009 Keynote
DjangoCon 2009 KeynoteDjangoCon 2009 Keynote
DjangoCon 2009 Keynote
 
Red Dirt Ruby Conference
Red Dirt Ruby ConferenceRed Dirt Ruby Conference
Red Dirt Ruby Conference
 
App Engine Meetup
App Engine MeetupApp Engine Meetup
App Engine Meetup
 
Ruby off Rails
Ruby off RailsRuby off Rails
Ruby off Rails
 
Web Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To ComplexWeb Development With Ruby - From Simple To Complex
Web Development With Ruby - From Simple To Complex
 
Java to scala
Java to scalaJava to scala
Java to scala
 
Dojo Mobile
Dojo MobileDojo Mobile
Dojo Mobile
 
Oxente on Rails 2009
Oxente on Rails 2009Oxente on Rails 2009
Oxente on Rails 2009
 
JRuby in The Enterprise
JRuby in The EnterpriseJRuby in The Enterprise
JRuby in The Enterprise
 
Akka scalaliftoff london_2010
Akka scalaliftoff london_2010Akka scalaliftoff london_2010
Akka scalaliftoff london_2010
 
The Twitter API: A Presentation to Adobe
The Twitter API: A Presentation to AdobeThe Twitter API: A Presentation to Adobe
The Twitter API: A Presentation to Adobe
 
Aloha on-rails-2009
Aloha on-rails-2009Aloha on-rails-2009
Aloha on-rails-2009
 
RubyConf 2009
RubyConf 2009RubyConf 2009
RubyConf 2009
 
Rails 3 Internals
Rails 3 InternalsRails 3 Internals
Rails 3 Internals
 
Ruby
RubyRuby
Ruby
 
Jenkins (war)stories
Jenkins (war)storiesJenkins (war)stories
Jenkins (war)stories
 
HTML5: Toolkits and Gaps
HTML5: Toolkits and GapsHTML5: Toolkits and Gaps
HTML5: Toolkits and Gaps
 
dotnet-ug-iron-ruby
dotnet-ug-iron-rubydotnet-ug-iron-ruby
dotnet-ug-iron-ruby
 

Último

Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 

Último (20)

Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

Mirah & Dubious Talk Ruby|Web 2010

  • 2. Extreme Performance with Mirah and Dubious Friday, September 10, 2010
  • 3. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 4. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 6. JRuby on AppEngine It rocks, but has some limitations. Friday, September 10, 2010
  • 7. Limitations • Not as supported as Java & Python • Long spin up times • Uses more CPU(more expensive) • getting more performance requires writing Java Friday, September 10, 2010
  • 8. Spin Up • Rails app instances take a long time to spin up • you can’t keep app instances running (yet) Friday, September 10, 2010
  • 9. Long Spin Up Times • Rails instances take 16 seconds or more to spin up • AppEngine limits requests to 30 seconds • Users will hit cold instances Friday, September 10, 2010
  • 10. Spin Up Workarounds DeferredDispather • Splits Initialization into three requests(two redirect back) • runtime & rack • require app • dispatch normally Friday, September 10, 2010
  • 12. CPU Usage • On AppEngine CPU == $$$$ • JRuby uses more CPU than Java or Python Friday, September 10, 2010
  • 13. CPU Usage • On AppEngine CPU == $$$$ • JRuby uses more CPU than Java or Python Friday, September 10, 2010
  • 14. JRuby on AppEngine Optimization 1. Write app in Rails 2. Find parts that are slow/get heavy traffic 3. Rewrite them with Java Servlets Friday, September 10, 2010
  • 15. Kinda Sucks, Right? Friday, September 10, 2010
  • 16. Enter Mirah & Dubious Friday, September 10, 2010
  • 17. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 18. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 19. Mirah (Duby) Friday, September 10, 2010
  • 20. Mirah - Ruby in Javanese Friday, September 10, 2010
  • 21. “Charles Oliver Nutter wanted to create a language that essentially looked like Ruby, but was statically typed and compiled to fast JVM bytecode. Mirah is the result.” - mirah.org Friday, September 10, 2010
  • 22. Mirah • Uses Ruby syntax+types • Behaves like Java • Extensible through macros Friday, September 10, 2010
  • 23. Features From Ruby • Optional arguments ✓ • Internal iteration ✓ • Closures ✓ • Literals ✓ • String interpolation ✓ • Mixins, “open” classes (soon) Friday, September 10, 2010
  • 24. Ruby def fib(a)   if a < 2     a   else     fib(a - 1) + fib(a - 2)   end end Friday, September 10, 2010
  • 25. Mirah github.com/mirah/mirah/examples/fib.mirah def fib(a:int)   if a < 2     a   else     fib(a - 1) + fib(a - 2)   end end Friday, September 10, 2010
  • 27. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 28. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 30. Dubious A Web Framework in Mirah Friday, September 10, 2010
  • 32. High Performance, Light weight, Rails like Friday, September 10, 2010
  • 33. High Performance, Light weight, Rails like Friday, September 10, 2010
  • 34. Written in Mirah, so it’s as fast as Java. Friday, September 10, 2010
  • 35. App Instances Spin Up in ~1 sec Friday, September 10, 2010
  • 36. High Performance, Light weight, Rails like Friday, September 10, 2010
  • 39. High Performance, Light weight, Rails like Friday, September 10, 2010
  • 40. import dubious.* import models.* class ContactsController < ApplicationController   # GET /contacts   def index     @contacts = Contact.all.run     render index_erb, main_erb   end   # GET /contacts/1   def show     @contact = Contact.get(params.id)     render show_erb, main_erb   end   # GET /contacts/new   def new     @contact = Contact.new     render new_erb, main_erb   end   # GET /contacts/1/edit   def edit     @contact = Contact.get(params.id) Friday, September 10, 2010
  • 41. import dubious.* import models.* class ContactsController < ApplicationController   # GET /contacts   def index     @contacts = Contact.all.run     render index_erb, main_erb   end   # GET /contacts/1   def show     @contact = Contact.get(params.id)     render show_erb, main_erb   end   # GET /contacts/new   def new     @contact = Contact.new     render new_erb, main_erb   end   # GET /contacts/1/edit   def edit     @contact = Contact.get(params.id) Friday, September 10, 2010
  • 42. import dubious.* import models.* class ContactsController < Appli   # GET /contacts   def index     @contacts = Contact.all.run     render index_erb, main_erb   end Friday, September 10, 2010
  • 43.   end   # GET /contacts/new   def new     @contact = Contact.new     render new_erb, main_erb   end   # GET /contacts/1/edit   def edit     @contact = Contact.get(param     render edit_erb, main_erb   end Friday, September 10, 2010
  • 44.   end   # render templates   def_edb(index_erb, 'views/contacts/index.html.erb')   def_edb(show_erb, 'views/contacts/show.html.erb')   def_edb(new_erb, 'views/contacts/new.html.erb')   def_edb(edit_erb, 'views/contacts/edit.html.erb')   def_edb(main_erb, 'views/layouts/contacts.html.erb') end Friday, September 10, 2010
  • 45. import com.google.appengine.ext.duby.db.Model import com.google.appengine.api.datastore.* import dubious.TimeConversion import java.util.Date class Contact < Model   property :title, String   property :birthday, Date   property :url, Link   property :platform, String   property :editor, String   property :summary, Text   property :address, PostalAddress   property :phone, PhoneNumber   property :private, Boolean   # timestamps   property :created_at, Date   property :updated_at, Date   def before_save     @updated_at = Date.new     @created_at = updated_at if @created_at.nil?   end   def coerce_date(o:Object)     TimeConversion.new('jsdate').parse(String(o)) Friday, September 10, 2010   end
  • 46. import com.google.appengine.ext.duby.db.Model import com.google.appengine.api.datastore.* import dubious.TimeConversion import java.util.Date class Contact < Model   property :title, String   property :birthday, Date   property :url, Link   property :platform, String   property :editor, String   property :summary, Text   property :address, PostalAddress   property :phone, PhoneNumber   property :private, Boolean   # timestamps   property :created_at, Date   property :updated_at, Date   def before_save     @updated_at = Date.new     @created_at = updated_at if @created_at.nil?   end   def coerce_date(o:Object)     TimeConversion.new('jsdate').parse(String(o)) Friday, September 10, 2010   end
  • 47. <h1>New contact</h1> <% f = form_for(@contact) %>   <%= f.start_form %>   <%= f.error_messages %>   <p>     <%= f.label :title %><br />     <%= f.text_field :title %>   </p>   <p>     <%= f.label :summary %><br />     <%= f.text_area :summary %>   </p>   <p>     <%= f.label :birthday %><br />     <%= f.date_select :birthday %>   </p>   <p>     <%= f.label :platform %><br />     <%= f.radio_button :platform, 'Mac' %>Mac     <%= f.radio_button :platform, 'PC' %>PC     <%= f.radio_button :platform, 'Linux' %>Linux   </p>   <p>     <%= f.label :editor %><br />     <%= f.select :editor, ['Vim','Emacs','TextMate','Other' Friday, September 10, 2010
  • 48. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 49. JRuby on AppEngine • Mirah • Dubious • Hack Friday, September 10, 2010
  • 50. Get Started Demo Time Friday, September 10, 2010
  • 51. Me Nick Howard Avid Rubyist Commiter on Dubious @baroquebobcat Work at Gnip in Boulder, CO Friday, September 10, 2010
  • 52. Contribute Mirah & Dubious mirah.org Code github.com/mirah/mirah github.com/mirah/dubious Examples rails-annex.appspot.com dubious-demo.appspot.com Mailing List groups.google.com/group/mirah Friday, September 10, 2010