mobile database and service oriented architecture

48
1 MOBILE DATABASES AND SOA Lucas Jellema (AMIS, The Netherlands) Workshop “Big Data and Its Impact” – 16 & 17 March 2013 for the Military College of Telecommunication Engineering

Upload: lucas-jellema

Post on 19-May-2015

1.432 views

Category:

Technology


1 download

DESCRIPTION

Mobile Devices come in many forms and shapes. Most of them work with data - either collecting, presenting or editing data. This data is usually retrieved from or eventually uploaded to a back end server. However, in order to allow users to work smoothly and quickly - even with limited or sometimes even no bandwidth - it becomes imperative to offer local storage on the device. To act as a cache for pre-fetched data as well as for modified and newly gathered data. And to negotiate with the back-end systems in a way that is transparent for users and apps. This presentation introduces the need for a local, on device data store. It discusses the requirements for such a mobile database. Then it introduces the key concepts in Service Oriented Architecture and finally it marries the mobile database and the SOA with its Enterprise Service Bus together - explaining how SOA concepts as well as a typical SOA implementation using an ESB is a perfect fit with and foundation for the Mobile Database.

TRANSCRIPT

Page 1: Mobile Database and Service Oriented Architecture

1

MOBILE DATABASES AND SOALucas Jellema (AMIS, The Netherlands)

Workshop “Big Data and Its Impact” – 16 & 17 March 2013for the Military College of Telecommunication Engineering

Page 2: Mobile Database and Service Oriented Architecture

2

THE PRESENTER:LUCAS JELLEMA• Lives in The Netherlands

(close to Amsterdam)• 1994-2002 Oracle Consulting Global Center

of Excellence for Internet Development• Joined AMIS in 2002 – now working as CTO,

Consultant (Architect & Technical Lead) & Trainer

• Oracle ACE (2005) & ACE Director (2006)• Author of ‘Oracle SOA Suite 11g Handbook’

(Oracle Press, 2010)• Presenter at Oracle OpenWorld, JavaOne,

OTN Yathra & more User Group Conferences• Frequent blogger at

http://technology.amis.nl• Active with SQL & PL/SQL, Java EE & ADF,

SOA, BPM & more Fusion Middleware

Page 3: Mobile Database and Service Oriented Architecture

3

OVERVIEW

• Overview of mobile devices• Data is presented, collected and edited in

devices• Handle ‘challenged server data connection’• Introduce the Mobile Database • Mobile Database challenges

– Big Data, Fast Data, Fresh Data, Distributed Database System, Security, Notifications

• Overview of core SOA concepts and objectives

• How SOA helps to enable the Mobile Database

Page 4: Mobile Database and Service Oriented Architecture

4

MY CAR – IS A DATA COLLECTOR

• Collecting metrics– Some for big data analysis for all cars (of this

type)– Some for car analysis of my car when serviced– Some for real time (traffic jam, local

temperatures)

Page 5: Mobile Database and Service Oriented Architecture

5

FORMULA ONE TELE METRICS

Page 6: Mobile Database and Service Oriented Architecture

6

CAR NAVIGATION SYSTEM

Page 7: Mobile Database and Service Oriented Architecture

7

LIVE TRAFFIC INFORMATION

Page 8: Mobile Database and Service Oriented Architecture

8

LIVE? TRAFFIC INFORMATION

Page 9: Mobile Database and Service Oriented Architecture

9

ZOOMING TRAFFIC INFORMATION

Page 10: Mobile Database and Service Oriented Architecture

10

LIVE ON-ROAD TRAFFIC INFORMATION SYSTEM == MOBILE DEVICE

Page 11: Mobile Database and Service Oriented Architecture

11

ON SITE CRASH INSPECTION

Page 12: Mobile Database and Service Oriented Architecture

12

PLETHORA OF MOBILE DEVICES & USAGES

Page 13: Mobile Database and Service Oriented Architecture

13

MOBILE AGENTS

Sensors

Cars

Navigation Systems

Cameras

Tablets

Mobile Phones

Security Badge Scanners

Barcode Scanners &Handheld Devices

Push Buttons

Satellites

Report Read & Edit

Read & Refresh (Alert)

Microphones & Speakers

Security Gates

ATM

Audio GuideTraffic Information

Page 14: Mobile Database and Service Oriented Architecture

14

DATA AND MOBILE DEVICES

• Some data requirements depend on the actual location of the device

• Some data has to be on the device even when no data connection is available

• Some data to be presented has to be fetched in (near) real time from a central service

• Some (big) data is collected for analysis at a much later point in time

• Some data is unstructured • Some data needs to be sent from the device

to a central service in real time• Most data will need to be refreshed at some

point in time – although the refresh rate differs

• Sometimes the user needs to be (very) aware when data is not recently refreshed

Page 15: Mobile Database and Service Oriented Architecture

15

DATA USED ON MOBILE DEVICES

• Originates from/to be sent to a back end (“the server”)

• Through limited bandwidth• Sometimes entirely disconnected

– No reception– Not permitted to use device– Server side unavailable

Page 16: Mobile Database and Service Oriented Architecture

16

NEED FOR ON-DEVICE-DATABASE

• Provide quick response for user• Work when off-line• Handle bursts of fast-data and piles of big

data• Take load off back end servers

Page 17: Mobile Database and Service Oriented Architecture

17

REQUIREMENTS FOR MOBILE DATABASE• Able to handle right types of data – including

unstructured data• Easily accessible to apps

– Support for SQL • Right scalability, right performance• Right security

– Encrypted, Recoverable, Remote Wipe• Maintainable/upgradable

– Database software and database model– Pre-populated data (“firmware”)

• Able to fetch and process data from back-end– Compact, secure, smart (incremental data

updates)• Smart upload to server, also Fast and Big Data

– pre-aggregated, pre-filtered, compacted

Page 18: Mobile Database and Service Oriented Architecture

18

TRANSPARENT TO USER AND APPS

• The local database should be ‘invisible’ to parties: they interact with data service to query or report data– However: it should be clear when data cannot

guaranteed to be fresh or complete

Page 19: Mobile Database and Service Oriented Architecture

19

SECURITY

• Confidentiality – no unauthorized access– Encryption of data in storage and transport– Authorization on server access

• Integrity – no tampering, constraint compliant

• Availability – no data loss, right-time-access and freshness

Page 20: Mobile Database and Service Oriented Architecture

20

HOW DOES DATA ENTER THE MOBILE DATABASE?• Initial load when app is first installed• Fetched from back end• Entered by mobile app(s)

• When– During install or upgrade of app– During use of the application (by the user or

device features such as GPS, Bar Code scanner, Camera or Recorder)

– When cache freshness is in doubt– When cache completeness

is in doubt– Synch upon re-connect:

submit collected new and changed data

Page 21: Mobile Database and Service Oriented Architecture

21

SOME GENERIC CHARACTERISTICS

• Pre loading• Lazy loading (background)• Write behind (lazy posting)• Data Freshness and Completeness

management• Local fallback (next best thing)

Page 22: Mobile Database and Service Oriented Architecture

22

DATA FRESHNESS AND COMPLETENESS MANAGEMENT• Based on actual time and geo-location…

– And possibly user, running app(s) and other context

• … assess if locally available data is fresh & complete

• When data is no longer fresh– Try to negotiate a smart refresh with the server– Depending on type of data: hide stale data,

show stale data with warning, continue to show stale data

• Incomplete data should be complemented– Different location/area, zoom level, …

Page 23: Mobile Database and Service Oriented Architecture

23

PUSH NOTIFICATIONS

• The server side can process messages, updates and events from many directions

• Sometimes a mobile device should be informed of this new information

• The server needs to know about the relevance of information to a device (subscription)

• The server needs to be able topush information (or poll-basedsemi-push)

• The mobile database & app has to process the pushed information

push

Page 24: Mobile Database and Service Oriented Architecture

24

MOBILE DATABASE(S) & BACK END SYSTEMS IS A …

Page 25: Mobile Database and Service Oriented Architecture

25

DISTRIBUTED DATABASE SYSTEM

Page 26: Mobile Database and Service Oriented Architecture

26

THE 12 OBJECTIVES FOR DISTRIBUTED DATABASE SYSTEMS

Page 27: Mobile Database and Service Oriented Architecture

27

MOBILE DATABASES DO NOT SUPPORT DISTRIBUTED TRANSACTIONS

• Server side updates happen independent from clients– Refresh of Mobile Database may take place at

any point in the future• Data manipulation in Mobile Database is

committed locally on the device– Upload to server happens later: ‘write (far)

behind’• This means that at some point after the

transaction is complete, the transactionis ‘replicated’ to other databases

• During this replication,conflicts may occur

Page 28: Mobile Database and Service Oriented Architecture

28

DATA REPLICATION – STAGE ONE

• Updates on the client are made through local apps an stored in the mobile database

• Local validations apply – based on the information available in the mobile device at the time of the transaction – Without consulting the back end

Page 29: Mobile Database and Service Oriented Architecture

29

DATA REPLICATION (‘WRITE BEHIND’) CONFLICTS – STAGE TWO• Updates on client violate server side integrity

rules– Invalid data is not tolerated by the back end– The mobile client has previously accepted the

transaction – How is the app/user engaged to correct/resolve?

Page 30: Mobile Database and Service Oriented Architecture

30

DATA REPLICATION (‘WRITE BEHIND’) CONFLICTS• Updates on client collide with changes in the

server– The client attempts to update a record that has

also been updated in some other way– How are conflicts detected?– How should conflicts be resolved?– How should parties be notified

about ‘lost conflicts’?

Page 31: Mobile Database and Service Oriented Architecture

31

SOA = BAD

Page 32: Mobile Database and Service Oriented Architecture

32

SOA =BusinessAgility through

Decoupling

Page 33: Mobile Database and Service Oriented Architecture

33

DECOUPLING≈MANAGING DEPENDENCIES

minimize impact of change while maximizing reusability

Page 34: Mobile Database and Service Oriented Architecture

34

COUPLING

A B

Page 35: Mobile Database and Service Oriented Architecture

35

B

DECOUPLING

A B

Page 36: Mobile Database and Service Oriented Architecture

36

B

DECOUPLING

A BC

Page 37: Mobile Database and Service Oriented Architecture

37

B

ADDITIONAL DECOUPLING THROUGH INTERMEDIARY

A BCESB

Page 38: Mobile Database and Service Oriented Architecture

38

B

COMPOSITE SERVICES

AD

E

ESB

Page 39: Mobile Database and Service Oriented Architecture

39

B

TRANSFORMATION/ADAPTION OF PROTOCOL AND FORMAT

A

ESB

JSONHTTPSSL

SQLJDBC over SQL*Net

No encryptionXML according to canonical model

D

E

EJB over RMI

B

XML/SOAPHTTP

WS-Security

Page 40: Mobile Database and Service Oriented Architecture

40

B

ORCHESTRATION, POTENTIALLY LONG RUNNING, STATEFUL, ASYNCHRONOUS

AD

E

Process(BPM/BPEL)

Page 41: Mobile Database and Service Oriented Architecture

41

B

IMPLEMENTATION OF SERVICES

A ESB

Q

PL/SQL

Mail Server

Page 42: Mobile Database and Service Oriented Architecture

42

B

EXTREME DECOUPLING USING EVENTS

A

D

Event Handler E

F

subscription

B

Page 43: Mobile Database and Service Oriented Architecture

43Se

rvic

e Bu

s

SOA AND MOBILE DATABASE

Page 44: Mobile Database and Service Oriented Architecture

44

SOA AND MOBILE DATABASE

• Services that hide underlying complexity– Technology, formats, protocols, data structure of

back end systems• Services that handle two-way data

synchronization– Possibly conflicting changes on both ends– Violation of server side data constraints– Smart refresh of data on mobile device

• ESB that supports subscriptions and push to send alerts/notifications/updates to mobile devices

• ESB that exposes services in appropriate protocol and format (e.g. http/json)

• ESB that handles security in transport and message contents

Page 45: Mobile Database and Service Oriented Architecture

45Se

rvic

e Bu

s

SOA AND MOBILE DATABASE

Page 46: Mobile Database and Service Oriented Architecture

46

SOA AND MOBILE DATABASE

• ESB ensuring the right availability – possibly exceeding the service window of back-end systems

• ESB dealing with potentially large number of devices– Scalability, Throttling (DoS protection)

• (Simulated) Device-to-Device-Push• Upgrade of meta-data, apps and data-

structure• Bulk upload of Big Data from mobile device• Initialization/Update of

pre-populated data on device

Page 47: Mobile Database and Service Oriented Architecture

47

SUMMARY

• Mobile Database is a necessity to ensure apps can run– With acceptable performance– At all (in off-line situations)

• Mobile Database is a local cache that contains a snapshot of the ‘back end data’ at a certain timestamp– Cache is not complete and is not current– Cache contains data collected and edited on device

• Mobile Database is part of distributed database system– Without real-time distributed transactions– Periodic synchronization between Mobile Database and

Server is required (to really complete the transaction)– Data conflicts need to be resolved

• SOA can help to hide complexity of back end and offer available services with fitting protocol and data format– Providing security, handling peak loads, supporting push,

understanding delta-based updates, …

Page 48: Mobile Database and Service Oriented Architecture

48

RESOURCES

• Blog: technology.amis.nl– On Oracle, SQL, Java, SOA, BPM & more

• Email: [email protected]

• : lucasjellema

• Slideshare: www.slideshare.net/lucasjellema

• : www.amis.nl, [email protected] +31 306016000 Edisonbaan 15, Nieuwegein

The Netherlands