Design a cloud infrastructure strategy

Assignment Help Python Programming
Reference no: EM132368484

Case Study: easyJet - Technology Strategy

Founded in 1995 by British Cypriot entrepreneur Stelios Haji-Loannou, easyJet is a low-cost European airline based in London United Kingdom. EasyJet expanded into Europe with acquisitions including Swiss charter TEA Basel AG and British Go-Fly in the early 2000s.

EasyJet outlined a renewed digital strategy in 2012 which gave it a competitive advantage in increased revenues, increased connection with passengers and cutting costs. In a September 2018 shareholder statement easyJet said:

"Over the past three years easyJet has been investing in its commercial IT platform which has delivered revenue benefits through significant improvement in the customer facing website and seating capability, as well as improvements in underlying resilience and control systems. However, easyJet has now made the decision to change its approach to technology development through better utilisation and development of existing systems on a modular basis, rather than working towards a full replacement of our core commercial platform. As a result of this change in approach, we are recognising a non-headline charge of around GBP65 million relating to IT investments and associated commitments we will no longer require. easyJet will continue to invest in its digital and eCommerce layers that will enable it to continue to offer a leading innovative, revenue enhancing and customer friendly platform." (easyJet trading statement, 28 September 2018).

Part of easyJet technology strategy is to integrate Cloud services such as Microsoft Azure into its existing system. This is a modular approach where, instead of totally rewriting the whole system (at great expense), Cloud services can be integrated with the existing system to provide additional functionality. An example is where easyJet wanted to add aircraft passenger seat allocation into its existing Reservation system. Because the existing system could not accommodate the infrastructure required for the additional functionality, and instead of redeveloping the whole system on the cloud, easyJet created and integrated a Cloud service to work alongside the reservations system. EasyJet continue to integrate digital services such as smartphone and wearable apps, third party applications such as Apple Pay, Flight Tracker, predictive maintenance, volcanic ash detection (AVOID) and many others.

After evaluating various platforms, easyJet decided to adopt a Service Oriented Architecture (SOA) for its future IT infrastructure. easyJet executives would like to gain a deeper understanding of:
• Computing and storage infrastructure design,
• Information integration,
• Application and Service Integration, and
• Technologies behind Application and Service Integration including a small specific demonstration of these technologies along with a brief explanation of the concepts and principles of how it works.
There are 2 parts to this Assignment:

Part 1 - Integration Demo

easyJet have been looking for ways to help passengers to plan their journeys. Your Integration Demo will demonstrate a basic passenger journey planning microservice using service-oriented architecture. You will use a Google Maps Mashup to plot a passenger journey (including a number of ‘stop-overs'). Your Google Maps Mashup will capture the endpoint coordinates (along with the name the passenger chooses for their journey) and send them to your microservice for storage. You will also be able to recall a stored passenger journey from your microservice and replot it on your Google Map Mashup. Please follow the instructions carefully. There are two major components in the demo system:

1. Microservice server demo. In this demo, you are required to build a RESTful Web service which supports two services:
• ‘saveJourney' query from the client browser similar to ‘/saveJourney?journey=[xml object]'. This server Web Service will accept an XML object with similar format to Figure 1. As part of the python service you are required to:
i. accept the XML object and extract the journey name which will become an xml file name (e.g. ‘Journey 1.xml'),
ii. Store the journey information in an .xml file using the Journey name as the file name.

• ‘getJourney' query from the client browser similar to ‘/getJourney?jouney=[journey name]' will retrieve the passenger journey information from the server:
i. The journey name will be accepted, and the corresponding xml file will be retrieved and returned as an XML object to the Google Maps Mashup.

The Python Bottle framework is required for this implementation. A Python scrip file with the name ‘microservice.py' will contain this RESTful Microservice Demo.

2. Mashup demo. In this demo, you are required to build a html Google Maps Mashup application which accepts a journey name as the input. There three functions (buttons on the html page) are required after the html page is initiated with a raw map:
• Function 1 - Clicking on the Map will create markers and polylines between markers as you continue selecting locations. These polylines between markers will simulate a passenger journey for which you will input a name, collect the coordinates and their order into an XML object, and send to your microservice via your AJAX web service.
• Function 2 - you will need to be able to clear the map back to its raw newly initiated state.
• Function 3 - you will be able to type a journey name into the input and retrieve a passenger journey from your microservice and populate the map with the saved journey:

i. This function will retrieve an XML object from your microservice via another AJAX web service.
ii. once your AJAX service receives the object it will need to extract the individual latitude and Longitude coordinates from the XML object and push them into the MVCArray.
A HTML file ‘plan_journey_map.html' should be implemented. In this file, a text field is provided at the page top to accept passenger's route name input. In addition, three buttons are required to implement the three functions.

Very Important Note:

For ease of demonstration to easyJet executives, your code must be self-contained and run easily in PyCharm. In addition to using Standards based HTML, JavaScript and Python, the Python ‘Bottle' module is the only additional framework you should use. ALL required files must be provided with your submission and should not require any extra installation.
HINT: Most of the code for this assignment is demonstrated in the workshops.

Part 2 - Integration Report

In addition to the above Demo code (40%) you are required to include a Report (60%) Based on the above case study explaining the key concepts for:
• The demo design and implementation (including instructions on running your code).
• Information Management and Integration
• Application and Data Storage Infrastructure design, and
• Application and Service Integration

Please use the following outline in your report:

 

 

Title

Major Outcomes

1

Introduction

 

2

Information Management and Integration

Discuss and design strategies to integrate the multiple data sources developed and used by different teams for various business units and departments.

3

Application and Data Storage Infrastructure Design

Discuss various cloud options and their suitability. Design a cloud infrastructure strategy.

4

Application and Service Integration

There are many different types of applications and services coexisting in easyJet, including legacy applications, internal Web services, and external Web services. Some external services are provided by business partners and others are from public service providers such as Google Map and Google Search.

Discuss and design service and application integration strategies.

5

RESTful Web services

Explain RESTful Web services and how they were

applied in your Demo

6

Mashups

Explain Mashup principles and how it was applied in your Demo

7

Conclusion

 

Consult Rubric in Appendix A for more details on how this question will be marked.

Report Format
Your report should be no less than 1500 words and it would be best to be no longer than 2000 words.

The report MUST be formatted using the following guidelines:
• Paragraph text - 12 point Calibri single line spacing
• Headings - Arial in an appropriate type size
• Margins - 2.5cm on all margins
• Header - Report title
• Footer - page number (including the word "Page")
• Page numbering - roman numerals (i, ii, iii, iv) up to and including the Table of Contents, restart numbering using conventional numerals (1, 2, 3, 4) from the first page after the Table of Contents.

• Title Page - Must not contain headers or footers. Include your name as the report's author.
• The report is to be created as a single Microsoft Word document (version 2007, 2010, 2013 or Office 365). No other format is acceptable and doing so will result in the deduction of marks.

Assignment Guidelines

This assignment will take a number of weeks to complete and will require a good understanding of application and information integration technologies for successful completion. It is imperative that students take heed of the following points in relation to doing this assignment:

1. Ensure that you clearly understand the requirements for the assignment - what has to be done and what are the deliverables.

2. If you do not understand any of the assignment requirements - Please ASK the lecturer or your tutor.

3. Each time you work on any aspect of the assignment reread the assignment requirements to ensure that what is required is clearly understood.

Attachment:- Architecture and System Integration.rar

Reference no: EM132368484

Questions Cloud

Describe the tangible benefits that they have received : Explain what a learning culture entails, what a learning organisation is, how learning organisations are created, developed and maintained
What is the role of the manager in organization innovation : What is the role of the manager in an organization's innovation?
Self-analysis essay : You will prepare an essay on a particular problem faced in your own experience and how it should be addressed based on your current skills,
Prescriptive behavioral typologies-followership literature : Compare the prescriptive behavioral typologies in followership literature review (Crossman & Crossman, 2011) with Rosenbach, Pittman
Design a cloud infrastructure strategy : ICT321 - Architecture and Systems Integration - University of the Sunshine Coast - Discuss and design strategies to integrate the multiple data sources
What are the challenges of managing information systems : What are the challenges of managing information systems as there is continual change in technology.
Organizational culture and employee motivation : Consider traditional structures as well as contemporary ideas. Also consider organizational culture and employee motivation
Describe how you planned your use of time to do a project : Share some decisions you were faced with when allocating your time.
Develop a set of criteria for the dean : A college's management program is experiencing a decline in enrollment. Considering evidence based management techniques, develop a set of criteria

Reviews

len2368484

9/9/2019 10:52:20 PM

Criteria High Distinction (85-100%) (15%) Application and service integration - Discuss and design service and application integration strategies. Skillful and proficient Clear explanations and examples of the three main methods of Enterprise Application Integration (EAI) including the advantages and disadvantages of each. Clear recommendations on how EAI can be applied in the case study. (7.5%) Explain RESTful Web services and how they were applied in your Demo. Perceptive An accurate and logical explanation of RESTful Web services and how they could apply in other applications as well as applied to the demo code. Clear instructions on how the demo code should be executed.

len2368484

9/9/2019 10:52:09 PM

Criteria High Distinction (85-100%) (15%) Information Integration and Management - Discuss and design strategies to integrate the multiple data sources developed and used by different teams for various business units and departments. Skillful and proficient Clear definition of Enterprise Information Integration. clear elaboration of the three data integration methods with explanations (including advantages and disadvantages of each) and examples of how each method could be applied in the case study. (15%) Application and Data storage infrastructure design - Discuss various cloud options and their suitability. Design a cloud infrastructure strategy. Skillful and proficient Clear explanation of cloud infrastructure. Clear identification and elaboration on the types of cloud infrastructure (including advantages and disadvantages of each) and how each cloud type could be applied to the case study. Clear cloud strategy recommendation.

len2368484

9/9/2019 10:51:59 PM

Criteria High Distinction (85-100%) (20%) Create a Python script to implement a working RESTful Web service microservice server Skillful and proficient RESTful Web service serve will listen on a TCP port and accept, process and serve XML data with no errors. Input error handling. Very logically set out code with clearly documented code. (20%) Create a HTML script to implement a Mashup from two data sources including the RESTful Web service server. Skillful and proficient HTML script will access, process and show data from two sources no errors. Well set out HTML page with intuitive functionality Clearly documented code.

len2368484

9/9/2019 10:51:45 PM

This assignment will take a number of weeks to complete and will require a good understanding of application and information integration technologies for successful completion. It is imperative that students take heed of the following points in relation to doing this assignment: 1. Ensure that you clearly understand the requirements for the assignment – what has to be done and what are the deliverables. 2. If you do not understand any of the assignment requirements – Please ASK the lecturer or your tutor. 3. Each time you work on any aspect of the assignment reread the assignment requirements to ensure that what is required is clearly understood.

len2368484

9/9/2019 10:51:23 PM

Requests for an extension to an assignment MUST be made to the course coordinator prior to the date of submission and requests made on the day of submission or after the submission date will only be considered in exceptional circumstances. For ease of demonstration to easyJet executives, your code must be self-contained and run easily in PyCharm. In addition to using Standards based HTML, JavaScript and Python, the Python ‘Bottle’ module is the only additional framework you should use. ALL required files must be provided with your submission and should not require any extra installation. HINT: Most of the code for this assignment is demonstrated in the workshops.

len2368484

9/9/2019 10:51:01 PM

Task 2 consists of a demo code package and a technical report for the integration plan. Submit your work as a .zip file, which contains the code files (another .zip file) and your report (a .docx file), to Blackboard Task 2. Please follow the submission instructions described in this document. The task is an individual assignment and will be marked out of a total of 100 marks and forms 40% of the total assessment for the course. ALL assignments will be checked for plagiarism by SafeAssign system provided by Blackboard automatically.

Write a Review

Python Programming Questions & Answers

  Brief explanation of the concepts and principles

Small specific demonstration of these technologies along with a brief explanation of the concepts and principles of how it works

  Aussie best car abcdeclares that based on its yearly sales

aussie best car abcdeclares that based on its yearly sales it will award a bonus as follows. the bonus will be equally

  The dictionary order based on the ascii order

Needless to say, the dictionary order based on the ASCII order is not what a real-world indexing software wants. So, we want to implement the dictionary order of strings in the standard wa

  Python program that keeps prompting the user for a student

Python program that keeps prompting the user for a student name, and the grade of that student. If a user does not enter a name.

  Let ll be a list of integers

Let LL be a list of integers. Use list comprehension to produce teh following lists. Each one should just take onel line. Anser questions as two comments.

  Write program that prompt user for strictly positive integer

Write a program that prompts the user for a strictly positive integer N, generates a list of N random integers between -50 and 50 (included)

  Write a python program to determine a given pattern appears

In this assignment, your goal is to write a python program to determine whether a given pattern appears in a data series

  Discuss how the use of standards such as variable naming

Discuss how the use of standards such as variable naming, the use of class diagrams, and good programming practices all contribute to both rapid program.

  Write test cases for code

Write file that will import the modules unittest, unittest.mock, zipfile and bb and/or parts of these modules 3. You will be mocking the following:

  Enter grade number and respond by indicating associate grade

Write a program that prompts the user to enter a grade number and responds by indicating the associated grade category.

  Code a console-based program in python

CP1404/CP5632 2016 SP2/22/52 Shopping List 1.0 - You are to plan and then code a console-based program in Python 3, as described in the following information and sample output. This assignment will help you build skills using selection, repetition,..

  Calculate the problem and stop after the condition

Write a program that will calculate the problem and stop after the condition has been met.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd