16
Google App Engine Danail Alexiev Technical Trainer SoftAcad.bg

Google App Engine

  • Upload
    manju

  • View
    31

  • Download
    0

Embed Size (px)

DESCRIPTION

Google App Engine. Danail Alexiev Technical Trainer SoftAcad.bg. Who’s Talking?. Danail Alexiev Software Consultant at Axway , technical trainer at SoftAcad learning center. Topics Today. What is Google App Engine(GAE) ? Why GAE ? Architecture of GAE Quota & Pricing - PowerPoint PPT Presentation

Citation preview

Page 1: Google App Engine

Google App Engine

Danail AlexievTechnical TrainerSoftAcad.bg

Page 2: Google App Engine

Who’s Talking?•Danail AlexievoSoftware Consultant at Axway, technical trainer at SoftAcad learning center

Page 3: Google App Engine

Topics Today• What is Google App Engine(GAE) ?• Why GAE ?• Architecture of GAE• Quota & Pricing• Developing using GAE• Deploying Applications• Security• GAE datastore• Demo application

Page 4: Google App Engine

What is GAE?• Google’s platform to build Web

Applications on the cloud• Dynamic Web server• Transactional DataStore Model

Page 5: Google App Engine

Why GAE?• Automatic scaling and load balancing• Lower total cost of ownership• Web administration console & utilities• Enhances developing & deploying of

web applications• Multilanguage support (Java, Python,

GO..)• Secure environment (Sandbox)

Page 6: Google App Engine

Architecture of GAE

Page 7: Google App Engine

Quota & Pricinghttp://code.google.com/intl/bg-BG/appengine/docs/quotas.html#Resources

• $0.10 - $0.12 per CPU core-hour• $0.15 - $0.18 per GB-month of storage• $0.11 - $0.13 per GB outgoing bandwidth• $0.09 - $0.11 per GB incoming bandwidth

Page 8: Google App Engine

Developing using GAE

• Dynamic web servingo With full support for common web technologies

• Persistent storageo With queries, sorting and transactions

• Automatic scaling and load balancing• Google Account APIs

o For authenticating users and sending email• A local development environment

o That simulates Google App Engine on your computer• Task queues

o For performing work outside of the scope of a web request

• Scheduled tasks for triggering events

Page 9: Google App Engine

The Sandbox• Outgoing access via URL fetch or email

services• Incoming access via HTTP (or HTTPS)• Store state via App Engine datastore,

memcache• Respond to web request, queued task,

scheduled task• Return response data within 30 seconds• Quotas and Limits• Free 500MB of storage and 5 million page

views a month• 10 applications per developer account

Page 10: Google App Engine

The GAE Datastore

Page 11: Google App Engine

Intro to DS• Apparently based on BigTable• Absolutely not a relational

database• No joins (they do have “reference

fields”)• No aggregate queries - not even

count()!• Hierarchy affects sharding and

transactions• All queries must run against an

existing index

Page 12: Google App Engine

Models & Entities

• Data is stored as entities• Entities have properties - key/value pairs• An entity has a unique key• Entities live in a hierarchy, and siblings exist in the same entity groupo These are actually really important for

transactions and performance• A model is kind of like a class; it lets you define a type of entity

Page 13: Google App Engine

Developing using GAE

• Hello world• Datastore & entities• Memcache• Mail and Task Queues API• High Replication• Queues & Backends• Warmup requests• Pagination

Page 14: Google App Engine

Deployment• Register using admin console if not done

yet and get application ID• Uploading using eclipse plugin – just click

upload!

• Or using command line :

appengine-java-sdk\bin\appcfg.cmd [options] <action> <war-location>

Page 15: Google App Engine

Google App Engine

Page 16: Google App Engine

Homework1. Following the GAE tutorial at https://

developers.google.com/appengine/docs/java/gettingstarted/creating create and deploy a "Hello World" application in the GAE cloud.

2. Following the official GAE manuals (https://developers.google.com/appengine/docs/java/gettingstarted/) create and deploy a simple guestbook application in Java or Python.

In case you find difficulties, check the solution here: http://code.google.com/p/guestbook-java/As a result of your work send the source code + the URLs of your working application deployed in GAE.