+ All Categories
Home > Documents > © 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced,...

© 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced,...

Date post: 23-Dec-2015
Category:
Upload: kristopher-russell
View: 216 times
Download: 2 times
Share this document with a friend
45
© 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior, written permission of Object Computing, Inc. (OCI) Revised 05/05/09 www.ociweb.com Google App Engine For Java
Transcript
  • Slide 1
  • 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior, written permission of Object Computing, Inc. (OCI) Revised 05/05/09 www.ociweb.com Google App Engine For Java
  • Slide 2
  • 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior, written permission of Object Computing, Inc. (OCI) Revised 05/05/09 www.ociweb.com Google App Engine For Scala
  • Slide 3
  • 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior, written permission of Object Computing, Inc. (OCI) Revised 05/05/09 www.ociweb.com Google App Engine For Groovy
  • Slide 4
  • 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior, written permission of Object Computing, Inc. (OCI) Revised 05/05/09 www.ociweb.com Google App Engine For JRuby
  • Slide 5
  • 2009 Object Computing, Inc. (OCI) All rights reserved. No part of these notes may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior, written permission of Object Computing, Inc. (OCI) Revised 05/05/09 www.ociweb.com Google App Engine For Clojure
  • Slide 6
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 6 Overview Google App Engine was first introduced in April 2008 Initial release was based on Python Design Goals: Easy to use Easy to scale Free to get started Differences from traditional hosting include: No upfront costs No access given to specific server, virtual or otherwise Dont have to worry about fault-tolerance, scalability, setting up data stores, access control. Still considered a Preview Release A least its not Beta ;)
  • Slide 7
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 7 Google App Engine Stack Components: Web serving infrastructure Provides URL (.appspot.com) Execute your code Serve static content Handles logging Language runtime First Python, now Java too. SDK Provides development environment Web base admin interface Tools to manage and monitor your application Scalable persistence layer
  • Slide 8
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 8 Google App Engine for Java In April 2009, Google App Engine for Java is released Characteristics: Runs Java application using a Java 6 JVM Uses the Java Servlet standard More or less compatible with 2.4 spec Run in a secured sandbox Provides standard interfaces to scalable persistence layer using JDO (2.3) JPA (1.0) Other Services include: Access to Google Users service URL Fetch service Mail service Images service Memcache service XMPP service
  • Slide 9
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 9 Limitations Because GAE/J applications run in a secured sandbox there are limitations: To ensure applications do not interfere with other apps, Applications can not: Spawn threads Write to a local file system including using temp files Make arbitrary network connections Invoke native code Stream data to clients in response to single request SDK uses a class white list for core JRE classes. Notable omissions: RMI and CORBA AWT and Swing classes including Graphics and Image ImageIO What about generating images ? (Well cover this later)
  • Slide 10
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 10 Limitations Application are optimized for short requests. Google imposes a 30 second limit after which an Exception is thrown Requests are limited to 1MB Responses are limited to 10MB Increased from 1 MB in version 1.2.1 (May13th, 2009)
  • Slide 11
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 11 Limitations Your application and data is on Googles infrastructure Once you create an application, you can not delete it !
  • Slide 12
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 12 Quotas There are two types of quotas for GAE applications: Billable quota Resource maximums set by application administrator Prevent usage from exceeding budget Every application gets some billable quota for free If billing is enabled, billable quotes can be raised above the free levels Only billed for amount of resource above free thresholds Fixed quota Resource maximum set be the App Engine Ensure integrity of the system Fixed quotas are raised when billing is enabled, but are not billable There are both Daily and Per-Minute Quotas Per-Minute Quotas prevent Daily Quotas from being consumed too quickly
  • Slide 13
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 13 Resources Subject to Quotas Billable Quota Resources: Outgoing and Incoming Bandwidth CPU Time Stored Data Recipients E-Mailed Fixed Quota Resources Requests Both HTTP and HTTPS requests E-mail Data Size Number and size of attachments Various API Calls to DataStore, Mail, URLFetch, Users, Image, Memcache and XMPP services. When Resources are depleted: Bandwidth, CPU, and Requests result in HTTP 403 code Others will result in various Exceptions
  • Slide 14
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 14 Some Current Quotas and Costs ResourceFree Default QuotaBilling Enabled QuotaCost Daily LimitMax. RateDaily LimitMax. Rate Requests1,300,0007,400 / min.43,000,00030,000 / min.N/A Outgoing Bandwidth 1 GB 2, 4 56 MB / min.1,046 GB 1 740 MB / min.$0.12 / GB Incoming Bandwidth 1 GB 2, 4 56 MB / min.1,046 GB 1 740 MB / min.$0.10 / GB CPU Time6.5 CPU hours 3 15 CPU-min. / min. 1,729 CPU- hours 1 72 CPU-min. / min. $0.10 / CPU hr. Stored Data1 GBN/ANo Max 1 N/A$0.15 / GB / month Recipients E- mailed 2,0008 / min.7,400,000 1 5,100 / min.$0.0001 per 1 Anything above Free Default Quota is billed 2 Changed from 10 GB on May 25 th, 2009 3 Changed from 46 CPU hours on May 25 th, 2009 4 Changed to total 1GB incoming and outgoing
  • Slide 15
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 15 SDK for Java Emulates Googles server environment Uses a Jetty-based solution for the development server Allows code to developed locally Includes shell scripts and/or Ant tasks for For starting and stopping the development server Path to war directory passed as parameter There are ways of leveraging Maven http://gae-j-maven.appspot.com documents using archetype Include blank application template for new projects GAE/J expects a specific project directory structure: src/...Java source code... META-INF/...other configuration... war/...JSPs, images, data files... WEB-INF/...app configuration... lib/...JARs for libraries... classes/...compiled classes...
  • Slide 16
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 16 Eclipse Plugin Includes SDK Includes GWT Maybe you should use it. Hint, hint, nudge, nudge Facilitates App Engine development Provides a Google App Engine project type Uses expected project directory structure Can execute using development server within Eclipse Can debug using Eclipse Can deploy to Google from Eclipse
  • Slide 17
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 17 Configuring GAE/J follows the J2EE standards for web applications web.xml minus features: App Engine supports the element for servlet declarations. However, the load actually occurs during the first request handled by the web server instance, not prior to it. App Engine supports elements for specifying the MIME type to use for resources whose filenames end with certain extensions. MIME mappings only apply to servlets, not to static files. Static files use a fixed list of mappings of filename extensions to MIME types. Some deployment descriptor elements can take a human readable display name, description and icon for use in IDEs. App Engine doesn't use these, and ignores them. App Engine doesn't support JNDI environment variables ( ). App Engine doesn't support EJB resources ( ). The element is ignored. Servlet scheduling with is not supported Google App Engine does have service for CRON tasks
  • Slide 18
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 18 Configuring Has extra configuration file appengine-web.xml which specifies: Name of application:.appspot.com Version of application Logging Enabling HTTP Sessions Enabling SSL System properties and environment variables Differentiating between static and resource files By default all files under /war directory are both resource and static files except.JSP and those under /WEB-INF
  • Slide 19
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 19 Running in Development Eclipse provides a Run Configuration type Web Application SDK provides scripts and ant tasks to execute development server The development web server includes a console web application New in SDK version 1.2.5 Use to browse and manage the local datastore Append /_ah/admin to the URL http://localhost:8080/_ah/admin
  • Slide 20
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 20 Admin Console Google provides online monitoring on application deployed to its infrastructure Access via appengine.google.com Sign in using your Google account You can use the Administration Console to: Create a new application, and set up a free appspot.com sub- domain, or a top-level domain name of your choosing Invite other people to be developers for your application, so they can access the Console and upload new versions of the code View access data and error logs, and analyze traffic Browse your application's datastore and manage indexes View the status of your application's scheduled tasks Test new versions of your application, and switch the version that your users see
  • Slide 21
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 21 Persistence The persistence layer for Google App Engine application is known as DataStore Based on BigTable Proprietary database system build on Google File System (GFS) Not SQL Schema-less object database Supports arbitrary new properties or columns Supports transactions for writes Provides SQL-like queries Doesnt support joins Can use either Java Data Objects (JDO) or Java Persistence API (JPA) Interfaces provided by the DataNucleus Access Platform http://www.datanucleus.org/
  • Slide 22
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 22 Using JDO Configured using /src/META-INF/jdoconfig.xml file Copied to /war/WEB-INF/classes/META-INF in war file Has App Engine specific contents Requires class enhancement A post-compilation step that processes annotations and does some bytecode manipulation to facilitate persistence http://www.datanucleus.org/products/accessplatform/enhancer.html Ant macro provided in SDK Does automatically by Eclipse plugin Provides JDOQL query mechanism
  • Slide 23
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 23 Unsupported JDO Features Unowned relationships. You can implement unowned relationships using explicit Key values. JDO's syntax for unowned relationships may be supported in a future release. Owned many-to-many relationships. "Join" queries. You cannot use a field of a child entity in a filter when performing a query on the parent kind. JDOQL grouping and other aggregate queries. Polymorphic queries. You cannot perform a query of a class to get instances of a subclass. Each class is represented by a separate entity kind in the datastore. Only @PersistenceCapable, IdentityType.APPLICATION is supported. Composite primary keys !!
  • Slide 24
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 24 Sample JDO Persistent Class @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Employee { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; @Persistent private String firstName; @Persistent private String lastName; @Persistent private Date hireDate; // Constructors, Getters and Setters // JDO does not require Getters and Setters
  • Slide 25
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 25 Persisting with JDO JDO Uses a PersistanceManager to perform various operations: PersistenceManager pm = PMF.get().getPersistenceManager(); try { pm.makePersistent(new Employee("Alfred", "Smith", new Date())); } finally { pm.close(); } Any child records have not being persisted will be persisted as well
  • Slide 26
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 26 Keys used by JDO Keys There are four types of primary keys: Long Can be automatically generated by the DataStore and populate when instances is saved: @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; Unencoded String The application sets the value before saving Key com.google.appengine.api.datastore.Key Can be set by application or automatically generated if left null Key as Encoded String Makes the application more portable by not depending on Key class Can be set by application or automatically generated if left null Objects can easily be retrieved using its key: Employee e = pm.getObjectById(Employee.class, k);
  • Slide 27
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 27 JDO Queries JDO supports queries Query query = pm.newQuery(Employee.class); query.setFilter("lastName == lastNameParam"); query.setOrdering("hireDate desc"); query.declareParameters("String lastNameParam"); try { List results = (List )query.execute("Smith"); } finally { query.closeAll(); } Deletes can be done via query Query.deletePersistentAll( )
  • Slide 28
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 28 Using JPA Configured using persistence.xml file Must be in the app's war/WEB-INF/classes/META-INF/ directory Future release of Eclipse plugin will deploy this automatically Specifies DataNucleus as persistence provider Also requires class enhancement Bytecode manipulation done here Ant macro provided Done automatically by Eclipse plugin Not as well documented by Google They seem to favor JDO at this point in the documentation JPA more suited for ORM persistence ?
  • Slide 29
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 29 Sample JPA Persistent Class @Entity public class Employee { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String firstName; private String lastName; private Date hireDate;
  • Slide 30
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 30 Unsupported JPA Features Owned many-to-many relationships, and unowned relationships. You can implement unowned relationships using explicit Key values, though type checking is not enforced in the API. "Join" queries. You cannot use a field of a child entity in a filter when performing a query on the parent kind. Note that you can test the parent's relationship field directly in query using a key. Aggregation queries (group by, having, sum, avg, max, min) Polymorphic queries. You cannot perform a query of a class to get instances of a subclass. Each class is represented by a separate entity kind in the datastore
  • Slide 31
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 31 Upcoming Features Service for storing and serving large files Incoming email support Cursors for continuing results of Datastore queries past the 1000 entity limit Alerting system for exceptions in your application DataStore dump and restore facility
  • Slide 32
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 32 Users Service A UserService object can be retrieved using a provided Factory: UserService userService = UserServiceFactory.getUserService(); The UserService class provides methods: isUserLoggedIn Is current user logged in using Google account - isUserAdmin Is current user an admin for the application getCurrentUser Retrieve User object of current logged in user (null otherwise) createLoginURL Returns a URL where a user can log in createLogoutURL Return a URL where the user can be logged out The User class provides: getEmail E-mail address associated with Google account getAuthDomain - D omain name to which user has authenticated "gmail.com" for normal Google authentication. getNickname Human readable identifier with application or e-mail Access to GAE/J applications can controlled using security- constraint element in web.xml
  • Slide 33
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 33 Mail Service Supports the JavaMail (javax.mail) interface: Session session = Session.getDefaultInstance(props, null); try { Message msg = new MimeMessage(session); msg.setFrom(new InternetAddress("[email protected]")); msg.addRecipient(Message.RecipientType.TO, new InternetAddress("[email protected]", "Mr. User")); msg.setSubject("Your Example.com account"); msg.setText(msgBody); Transport.send(msg); } catch (AddressException e) { //... } catch (MessagingException e) { //... You do not need to provide any SMTP server configuration. App Engine will always use the Mail service for sending messages. Development server does not send E-mail, logs it instead
  • Slide 34
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 34 URL Fetch Service Uses java.net.URLConnection and related classes Must use the standard ports for HTTP (80) and HTTPS (443) Uses an HTTP/1.1 compliant proxy Waits up to 5 seconds for the remote server to respond Throws exception on timeout
  • Slide 35
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 35 Images Service App Engine provides the ability to manipulate image data using a dedicated Images service: Resize, rotate, flip, and crop images Includes I'm Feeling Lucky transform to adjust both color and contrast to optimal levels Composite multiple images into a single image Convert image data between several formats Enhance photographs using an predefined algorithm Provide information about an image, such as its format, width, height, and a histogram of color values. Accepts image data in the JPEG, PNG, GIF (including animated GIF), BMP, TIFF and ICO formats. Returns transformed images in the JPEG and PNG formats 1 MB limit on image data sent or received from service
  • Slide 36
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 36 Memcache Service The Memcache Java API implements the JCache interface (javax.cache), A draft standard described by JSR 107 Provides a Map-like interface to cached data Keys and values can be of any Serializable type or class Values stored in Memcache are retained as long as possible If new values are added, least recently used values are evicted if memory is low Values can be given an expiration date Cache not saved to disk Service failure may cause values to become unavailable 1 MB limit on values in Memcache
  • Slide 37
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 37 XMPP Service An App Engine application can send and receive instant messages to and from any XMPP-compatible instant messaging service Google Talk and Google Wave An app can send messages of any type defined in RFC 3921 Send and receive chat messages, Send chat invites Request status information. Incoming XMPP messages are handled by request handlers, similar to web requests. Limitations Currently, an app cannot participate in group chats Only receive messages of the "chat" and "normal" types
  • Slide 38
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 38 Cron Service The App Engine Cron Service allows you to configure regularly scheduled tasks that operate at defined times or regular intervals A cron job will invoke a URL at a given time of day Subject to the same limits and quotas as a normal HTTP request, including the request time limit. A cron.xml file resides in the /WEB-INF directory of the application Typically URLs accessed by cron jobs have access restricted to application administrators Admin Console allows monitoring of state of jobs No cron support in development. Of course one can use their local servers cron and task scheduler to accomplish the same Supports English-like time specifications every 5 minutes every monday 09:00
  • Slide 39
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 39 Sample cron.xml /recache Repopulate cache every 2 minutes every 2 minutes /weeklyreport Mail out a weekly report every monday 08:30 America/New_York
  • Slide 40
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 40 Task Queue Service Currently this is an experimental service Can change and become incompatible even in minor releases Allows applications to perform work outside of a user request But initiated by a user request Background work is organized into discrete units called Tasks There are quotas on these as well
  • Slide 41
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 41 Status of Frameworks (Java) Struts Unknown, but rumored to be not working Who cares ? Struts 2 Works with minor tweaks OgnlRuntime.setSecurityManager(null); Spring MVC Works with minor issues: May use unsupported class, javax.naming.InitialContextFactory Wicket Works with tweaks: http://www.danwalmsley.com/2009/04/08/apache-wicket-on-google-app- engine-for-java/ http://stronglytypedblog.blogspot.com/2009/04/wicket-on-google-app- engine.html Tapestry 5.0.18 works, but 5.1+ has issues: Uses unsupported class, javax.xml.stream.XMLInputFactory JSF - JSF 1.1 seems to be working but 1.2 is not Seems to have issues due to the bundling of JSP 2.1.
  • Slide 42
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 42 Status of Frameworks (Scala) Lift Mostly working minus some functionality: Comet support built on top of Scala actors which may spawn threads Lesser known web frameworks are all known to work Step Pinky Sweet
  • Slide 43
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 43 Status of Frameworks (Groovy) Grails Officially supported in Grails 1.1.1 Plugin provided http://grails.org/plugin/app-engine Gaelyk New lightweight toolkit especially for the GAE/J Uses Groovelets as controllers Support templates with embedded Groovy as views
  • Slide 44
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 44 Statius of Frameworks (JRuby) Rails Working http://olabini.com/blog/2009/04/jruby-on-rails-on-google-app- engine/ Sinatra Working http://blog.bigcurl.de/2009/04/running-sinatra-apps-on-google.html
  • Slide 45
  • Copyright 2009 by Object Computing, Inc. (OCI). All rights reserved. 45 Status of Frameworks (Clojure) Compojure Works with minor problem areas: http://elhumidor.blogspot.com/2009/04/clojure-on-google- appengine.html Issues Agents, clojure.parallel library, and future will not work (Threads) Shared references (Vars, Refs, and Atoms) may have problems due to distributed nature of the Google infrastructure

Recommended