2016 Big Data. Mejores pra cticas en AWS

Size: px
Start display at page:

Download "2016 Big Data. Mejores pra cticas en AWS"

Transcription

1 2016 Big Data. Mejores pra cticas en AWS Javier Ros, Solution Architect Jun, , Web Services, Inc. or its Affiliates. All rights reserved.

2 Agenda Big Data challenges Design Patterns on AWS RavenPack. Big Data for Financial Applications Shopping cart

3 Big Data Challenges Variety Velocity Volume

4 Simplify Big Data Processing data ingest / collect store process / analyze consume / visualize answers Time to Answer (Latency) Throughput Cost

5 On-Demand Big Data Analytics Young Huang. Director, Big Data Analytics. We were able to save about 90% over the EC2 ondemand cost

6 Clickstream Analysis Suneel Sajnani. Senior VP of Enterprise Technology Kinesis and Spark to process more than 30TB per day

7 Event-driven Extract, Transform, Load (ETL) Brian Filppu. Director of Business Intelligence Kinesis, Lambda and EMR for 16 million events per day

8 Smart Applications Joe Emison. Founder & Chief Technology Officer Machine Learning democratizes the process of building predictive models. It's easy and fast to use, and has machine-learning best practices encapsulated in the product, which lets us deliver results significantly faster than in the past.

9 June 2, 2016 RavenPack AWS Summit Madrid Mapping the World s Big Data for Financial Applications Jose Luis Cruz Operations Manager jlcruz@ravenpack.com

10 What is RavenPack? Current Use Cases in the Cloud What s Next?

11 RavenPack at a Glance RavenPack delivers big data analytics to financial professionals 80% of big data is unstructured Only 29% of decisions are based on big data. 80% 29% ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel:

12 RavenPack at a Glance Top hedge funds and investment banks use RavenPack for trading and risk management RavenPack processes hundreds of thousands of documents each day We produce machine readable analytics for each document in real time <250ms Archive of +300 million documents, over +20 years ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel:

13 Use Case: Realtime Classification Classic Model Collectors Classifier RT Feed Files RDBMS Snapshots 6 Servers, 19 KVM virtual machines Limited Storage - Expensive to Upgrade Multiple Points of Failure ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel:

14 Use Case: Realtime Classification Cloud Model using AWS CloudFormation to model the Stack Unlimited, Distributed Storage Easy redundancy, failover and backup Collectors Classifiers RT Feed S3 DynamoDB RDS EC2 AWS CloudFormation Snapshots ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel: Kinesis CloudSearch Redshift 14

15 Use Case: History Classification Classic Model Same Limited Set of Servers, Same RDBMS Can affect Realtime System, Backups Full archive, 4-6 Classifiers 6 weeks! Classifiers Classifiers RDBMS Files ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel:

16 Use Case: History Classification Cloud Model using AWS Servers on Demand, Distributed Storage Independent of Realtime System Full archive, 100 Classifiers from 6 weeks to 3 days!... DynamoDB RDS Availability Classifiers Zone Availability Zone EC2 AWS CloudFormation Coordinator ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel: S3 Redshift 16

17 Future: Incorporating Structured Data Structured BIG DATA available: Consensus and estimates Online purchases Bank and credit card transactions Satellite photographical information Can improve current analytics or create new ones EMR EC2 Kinesis Challenges Amount of data available Mapping all those different datasets Solution: Kinesis + RedShift + EMR ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel: S3 Redshift 17

18 Future: Self-Service Data Download a Custom Slice of Analytics Data Provide a Web-API and Web Service Let client specify parameters Data Set and Time Range Entities and Events Filters Leverage RedShift and S3 Compression and Multiple Output Formats EC2 API Gateway AWS Lambda ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel: S3 Redshift 18

19 Future: The RavenPack Cloud Let Clients upload Proprietary Content to the Virtual Private Cloud (VPC) Internal documents / research , Instant Messaging CRM, bug tracking system Client Support Calls transcriptions... Provision Computing and Storage Resources on a Per Project Basis View Private Analytics in Isolation or Alongside Standard RavenPack Analytic DataSets Everything Goes Away when Project Completes ravenpack.com info@ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel: DynamoDB CloudSearch S3 EC2 RDS AWS CloudFormation Redshift 19

20 Thanks for listening! Jose Luis Cruz: ravenpack.com AMERICAS Tel: (646) EMEA-APAC Tel: +44 (0) RavenPack International

21 Shopping Cart

22 Shopping cart

23 Business Metrics Time to buy Time to cancel Number of sales Sales per country % buy

24 Architecture client Cart event Redshift QuickSight Cart event API Server Kinesis S3 EMR S3 mobile client Machine Learning

25 Customer events { } type : productadded, timestamp : , customer : 5, cart : , product : { } type : productremoved, timestamp : , customer : 5, cart : , product : { } type : cartbuy, timestamp : , customer : 5, cart : productlist : [34, 253] { } type : cartdiscard, timestamp : , customer : 5, cart : , productlist : [2353, 1355, 1234]

26 Kinesis Firehose

27 Kinesis Firehose

28 Architecture AWS Data Pipeline Cart event client Redshift QuickSight Cart event API Server Kinesis S3 EMR S3 mobile client Machine Learning

29 AWS Data Pipeline

30 AWS Elastic MapReduce

31 Pig script DATA = LOAD 's3://shoppingcart-summit/streams/$inputdate/*' USING JsonLoader('type:chararray,timestamp:int,customer:int,cart:long,product:chararray, productlist: chararray'); DATA2 = FILTER DATA BY type is not null; CARTS = GROUP DATA2 BY cart; CARTDATA = FOREACH CARTS { LOGIN = FILTER DATA2 BY type == 'login'; ADDED = FILTER DATA2 BY type == 'productadded'; REMOVED = FILTER DATA2 BY type == 'productremoved'; BUY = FILTER DATA2 BY type == 'cartbuy'; GENERATE MAX(DATA2.customer) AS customer, group AS cart, MAX(DATA2.timestamp)-MIN(DATA2.timestamp) AS duration, IsEmpty(BUY) AS buy, COUNT_STAR(ADDED) AS added, COUNT_STAR(REMOVED) AS removed, MAX(DATA2.timestamp)-MAX(ADDED.timestamp) AS thinking, MIN(LOGIN.timestamp) AS timestamp, '\"\"'; }; STORE CARTDATA INTO 's3://shoppingcart-summit/redshift/$inputdate/' USING PigStorage(',');

32 AWS Quicksight

33 Architecture AWS Data Pipeline Cart event client Redshift QuickSight Cart event API Server Kinesis S3 EMR S3 mobile client Machine Learning

34 Machine learning and smart applications Machine learning is the technology that automatically finds patterns in your data and uses them to make predictions for new data points as they become available Your data + machine learning = smart applications

35 Introducing Machine Learning Easy to use, managed machine learning service built for developers Robust, powerful machine learning technology based on s internal systems Create models using your data already stored in the AWS cloud Deploy models to production in seconds

36 Building smart applications with ML Train model Evaluate and optimize Retrieve predictions - Create a Datasource object pointing to the shopping cart processed data - Explore and understand your data - Transform data and train your model

37 Building smart applications with ML Train model Evaluate and optimize Retrieve predictions - Understand model quality - Adjust model interpretation

38 Explore model quality

39 Fine-tune model interpretation

40 Building smart applications with ML Train model Evaluate and optimize Retrieve predictions - Batch predictions - Real-time predictions

41 Real-time predictions for interactive applications Query for predictions with ML real-time API Your application ml = boto3.client('machinelearning') prediction = ml.predict( MLModelId='ml-dZxbrDXAstA', Record={ 'customer': '4634', cart': ' ', }, PredictEndpoint=' )

42 Architecture AWS Data Pipeline Cart event client Redshift QuickSight Cart event API Server Kinesis S3 EMR S3 mobile client Machine Learning

43

EBOOK: Cloudwick Powering the Digital Enterprise

EBOOK: Cloudwick Powering the Digital Enterprise EBOOK: Cloudwick Powering the Digital Enterprise Contents What is a Data Lake?... Benefits of a Data Lake on AWS... Building a Data Lake on AWS... Cloudwick Case Study... About Cloudwick... Getting Started...

More information

Architecting an Open Data Lake for the Enterprise

Architecting an Open Data Lake for the Enterprise Architecting an Open Data Lake for the Enterprise 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Today s Presenters Daniel Geske, Solutions Architect, Amazon Web Services Armin

More information

Building a Data Lake on AWS EBOOK: BUILDING A DATA LAKE ON AWS 1

Building a Data Lake on AWS EBOOK: BUILDING A DATA LAKE ON AWS 1 Building a Data Lake on AWS EBOOK: BUILDING A DATA LAKE ON AWS 1 Contents Introduction The Big Data Challenge Benefits of a Data Lake Building a Data Lake on AWS Featured Data Lake Partner Bronze Drum

More information

Big Data in the Cloud High Velocity Data in Media and Games Applications

Big Data in the Cloud High Velocity Data in Media and Games Applications Big Data in the Cloud High Velocity Data in Media and Games Applications George Whiffen, Technical Instructor, Web Services 4pm Loughborough University 28 th Feb 2017 2016 Web Services, Inc. and its affiliates.

More information

AWS Architecture Case Study: Real-Time Bidding. Tom Maddox, Solutions Architect

AWS Architecture Case Study: Real-Time Bidding. Tom Maddox, Solutions Architect AWS Architecture Case Study: Real-Time Bidding Tom Maddox, Solutions Architect Who am I? Gardener (Capacity Planning) Motorcyclist (Agility) Mobile App Writer Problem Solver Technology Geek Solutions Architect

More information

Getting Started with Amazon QuickSight

Getting Started with Amazon QuickSight Getting Started with QuickSight Matt McClean Solutions Architect, AWS April 14, 2016 2016, Web Services, Inc. or its Affiliates. All rights reserved. What to Expect from the Session Overview of Big Data

More information

Smart Cities Brief. Amazon Web Services. July 2016

Smart Cities Brief. Amazon Web Services. July 2016 Smart Cities Brief Amazon Web Services July 2016 AWS and Local Government Best Practices Dream Big Partners in Innovation How AWS Views Smart Cities Smart City A city that leverages technology and data

More information

Introducing Amazon Kinesis Managed Service for Real-time Big Data Processing

Introducing Amazon Kinesis Managed Service for Real-time Big Data Processing Introducing Amazon Kinesis Managed Service for Real-time Big Data Processing Ryan Waite, GM Data Services Adi Krishnan, Product Manager November 13, 2013 2013 Amazon.com, Inc. and its affiliates. All rights

More information

Real-time Streaming Applications on AWS Patterns and Use Cases

Real-time Streaming Applications on AWS Patterns and Use Cases Real-time Streaming Applications on AWS Patterns and Use Cases Christian Deger, Chief Architect, AutoScout24 Dr. Steffen Hausmann, Solutions Architect, AWS May 18, 2017 2016, Amazon Web Services, Inc.

More information

How In-Memory Computing can Maximize the Performance of Modern Payments

How In-Memory Computing can Maximize the Performance of Modern Payments How In-Memory Computing can Maximize the Performance of Modern Payments 2018 The mobile payments market is expected to grow to over a trillion dollars by 2019 How can in-memory computing maximize the performance

More information

BIG Data Analytics AWS Training

BIG Data Analytics AWS Training BIG Data Analytics AWS Training About Instructor Name: Kesav Total IT work experience: 20+ Years BIG Data Solutions Architect: 5+ Years DW & BI Solution Architect: 15+ Years Big Data Implementations Experience:

More information

AI/ML for Financial Services

AI/ML for Financial Services AI/ML for Financial Services Madhusudan Shekar Linkedin.com/in/madhusudanshekar 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AI and ML enable innovation at scale New features

More information

Einführung in Amazon Machine Learning

Einführung in Amazon Machine Learning Einführung in Amazon Machine Learning Oliver Arafat Technical Evangelist Amazon Web Services arafato@amazon.de @OliverArafat Agenda Machine learning and the data ecosystem Smart applications by example

More information

Building a Data Lake on AWS

Building a Data Lake on AWS Partner Network EBOOK: Building a Data Lake on AWS Contents What is a Data Lake? Benefits of a Data Lake on AWS Building a Data Lake On AWS Featured Data Lake Partner Bronze Drum Consulting Case Study:Rosetta

More information

How to Build Your Data Ecosystem with Tableau on AWS

How to Build Your Data Ecosystem with Tableau on AWS How to Build Your Data Ecosystem with Tableau on AWS Moving Your BI to the Cloud Your BI is working, and it s probably working well. But, continuing to empower your colleagues with data is going to be

More information

20775: Performing Data Engineering on Microsoft HD Insight

20775: Performing Data Engineering on Microsoft HD Insight Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

SKF Digitalization. Building a Digital Platform for an Enterprise Company. Jens Greiner Global Manager IoT Development

SKF Digitalization. Building a Digital Platform for an Enterprise Company. Jens Greiner Global Manager IoT Development SKF Digitalization Building a Digital Platform for an Enterprise Company Jens Greiner Global Manager IoT Development 2017-05-18 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. SKF

More information

Wandel der IT im Kontext Digitalisierung

Wandel der IT im Kontext Digitalisierung Wandel der IT im Kontext Digitalisierung Carlo Pacifico Sr. Manager Enterprise Germany cpacific@amazon.de Amazon is a technology company that happens to sell books online Dr. Werner Vogels, CTO Amazon.com

More information

When Big Data Meets Fast Data

When Big Data Meets Fast Data 15 November 2016 When Big Data Meets Fast Data - London 2016 Ted Orme VP Technology EMEA When Big Data Meets Fast Data The Evolution of Hadoop Enterprise ready From batch to real-time Now add Cloud It

More information

Architecting for Real- Time Big Data Analytics. Robert Winters

Architecting for Real- Time Big Data Analytics. Robert Winters Architecting for Real- Time Big Data Analytics Robert Winters About Me 2 ROBERT WINTERS Head of Business Intelligence, TravelBird Ten years experience in analytics, five years with Vertica and big data

More information

More information for FREE VS ENTERPRISE LICENCE :

More information for FREE VS ENTERPRISE LICENCE : Source : http://www.splunk.com/ Splunk Enterprise is a fully featured, powerful platform for collecting, searching, monitoring and analyzing machine data. Splunk Enterprise is easy to deploy and use. It

More information

20775A: Performing Data Engineering on Microsoft HD Insight

20775A: Performing Data Engineering on Microsoft HD Insight 20775A: Performing Data Engineering on Microsoft HD Insight Duration: 5 days; Instructor-led Implement Spark Streaming Using the DStream API. Develop Big Data Real-Time Processing Solutions with Apache

More information

20775A: Performing Data Engineering on Microsoft HD Insight

20775A: Performing Data Engineering on Microsoft HD Insight 20775A: Performing Data Engineering on Microsoft HD Insight Course Details Course Code: Duration: Notes: 20775A 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Building data-driven applications with SAP Data Hub and Amazon Web Services

Building data-driven applications with SAP Data Hub and Amazon Web Services Building data-driven applications with SAP Data Hub and Amazon Web Services Dr. Lars Dannecker, Steffen Geissinger September 18 th, 2018 Cross-department disconnect Cross-department disconnect Cross-department

More information

SAP Modernization with AWS

SAP Modernization with AWS SAP Modernization with AWS Level 200 Webinar David Payne, Head of Enterprise Applications and Database Segment, AWS APAC Harpreet Singh, Principal SAP Solution Architect, AWS APAC Kamal Shah, CIO & CISO,

More information

Cognitive Data Warehouse and Analytics

Cognitive Data Warehouse and Analytics Cognitive Data Warehouse and Analytics Hemant R. Suri, Sr. Offering Manager, Hybrid Data Warehouses, IBM (twitter @hemantrsuri or feel free to reach out to me via LinkedIN!) Over 90% of the world s data

More information

TechArch Day Digital Decoupling. Oscar Renalias. Accenture

TechArch Day Digital Decoupling. Oscar Renalias. Accenture TechArch Day 2018 Digital Decoupling Oscar Renalias Accenture !"##$ oscar.renalias@acenture.com @oscarrenalias https://www.linkedin.com/in/oscarrenalias/ https://github.com/accenture THE ERA OF THE BIG

More information

Guide to Modernize Your Enterprise Data Warehouse How to Migrate to a Hadoop-based Big Data Lake

Guide to Modernize Your Enterprise Data Warehouse How to Migrate to a Hadoop-based Big Data Lake White Paper Guide to Modernize Your Enterprise Data Warehouse How to Migrate to a Hadoop-based Big Data Lake Motivation for Modernization It is now a well-documented realization among Fortune 500 companies

More information

CI in the cloud. Case Talend & Nordcloud Ilja Summala, Group CTO, Nordcloud Anubhav Sharma, Senior Software Architect, Talend Deutschland

CI in the cloud. Case Talend & Nordcloud Ilja Summala, Group CTO, Nordcloud Anubhav Sharma, Senior Software Architect, Talend Deutschland BERLIN 2015 CI in the cloud Case Talend & Nordcloud Ilja Summala, Group CTO, Nordcloud Anubhav Sharma, Senior Software Architect, Talend Deutschland About Nordcloud Nordcloud is leading European AWS consultancy

More information

20775 Performing Data Engineering on Microsoft HD Insight

20775 Performing Data Engineering on Microsoft HD Insight Duración del curso: 5 Días Acerca de este curso The main purpose of the course is to give students the ability plan and implement big data workflows on HD. Perfil de público The primary audience for this

More information

Spotlight Sessions. Nik Rouda. Director of Product Marketing Cloudera, Inc. All rights reserved. 1

Spotlight Sessions. Nik Rouda. Director of Product Marketing Cloudera, Inc. All rights reserved. 1 Spotlight Sessions Nik Rouda Director of Product Marketing Cloudera @nrouda Cloudera, Inc. All rights reserved. 1 Spotlight: Protecting Your Data Nik Rouda Product Marketing Cloudera, Inc. All rights reserved.

More information

WIN BIG WITH GOOGLE CLOUD

WIN BIG WITH GOOGLE CLOUD WIN BIG WITH GOOGLE CLOUD HYPER PERSONALIZATION AND AD TARGETING Predict ad to be displayed based on users past behavior, demographics and seasonality Lost revenue due to customers abandoning shopping

More information

Cask Data Application Platform (CDAP) Extensions

Cask Data Application Platform (CDAP) Extensions Cask Data Application Platform (CDAP) Extensions CDAP Extensions provide additional capabilities and user interfaces to CDAP. They are use-case specific applications designed to solve common and critical

More information

Redefine Big Data: EMC Data Lake in Action. Andrea Prosperi Systems Engineer

Redefine Big Data: EMC Data Lake in Action. Andrea Prosperi Systems Engineer Redefine Big Data: EMC Data Lake in Action Andrea Prosperi Systems Engineer 1 Agenda Data Analytics Today Big data Hadoop & HDFS Different types of analytics Data lakes EMC Solutions for Data Lakes 2 The

More information

BARCELONA. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved

BARCELONA. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved BARCELONA 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Optimizing Cost and Efficiency on AWS Inigo Soto Practice Manager, AWS Professional Services 2015, Amazon Web Services,

More information

Who is Databricks? Today, hundreds of organizations around the world use Databricks to build and power their production Spark applications.

Who is Databricks? Today, hundreds of organizations around the world use Databricks to build and power their production Spark applications. Databricks Primer Who is Databricks? Databricks was founded by the team who created Apache Spark, the most active open source project in the big data ecosystem today, and is the largest contributor to

More information

Course Content. The main purpose of the course is to give students the ability plan and implement big data workflows on HDInsight.

Course Content. The main purpose of the course is to give students the ability plan and implement big data workflows on HDInsight. Course Content Course Description: The main purpose of the course is to give students the ability plan and implement big data workflows on HDInsight. At Course Completion: After competing this course,

More information

Analyze Big Data Faster and Store it Cheaper. Dominick Huang CenterPoint Energy Russell Hull - SAP

Analyze Big Data Faster and Store it Cheaper. Dominick Huang CenterPoint Energy Russell Hull - SAP Analyze Big Data Faster and Store it Cheaper Dominick Huang CenterPoint Energy Russell Hull - SAP ABOUT CENTERPOINT ENERGY, INC. Publicly traded on New York Stock Exchange Headquartered in Houston, Texas

More information

Microsoft Azure Essentials

Microsoft Azure Essentials Microsoft Azure Essentials Azure Essentials Track Summary Data Analytics Explore the Data Analytics services in Azure to help you analyze both structured and unstructured data. Azure can help with large,

More information

Simplifying the Process of Uploading and Extracting Data from Apache Hadoop

Simplifying the Process of Uploading and Extracting Data from Apache Hadoop Simplifying the Process of Uploading and Extracting Data from Apache Hadoop Rohit Bakhshi, Solution Architect, Hortonworks Jim Walker, Director Product Marketing, Talend Page 1 About Us Rohit Bakhshi Solution

More information

Cost Management in the AWS Cloud. March 2018

Cost Management in the AWS Cloud. March 2018 Cost Management in the AWS Cloud March 2018 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational purposes only. It represents AWS

More information

ENABLING GLOBAL HADOOP WITH DELL EMC S ELASTIC CLOUD STORAGE (ECS)

ENABLING GLOBAL HADOOP WITH DELL EMC S ELASTIC CLOUD STORAGE (ECS) ENABLING GLOBAL HADOOP WITH DELL EMC S ELASTIC CLOUD STORAGE (ECS) Hadoop Storage-as-a-Service ABSTRACT This White Paper illustrates how Dell EMC Elastic Cloud Storage (ECS ) can be used to streamline

More information

Datametica DAMA. The Modern Data Platform Enterprise Data Hub Implementations. What is happening with Hadoop Why is workload moving to Cloud

Datametica DAMA. The Modern Data Platform Enterprise Data Hub Implementations. What is happening with Hadoop Why is workload moving to Cloud DAMA Datametica The Modern Data Platform Enterprise Data Hub Implementations What is happening with Hadoop Why is workload moving to Cloud 1 The Modern Data Platform The Enterprise Data Hub What do we

More information

Data: Foundation Of Digital Transformation

Data: Foundation Of Digital Transformation Data: Foundation Of Digital Transformation DellEMC Forum Madrid - 2017 Dave Kloc - Head of Data Sales EMEA Franck Sidi - Head of Pivotal Data Engineering EMEA Copyright 2017 Pivotal Software, Inc. All

More information

Databricks Cloud. A Primer

Databricks Cloud. A Primer Databricks Cloud A Primer Who is Databricks? Databricks was founded by the team behind Apache Spark, the most active open source project in the big data ecosystem today. Our mission at Databricks is to

More information

efiscal Networks Case Study

efiscal Networks Case Study efiscal Networks Case Study THE PROBLEM: efiscal Networks was running on a single server on-prem datacenter that limited company growth and prolonged the launch of new products. The decision was made to

More information

Unified Monitoring for On-Premises and Cloud with Oracle Management Cloud

Unified Monitoring for On-Premises and Cloud with Oracle Management Cloud Unified Monitoring for On-Premises and Cloud with Oracle Management Cloud Ana McCollum Product Management Oracle Management Cloud Henrique Arias DBA Spirit Airlines Rakesh JS Managing Architect Rubicon

More information

Unified Monitoring for On-Premises and Cloud with Oracle Management Cloud

Unified Monitoring for On-Premises and Cloud with Oracle Management Cloud Unified Monitoring for On-Premises and Cloud with Oracle Management Cloud Ana McCollum Product Management Oracle Management Cloud Henrique Arias DBA Spirit Airlines Rakesh JS Managing Architect Rubicon

More information

AWS Smart Cities and

AWS Smart Cities and AWS Smart Cities and the Internet of Things Amazon Web Services May 2017 Zane Moi () Consumer Business Seller Business IT Infrastructure Business https://aws.amazon.com Today we support millions of organizations

More information

Real-time Analytics Powered by GPU-Accelerated Databases. Chris Prendergast and Woody Christy GTC, May 8, 2017

Real-time Analytics Powered by GPU-Accelerated Databases. Chris Prendergast and Woody Christy GTC, May 8, 2017 Real-time Analytics Powered by GPU-Accelerated Databases Chris Prendergast and Woody Christy GTC, May 8, 2017 Kinetica Background United States Army Intelligence seeks a means to assess terrorist and other

More information

Financial Data Enterprise Platform

Financial Data Enterprise Platform BCC Group 2017 DEC Rel. 3.2 EN Financial Data Enterprise Platform 1 Financial Data Enterprise Platform ONE [Cloud] Financial Data [Cloud] Platform 2 Financial Data Enterprise Platform ONE " You never change

More information

WHITE PAPER. CalAmp Connect An Enterprise M2M Application Enablement Platform

WHITE PAPER. CalAmp Connect An Enterprise M2M Application Enablement Platform WHITE PAPER CalAmp Connect An Enterprise M2M Application Enablement Platform EXECUTIVE SUMMARY In today s complex, competitive landscape, it is no longer enough to have a basic M2M solution in place. Increased

More information

Common Customer Use Cases in FSI

Common Customer Use Cases in FSI Common Customer Use Cases in FSI 1 Marketing Optimization 2014 2014 MapR MapR Technologies Technologies 2 Fortune 100 Financial Services Company 104M CARD MEMBERS 3 Financial Services: Recommendation Engine

More information

5th Annual. Cloudera, Inc. All rights reserved.

5th Annual. Cloudera, Inc. All rights reserved. 5th Annual 1 The Essentials of Apache Hadoop The What, Why and How to Meet Agency Objectives Sarah Sproehnle, Vice President, Customer Success 2 Introduction 3 What is Apache Hadoop? Hadoop is a software

More information

Managing explosion of data. Cloudera, Inc. All rights reserved.

Managing explosion of data. Cloudera, Inc. All rights reserved. Managing explosion of data 1 Customer experience expectations are converging on the brand, not channel Consistent across all channels and lines of business Contextualized to present location and circumstances

More information

The Autonomous Data Platform A Data Driven Retail Customer Experience

The Autonomous Data Platform A Data Driven Retail Customer Experience The Autonomous Data Platform A Data Driven Retail Customer Experience The best Retail customer experiences are Data Driven Personal, in context, available anywhere and any time High value, repeat customers

More information

BIG DATA PROCESSING A DEEP DIVE IN HADOOP/SPARK & AZURE SQL DW

BIG DATA PROCESSING A DEEP DIVE IN HADOOP/SPARK & AZURE SQL DW BIG DATA PROCESSING A DEEP DIVE IN HADOOP/SPARK & AZURE SQL DW TOPICS COVERED 1 2 Fundamentals of Big Data Platforms Major Big Data Tools Scaling Up vs. Out SCALE UP (SMP) SCALE OUT (MPP) + (n) Upgrade

More information

Amazon Web Services. Steve Spano, Brig Gen (Ret), USAF GM, Defense and National Security AWS, Worldwide Public Sector

Amazon Web Services. Steve Spano, Brig Gen (Ret), USAF GM, Defense and National Security AWS, Worldwide Public Sector Amazon Web Services Steve Spano, Brig Gen (Ret), USAF GM, Defense and National Security AWS, Worldwide Public Sector Overview Historical Perspective of IT Transformational Value of Cloud Why organizations

More information

Top 5 Challenges for Hadoop MapReduce in the Enterprise. Whitepaper - May /9/11

Top 5 Challenges for Hadoop MapReduce in the Enterprise. Whitepaper - May /9/11 Top 5 Challenges for Hadoop MapReduce in the Enterprise Whitepaper - May 2011 http://platform.com/mapreduce 2 5/9/11 Table of Contents Introduction... 2 Current Market Conditions and Drivers. Customer

More information

MIGRATING MEDIA WORKFLOWS TO THE CLOUD. Scott Malkie, Systems Engineer

MIGRATING MEDIA WORKFLOWS TO THE CLOUD. Scott Malkie, Systems Engineer MIGRATING MEDIA WORKFLOWS TO THE CLOUD Scott Malkie, Systems Engineer AGENDA: CLOUD MIGRATION: 30 MINUTES! 1. WHY? (5 min) a. Reduce IT & Video Workflow Complexity b. Increase Agility and Flexibility c.

More information

NICE Customer Engagement Analytics - Architecture Whitepaper

NICE Customer Engagement Analytics - Architecture Whitepaper NICE Customer Engagement Analytics - Architecture Whitepaper Table of Contents Introduction...3 Data Principles...4 Customer Identities and Event Timelines...................... 4 Data Discovery...5 Data

More information

WANdisco Fusion for Business Intelligence & Data Science

WANdisco Fusion for Business Intelligence & Data Science WANdisco Fusion for Business Intelligence & Data Science Why is Active Data Migration critical to success? Contents Executive summary 1 Benefits 2 Use cases 4 Talking to IT 5 About WANdisco 6 By 2020,

More information

The Sumo Logic Solution: Application Management

The Sumo Logic Solution: Application Management The Sumo Logic Solution: Application Management Introduction The most critical and demanding responsibility facing CIOs, IT operations managers and system administrators on a daily basis is to keep their

More information

AMSTERDAM. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved

AMSTERDAM. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved AMSTERDAM 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Manage Your Cost, Govern Your Usage on AWS Guy Kfir, Account Manager BeNeLux, AWS kfir@amazon.lu Leon Backbier, ICT Manager,

More information

E-guide Hadoop Big Data Platforms Buyer s Guide part 1

E-guide Hadoop Big Data Platforms Buyer s Guide part 1 Hadoop Big Data Platforms Buyer s Guide part 1 Your expert guide to Hadoop big data platforms for managing big data David Loshin, Knowledge Integrity Inc. Companies of all sizes can use Hadoop, as vendors

More information

C3 Products + Services Overview

C3 Products + Services Overview C3 Products + Services Overview AI CLOUD PREDICTIVE ANALYTICS IoT Table of Contents C3 is a Computer Software Company 1 C3 PaaS Products 3 C3 SaaS Products 5 C3 Product Trials 6 C3 Center of Excellence

More information

Big Data Management Best Practices for Data Lakes Philip Russom, Ph.D.

Big Data Management Best Practices for Data Lakes Philip Russom, Ph.D. Big Data Management Best Practices for Data Lakes Philip Russom, Ph.D. Senior Research Director, TDWI October 27, 2016 Sponsor 2 Speakers Philip Russom Senior Research Director for Data Management, TDWI

More information

AWS Rapid Pace of Innovation

AWS Rapid Pace of Innovation AWS Rapid Pace of Innovation +454 Since inception AWS has: Released 1111 new services and features Introduced more than 40 major new services Announced 45 price reductions +159 AWS Storage Gateway +280

More information

Enterprise-Scale MATLAB Applications

Enterprise-Scale MATLAB Applications Enterprise-Scale Applications Sylvain Lacaze Rory Adams 2018 The MathWorks, Inc. 1 Enterprise Integration Access and Explore Data Preprocess Data Develop Predictive Models Integrate Analytics with Systems

More information

Architecture Optimization for the new Data Warehouse. Cloudera, Inc. All rights reserved.

Architecture Optimization for the new Data Warehouse. Cloudera, Inc. All rights reserved. Architecture Optimization for the new Data Warehouse Guido Oswald - @GuidoOswald 1 Use Cases This image cannot currently be displayed. This image cannot currently be displayed. This image cannot currently

More information

Integrating MATLAB Analytics into Enterprise Applications The MathWorks, Inc. 1

Integrating MATLAB Analytics into Enterprise Applications The MathWorks, Inc. 1 Integrating Analytics into Enterprise Applications 2015 The MathWorks, Inc. 1 Agenda Example Problem Access and Preprocess Data Develop a Predictive Model Integrate Analytics with Production Systems Build

More information

EXECUTIVE BRIEF. Successful Data Warehouse Approaches to Meet Today s Analytics Demands. In this Paper

EXECUTIVE BRIEF. Successful Data Warehouse Approaches to Meet Today s Analytics Demands. In this Paper Sponsored by Successful Data Warehouse Approaches to Meet Today s Analytics Demands EXECUTIVE BRIEF In this Paper Organizations are adopting increasingly sophisticated analytics methods Analytics usage

More information

Oracle's Cloud Strategie für den Geschäftserfolg Alles Neue von der OOW

Oracle's Cloud Strategie für den Geschäftserfolg Alles Neue von der OOW Oracle's Cloud Strategie für den Geschäftserfolg Alles Neue von der OOW Matthias Weiss Direktor Mittelstand Technologie Oracle Deutschland B.V. & Co. KG Agenda 1 2 3 4 5 6 Digital Transformation and CEO

More information

10 Ways Oracle Cloud Is Better Than AWS

10 Ways Oracle Cloud Is Better Than AWS 10 Ways Oracle Cloud Is Better Than AWS BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning

More information

GET MORE VALUE OUT OF BIG DATA

GET MORE VALUE OUT OF BIG DATA GET MORE VALUE OUT OF BIG DATA Enterprise data is increasing at an alarming rate. An International Data Corporation (IDC) study estimates that data is growing at 50 percent a year and will grow by 50 times

More information

Migration To the Cloud Using AWS

Migration To the Cloud Using AWS Migration To the Cloud Using AWS Why Cloud Advantages of Cloud Resilience Security Rapid Elasticity Cap-ex Free Rapid Infrastructure Increased Flexibility Managed Infrastructure Sevices 5% of organizations

More information

Building a HIPAA Compliant Data Lake on AWS

Building a HIPAA Compliant Data Lake on AWS Building a HIPAA Compliant Data Lake on AWS with 2 About Since 1998, has developed healthcare consumer engagement solutions to address some of the industry s greatest challenges from adherence, to prevention,

More information

Splunking Big Data. Vadim Roussin Regional Sales Director, Emerging Markets March 22, 2012

Splunking Big Data. Vadim Roussin Regional Sales Director, Emerging Markets March 22, 2012 Splunking Big Data Vadim Roussin Regional Sales Director, Emerging Markets March 22, 2012 AGENDA WHO WE ARE SPLUNK IN RUSSIA WHY DOES ANYONE (EVERYONE!) NEED A SPLUNK? WHAT ARE WE? OUTSIDE THE BOX (GARTNER

More information

Going into the future with Splunk

Going into the future with Splunk Going into the future with Splunk Dimitris Vergos > Partner SE Manager Friday, 02 November 2018 v1.0 Forward-Looking Statements During the course of this presentation, we may make forward-looking statements

More information

Uncovering the Hidden Truth In Log Data with vcenter Insight

Uncovering the Hidden Truth In Log Data with vcenter Insight Uncovering the Hidden Truth In Log Data with vcenter Insight April 2014 VMware vforum Istanbul 2014 Serdar Arıcan 2014 VMware Inc. All rights reserved. VMware Strategy To help customers realize the promise

More information

Integrating Enterprise Applications with MongoDB to Deliver Performance and Scalability

Integrating Enterprise Applications with MongoDB to Deliver Performance and Scalability Integrating Enterprise Applications with MongoDB to Deliver Performance and Scalability Pure Play Open Source Consulting Company 0 License Cost #1 Option Pure Play Open Source Services Company 5+ Business

More information

Hortonworks Connected Data Platforms

Hortonworks Connected Data Platforms Hortonworks Connected Data Platforms MASTER THE VALUE OF DATA EVERY BUSINESS IS A DATA BUSINESS EMBRACE AN OPEN APPROACH 2 Hortonworks Inc. 2011 2016. All Rights Reserved Data Drives the Connected Car

More information

Datametica. The Modern Data Platform Enterprise Data Hub Implementations. Why is workload moving to Cloud

Datametica. The Modern Data Platform Enterprise Data Hub Implementations. Why is workload moving to Cloud Datametica The Modern Data Platform Enterprise Data Hub Implementations Why is workload moving to Cloud 1 What we used do Enterprise Data Hub & Analytics What is Changing Why it is Changing Enterprise

More information

Continuous Controls Inheritance

Continuous Controls Inheritance Continuous Controls Inheritance for Faster Cloud Compliance EC2 Auto Scaling S3 KMS VPC IAM EBS RDS Workload cloud Xacta 360 now automatically inherits pre-vetted controls from the services you use! Tax

More information

Advancing your Big Data Strategy

Advancing your Big Data Strategy Welcome # T C 1 8 Advancing your Big Data Strategy Robbin Cottiss Strategic Customer Consultant Tableau Vindy Krishnan Senior Product Manager Tableau You Know Me And Me DATA TABLEAU AND Audience Poll How

More information

Ampliando MATLAB Analytics con Kafka y Servicios en la Nube

Ampliando MATLAB Analytics con Kafka y Servicios en la Nube Ampliando Analytics con Kafka y Servicios en la Nube Lucas García 2015 The MathWorks, Inc. 1 Agenda 1 Access and Explore Data 2 Preprocess Data 3 Develop Predictive Models 4 Integrate with Production 5

More information

Take a Tour of Native Hybrid Cloud & Neutrino. Modern, cloud native platforms

Take a Tour of Native Hybrid Cloud & Neutrino. Modern, cloud native platforms Take a Tour of Native Hybrid Cloud & Neutrino Modern, cloud native platforms Native Hybrid Cloud Introducing Native Hybrid Cloud TURNKEY developer platform DESIGNED, SUPPORTED AND SUSTAINED AS ONE Developer

More information

Business is being transformed by three trends

Business is being transformed by three trends Business is being transformed by three trends Big Cloud Intelligence Stay ahead of the curve with Cortana Intelligence Suite Business apps People Custom apps Apps Sensors and devices Cortana Intelligence

More information

Modernize Transactional Applications with a Scalable, High-Performance Database

Modernize Transactional Applications with a Scalable, High-Performance Database SAP Brief SAP Technology SAP Adaptive Server Enterprise Modernize Transactional Applications with a Scalable, High-Performance Database SAP Brief Gain value with faster, more efficient transactional systems

More information

Active Analytics Overview

Active Analytics Overview Active Analytics Overview The Fourth Industrial Revolution is predicated on data. Success depends on recognizing data as the most valuable corporate asset. From smart cities to autonomous vehicles, logistics

More information

Scaling up MATLAB Analytics with Kafka and Cloud Services

Scaling up MATLAB Analytics with Kafka and Cloud Services Scaling up Analytics with Kafka and Cloud Services Olof Larsson 2015 The MathWorks, Inc. 1 Agenda 1 Access and Explore Data 2 Preprocess Data 3 Develop Predictive Models Integrate with Production 5 Visualize

More information

Real-time Streaming Insight & Time Series Data Analytic For Smart Retail

Real-time Streaming Insight & Time Series Data Analytic For Smart Retail Real-time Streaming Insight & Time Series Data Analytic For Smart Retail Sudip Majumder Senior Director Development Industry IoT & Big Data 10/5/2016 Economic Characteristics of Data Data is the New Oil..then

More information

Koen van den Biggelaar Senior Manager, Solutions Architecture Amazon Web Services

Koen van den Biggelaar Senior Manager, Solutions Architecture Amazon Web Services Koen van den Biggelaar Senior Manager, Solutions Architecture Amazon Web Services koen@amazon.com Amazon Cloud? Leadership Principles Innovation Approach Intro Amazon AWS Innovation Innovation Applied

More information

When the Status Quo Means Getting Left Behind. Accelerating Analytics Platform Adoption through Evolving Technology

When the Status Quo Means Getting Left Behind. Accelerating Analytics Platform Adoption through Evolving Technology When the Status Quo Means Getting Left Behind Accelerating Analytics Platform Adoption through Evolving Technology Evolve & Meet the Future of Business Big data is changing the way businesses operate at

More information

Nikon Precision's Journey to the PLM Cloud. Ryan Porzel

Nikon Precision's Journey to the PLM Cloud. Ryan Porzel Nikon Precision's Journey to the PLM Cloud Ryan Porzel Agenda What is Windchill360.com Cloud? Nikon s move to PLM Cloud Questions? 2 What is Windchill360.com Cloud? Hosted on the Amazon Web Services (AWS)

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 엔터프라이즈, 빅데이터및 애널리틱솔루션활용을위한 적용기술소개 성호현부장 2015 The MathWorks, Inc. 2 Agenda 1 Access and Explore Data 2 Preprocess Data 3 Develop Predictive Models 4 Integrate with Production

More information

DATASHEET. Tarams Business Intelligence. Services Data sheet

DATASHEET. Tarams Business Intelligence. Services Data sheet DATASHEET Tarams Business Intelligence Services Data sheet About Business Intelligence The proliferation of data in today s connected world offers tremendous possibilities for analysis and decision making

More information

Scaling up MATLAB Analytics with Kafka and Cloud Services

Scaling up MATLAB Analytics with Kafka and Cloud Services Scaling up Analytics with Kafka and Cloud Services Christoph Stockhammer 2015 The MathWorks, Inc. 1 Agenda 1 Access and Explore Data 2 Preprocess Data 3 Develop Predictive Models Integrate with Production

More information

Kx Data Refinery. An Introduction

Kx Data Refinery. An Introduction Kx Data Refinery An Introduction What is Kx Data Refinery? Kx Data Refinery is a real-time, interactive time series and analytics system that aims to provide a shrink wrapped solution to data and analytics.

More information

Amsterdam. (technical) Updates & demonstration. Robert Voermans Governance architect

Amsterdam. (technical) Updates & demonstration. Robert Voermans Governance architect (technical) Updates & demonstration Robert Voermans Governance architect Amsterdam Please note IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice

More information