You are here: Home / Past Courses / Spring 2016 - ECPE 276 / Projects / Project 2 - Cloud Applications

Project 2 - Cloud Applications

Overview

Cloud computing vendors provide extensive storage and data management APIs to application authors. In this project, you will work in groups of 1-2 people to write a client application for Amazon's cloud platform that takes advantage of their distributed and redundant computing infrastructure.

 

Application

First, pick an application that you would like to write. All of these applications are similar in one respect: they are client programs that run on your local computer (Windows/Mac/Linux), but they require "cloud services" in order to function. You should be able to create any of these programs by writing only the client component, and using the cloud storage/database services provided by Amazon.

"Dropbox" clone

  • Recursively synchronize a directory of files between networked computers. A file modified on one computer should be transferred to all other computers owned by the same user.
  • Maintain a backup of all files in "the cloud". Allow the user to manually restore the complete directory (if missing, or on a new computer), or to restore an earlier version of a specific file.
  • Gracefully handle offline machines.  If a computer has been offline and reconnects, it should obtain the latest files from "the cloud".
  • Once a new/modified file has been uploaded by the original computer into "the cloud", the original computer does not need to remain online for other connected machines to synchronize.

 

"iMessage" / "Skype chat" clone

  • Send chat messages between networked computers.  Chat messages can include pictures.
  • Maintain a "friend list" of users available to chat. Monitor their status (online/offline is sufficient).
  • Maintain a list of messages in "the cloud", such that if client A sends a message to client B, and client B is offline, then client B will get the message upon connecting later in time. 
    • Chat history: If client A logs onto a new device, client A should see the past n messages in chat history, even if those were not sent from this device. 30 is a reasonable number for n.

 

"Spotify" clone

  • Listen to music from an online service with a single global catalog.
  • Allow users to search the global catalog by artist name, album name, or track name.
  • Maintain per-user playlists of "starred" (favorite) songs and synchronize them between all clients using the same user account.
  • Share playlists to other uses and keep the playlist current when updated by original creator.

 

"Evernote" clone

  • Allow a single user to access a shared collection of "documents" (text, images) from multiple devices.
  • Content added or updated to one device is added/updated to all synchronized devices.
  • Client should act as a "cache" with a finite storage capacity. Frequently-accessed documents should be stored locally, and other documents should be retrieved from cloud service only accessed by user. (In contrast to the "Dropbox" clone above, where all files must be synchronized between devices.)

 

Something else? 

  • I'm open to other ideas along the lines of the four listed above.  I'm also open to web-based applications instead of desktop applications, if you have prior experience in that area. Talk to me first...

 

All applications must also meet the following requirements:

  • Use usernames/passwords to authenticate users. New accounts should be created through the client application.
  • Use Amazon S3 for file storage
  • Use Amazon DynamoDB for database storage  (No traditional RDBMS systems will be allowed!)
  • Use both text and binary data types

 

Note about project ideas: the focus of this project is not creating polished native clients for Mac/Windows/Linux, etc... You only need a functional user interface that allows you to demonstrate application operation.  It is sufficient for your UI to be simple or plain, provided it is not ugly or impossible to use.

 

Programming Language

Second, pick a programming language that you feel comfortable with. This list of approved languages is based on the official Amazon software development kits (SDKs). Other languages are theoretically possibly, but you'll have to write support for Amazon cloud services from scratch or find an unofficial SDK elsewhere online. Note that Java and .NET both provide plugins for your Eclipse or Visual Studio IDE that may simplify development. Other languages will need to use the AWS website to access similar functionality.

  • Java (use Eclipse IDE + fancy AWS toolkit)
  • C# / .NET (use Visual Studio IDE + fancy AWS toolkit)
  • C++
  • PHP
  • Python
  • Ruby
  • Go
  • Node.js

 

Getting Started

Third, build your development environment!

Java language: Follow these instructions 

C# / .NET language: Follow these instructions

 Other languages (C++, PHP, Python, Ruby, Go, Node.js):

  • Beats me, you're the expert!  How do you usually code in these systems?  I'd start by installing whatever is normally needed to execute code in this environment on your computer.  And then I would check with the Amazon SDK documentation to see what is needed to install their toolkit...

 

Security

The fundamental design of these projects (doing all the work in a desktop client) is **insecure**. Think about it this way:  Your client app must contain your AWS access ID and secret key in order to function.  An attacker could easily extract that information from the program binary and rig up a new hostile client program, and destroy/steal your data while posing as you.  No sane person should write a client program that contains your privileged Amazon credentials, and then distribute that program to untrusted users. Instead, the client program should communicate with a custom server program (which can run on Amazon EC2) using a limited protocol.  The server program should verify that the client's request is legitimate, and then use the AWS access ID / key (or, even better, AWS IAM credentials) to manipulate the data on the client's behalf.  Unfortunately, we don't have enough time in this class to write both a client component and server component.  Thus, as you write the client, just keep this thought in mind: "In a real system, all of this code that uses the Amazon SDK to manipulate data would be placed into a separate server application."

 

Part 1 - Project Idea

Create an idea document that provides an overview of the application that you will write from both a user interface and programming perspective.  Each page of this document should focus on a separate user action, and contain the following items:

  1. Description of the user action - What is the user doing right now in your application?  (Double-click on a new track on "Spotify", modify a file on disk and have "Dropbox" upload it, receive a new "iMessage" text from a friend, etc...)
  2. A design mockup *picture* - What does the user see on the screen during this event?  Provide fake data to make the mockup look realistic. You don't have to actually write functional code to create this.  You could draw it in whatever design program you prefer.  For example, the 
  3. free 30-day trial of Balsamiq is a good way to make "wireframe" program mockups.
  4. Description of the data operations - What is being uploaded to / downloaded from the cloud during this action?  What data to you expect to store in Amazon?  Are you doing some sort of search / database query in order to perform this action?  What do you expect the Amazon system to do?  Be detailed!  This will be converted to code next...

This idea document should cover at least 6 user actions, starting with the actions that are most significant and unique to your application.  (To put it another way, the action of creating the username and password is dull and obvious, and is not unique to your application.)

Upload the document in PDF format to Canvas.

 

Part 2 - Project Implementation

In this stage of the project, you will make the mockup functional.  :-)

There are two deliverables for this part:

  • checkpoint in-class demonstration halfway through the time allotted for part 2 (see timeline below). At this checkpoint, you should demonstrate your work to date, as well as discuss any problems you have overcome and problems that are currently unresolved.
    • Time for demonstration: ~10 minutes.
  • final in-class demonstration at the end of the time allotted for part 2.  Here, you should show off your finished application, and explain how it works behind the scenes.
    • Time for demonstration: ~15 minutes.

 

Part 3 - Project Reporting

There are three deliverables for this part:

  1. Full source code to all components
  2. Installation and execution instructions - what steps would a classmate need to take to compile and run your application?  Include any Amazon environment setup that you needed to do in advance of the first client application being run. 
  3. A report documenting your completed project. This 5-6 page report should contain the following sections:
    1. Introduction - what does your application do?
    2. Algorithm details - how does your application transfer, store, and process data?  What does the client do locally?
    3. Infrastructure used - what AWS services does your application rely on, and what do these services do?
    4. Fault tolerance -  Think about failures to EC2 nodes, S3, DynamoDB, etc... What failures will your application tolerate, and how does it do so?  What failures will your application not currently tolerate? What failures (according to the marketing literature) will the AWS services your application relies on tolerate?  If you had an additional 6 weeks to focus purely on fault tolerance, how would you modify your application to tolerate these additional failure modes?
      1. Final thoughts and feedback - What was the easiest and hardest part of the project? What suggestions would you have if this project is repeated for future students?
      2. References - What sources did you use in building your project?  Provide links to public source code, tutorials, discussion forums, mailing lists, etc..

     

    Submission instructions: Upload the source code (in a compressed tarball or zip file, please), installation instructions (in PDF format), and the final report (in PDF format) to Canvas.

     

    Timeline

    Due DateWorking OnDeliverables at End
    Tue, Mar 29th, 2016 by 11:59pm

    Part 1: Brainstorming for idea and developing mockup

    6 page document with mockups and data descripions
    Thur, Apr 14th, 2016 (in class) Part 2: Checkpoint and initial demo In-class demo (of work to date)
    Tue, May 3rd, 2016 (in class) Part 2: Implementation complete! In-class demo (of final system)
    Fri, May 6th, 2016 by 11:59pm  Part 3: Report writeup and any final polishing
    Source code and final report

     

    Grading

     

    FAQs

    Q: What is the difference between a NoSQL database (Amazon DynamoDB, ...) and a relational SQL database (Oracle, SQL Server, MySQL, PostgreSQL, ...) ?

    Today's web-based applications generate and consume massive amounts of data. For example, an online game might start out with only a few thousand users and a light database workload consisting of 10 writes per second and 50 reads per second. However, if the game becomes successful, it may rapidly grow to millions of users and generate tens (or even hundreds) of thousands of writes and reads per second. It may also create terabytes or more of data per day. Developing your applications against Amazon DynamoDB enables you to start small and simply dial-up your request capacity for a table as your requirements scale, without incurring downtime. You pay highly cost-efficient rates for the request capacity you provision, and let Amazon DynamoDB do the work over partitioning your data and traffic over sufficient server capacity to meet your needs. Amazon DynamoDB does the database management and administration, and you simply store and request your data. Automatic replication and failover provides built-in fault tolerance, high availability, and data durability. Amazon DynamoDB gives you the peace of mind that your database is fully managed and can grow with your application requirements.

    While Amazon DynamoDB tackles the core problems of database scalability, management, performance, and reliability, it does not have all the functionality of a relational database. It does not support complex relational queries (e.g. joins) or complex transactions. If your workload requires this functionality, or you are looking for compatibility with an existing relational engine, you may wish to run a relational engine on Amazon RDS or Amazon EC2. While relational database engines provide robust features and functionality, scaling a workload beyond a single relational database instance is highly complex and requires significant time and expertise. As such, if you anticipate scaling requirements for your new application and do not need relational features, Amazon DynamoDB may be the best choice for you.  (Answer courtesy of Amazon DynamoDB FAQ)

    Other links:

     

    Q: When should I use Amazon DynamoDB vs Amazon S3?

    Amazon DynamoDB stores structured data, indexed by primary key, and allows low latency read and write access to items ranging from 1 byte up to 64KB. Amazon S3 stores unstructured blobs and suited for storing large objects up to 5 TB. In order to optimize your costs across AWS services, large objects or infrequently accessed data sets should be stored in Amazon S3, while smaller data elements or file pointers (possibly to Amazon S3 objects) are best saved in Amazon DynamoDB.  (Answer courtesy of Amazon DynamoDB FAQ)

     

    References