Ein Rennen der anderen Art: Big-Data Plattformen im Automobilbau

Size: px
Start display at page:

Download "Ein Rennen der anderen Art: Big-Data Plattformen im Automobilbau"

Transcription

1 Ein Rennen der anderen Art: Big-Data Plattformen im Automobilbau Thomas Pagel, Principal Technologist, Data & Analytics Franziska Weng, Consultant, Data & Analytics 2017 Avanade Inc. All Rights Reserved.

2 Agenda The Avanade Story How we do Analytics in the Cloud Proof of Concept Overview Analytical Processing Results/Lessons Learned Q&A

3 The Avanade Story Innovative digital services, business solutions and design-led experiences delivered through the power of people and the Microsoft ecosystem

4 Avanade by the numbers (FY16) Created in 2000 as a joint venture between Accenture and Microsoft today majority owned by Accenture. We help clients to maximize their performance and realize their vision. Our innovative solutions help to improve productivity and efficiency. $ 2,4 B Sales 20 % Average annual growth Client partners worldwide typically mid to large-scale enterprises and government agencies 43 % Of Global 500 companies as clients 4

5 Avanade group in Germany, Austria and Switzerland 19 locations with more than 850 employees The Avanade group includes: Avanade Infoman KCS.net Our professionals combine technology, business and industry expertise to build and deploy solutions to realize results for clients and their customers. Bratislava 1 Nearshore development center in Slovakia

6 Avanade Global Delivery Network: fast efficient development and delivery of quality services More than professionals in over 80 locations

7 Recognized for great work as well as being a great place to work Avanade s innovative spirit, leadership and commitment to high ethical standards have resulted in a broad range of industry honors. Industry Recognition Top Employer Recognition Microsoft Auszeichnungen: Alliance SI Partner of the Year 2016, 2015, 2014, 2013, sowie 8 weitere seit 2001 Microsoft Customer Relationship Management (CRM) Partner of the Year 2015 Dynamics Inner Circle and President s Club 2015, 2014, 2013, 2012, sowie 6 weitere seit 2005 Country Partner of the Year 2015 Italien, 2013 Deutschland und Spanien Microsoft Dynamics Reseller of the Year 2015 Mobility Partner of the Year 2014, 2013, 2012 Microsoft Service Partner of the Year 2013

8 How we do Analytics in the Cloud

9 Avanade s Modern Analytics Platform (AMAP) - an industrialized Managed Service for IoT/Analytic solutions Any Data from any Device or any Resource in any Format can be loaded in a secure way in Azure IoT/ Analytic Platform AMAP Built on Microsoft Azure PaaS components Azure Data Platform + Azure ML + Power BI Combines the shared service labor cost model with consumption based compute cost Provides connectivity for Industurial Devices and Business Integration Use Client s Microsoft EA for Azure 9

10 Avanade Modern Analytics Platform Capabilities 10

11 Avanade s sophisticated Analytic platform gets you there Challenges Outcomes Traditional Approach The AMAP Approach Combine real-time and advanced analytics with existing systems & data Accelerate Insights Pressure is on to realize results Innovate & Accelerate Insights Advanced Analytics Bridge the skills gap on advanced techniques Provide the business the data and analytics platform capabilities Manage, upkeep and running of existing systems Augment your Talent Pool Ready on Demand Answer Business Questions...Meanwhile customer needs are changing Self-Service & Discovery Data Management Big Data/IOT/ Streams Develop & Design Experiences Deliver Digital Platforms Support & Enablement Hire / Train People Buy Hardware & Software Set Strategy, Goals & Questions Innovate & Accelerate Insights AMAP Managed Services Set Strategy, Goals & Questions Avanade Modern Analytic Platform (AMAP) is a Platform and a Managed Service Powering new solutions and offerings including Digital Marketing Analytics, IOT Analytics, Self-Service Analytics and custom client solutions Staying out front Quick and Comprehensive 11

12 Proof of Concept Overview

13 The PoC: Azure vs. AWS vs. Teradata The customer asked three service providers to demonstrate the capabilities of their teams and their preferred platform: Avanade/Accenture on Microsoft Azure Another Consulting Company on Amazon Web Services Teradata with their ASTER Appliance

14 Introduction: Camshaft drive chain failure prediction 1/2 Situation: A German car manufacturer has frequent issues with a specific engine in regards to failure and extension of the camshaft drive chain leading to engine failures and frequent workshop visits.

15 Introduction: Camshaft drive chain failure prediction 2/2 Goals: A German car manufacturer wants to identify potential camshaft issues early to do predictive maintenance Analytics goals: Predict extension of camshaft drive chain lengthening and potential causes (oil, soot deposition, climate condition, too long service intervals) Business goals: Predict warranty cases save costs/increase customer satisfaction through early replacement of the camshaft drive chain without impact on the drivers experience IT goals: Evaluate Azure Big Data Analytics stack as well as TCO

16 Analytical Questions Is it possible to select features relevant for analytics processes? predict camshaft drive chain failures? identify reasons for camshaft drive chain failures? make a statement about sensorreadings regarding starting chain lengthening?

17 Analytical Processing

18 Big Data Analytics Case Approach using the Azure platform capabilities to realize analytics results fast Analytical briefing workshop Set - up Data sourcing & data management Insight generation and validation Presentation of Analytical Solution Discuss analysis pilot goals & scope Identify relevant data sources Basic data understanding Define analysis pilot goals & scope Setup infrastructure Data transfer Data understanding Design data structure Data quality checks Build data structure OUTCOMES Calculate models and build reports Evaluate models with test data Presentation of proof of concept results and potential next steps Recommendations for the client Use case briefing done Analytical data transferred Analytical data structure ready Analytical results ready Final use case presentation and next steps roadmap

19 Proof of Concept: Sequence File to Text Conversion Apache Spark is an open-source cluster-computing framework based on Hadoop technology. You can use it interactively from the Scala, Python and R shells. import org.apache.hadoop.io._ val fn = "<filename>" val sf2 = sc.sequencefile[mapwritable,byteswritable](fn) val xml = sf2.map(row => org.apache.hadoop.io.text.decode(row._2.getbytes())) Additionally we needed to use Hive to clear line breaks from the text formatted XML data. INSERT INTO TABLE <target table> SELECT REGEXP_EXTRACT( REGEXP_REPLACE( REGEXP_REPLACE( <column name of the sequence file results table>, '\\n', ''), '\\r', ''), '^.*(<\\?xml.*)', 1) FROM <sequence file result table>;

20 Proof of Concept: XML Text to Table Structure Conversion A good way to convert terabytes of complex XML to table structured data is applying XSLT using an HDInsight Apache Spark Cluster and Scala. import com.elsevier.spark_xml_utils.xslt.xsltprocessor val xmlkeypair = sc.sequencefile[string, String]( <filename of xml data>") val stylesheet = sc.textfile( <filename of xsl>").collect.head val srctitles = xmlkeypair.mappartitions(recsiter => { }) val proc = XSLTProcessor.getInstance(stylesheet) recsiter.map(rec => proc.transform(rec._2))

21 Proof of Concept: Clean and Preprocess Data Azure SQL Data Warehouse is the technology you should choose, because: + You can stop it over night and pay less. + It is about as fast as an HDInsight Apache Spark Cluster. + You can use PolyBase to comfortably load data from Azure Blob Storage. Cleaning and Preprocessing Tasks performed in Azure DWH: 1. Load data using PolyBase 2. Unique car filtering 3. Relevant sample selection 4. Target variable generation Load from external Table (PolyBase) Relevant sample selection Generate target variable 21

22 Visual Data Inspection using Power BI Visual data inspection can be done using Power BI. Additionally, the Quick Insights feature can show you some interesting information. (

23 23 Analytical Processing using Azure Machine Learning Root-Cause Analysis Feature data and Label from same point in time Which features behavior is related to the camshaft chain failure? Predictive Analysis Feature data from one week before Label data Which features past behavior is related to the camshaft chain failure? Format adjustment Modeling Target variable labeling Column selection Sample splitting Pearson Correlation Analysis

24 Sample Results (most important Features/Starting Values)

25 Sample Results (Prediction/Root Cause Analysis)

26 Results/Lessons Learned

27 Guess who won?

28 It took the client 2 years to archive the same quality of results Avanade/Accenture provided after 2 weeks analytical work

29 Business Goals - Conclusion Success Dimension The Azure platforms unique proposition Cost Flexibility Security Productivity You pay only for resources that you are actually using - cost are transparent on a monthly bill. The architecture is highly flexible The client is able to decide on the toolset and also can bring in own technologies as Virtual Machines (IaaS) if necessary. Azure is using market leading and regulator compliant security to keep client s data safe in motion, in rest and on use. Additional security layers and management & monitoring can be provided by Accenture. Instead of spending time and money on installation, operations and management, the platform is handled as a service. The client s resources can spend their time on their core competency to drive value.

30 Key Lessons Learned Around the project: Data provisioning can take quite a while Complex XML -> Complex transformation/analytics Include the business know-how Test your assumptions/hypothesis No blind believe in will never happen Around Azure: Azure enables agile projects fail fast, learn fast Find the appropriate tools to tackle the challenge Azure often offers more than one tool for the same purpose Even on Hadoop Azure is very up-to-date and competitive Azure ML is powerful and easy but lacks some control (better with R) Azure SQL DWH was already great as a preview PaaS offerings are often a great alternative vs. IaaS based solutions Big Data is not necessarily equals Hadoop

31 Questions? Just visit us at our booth!

32 Thank you

Azure Data Analytics & Machine Learning Seminar. Daire Cunningham: BI Practice Area Manager

Azure Data Analytics & Machine Learning Seminar. Daire Cunningham: BI Practice Area Manager Azure Data Analytics & Machine Learning Seminar Daire Cunningham: BI Practice Area Manager AGENDA 09:00 AM 09:30 AM Registration & Refreshments 09.30AM 10:00 AM 10:00 AM 10:30 AM Welcome & Keynote, Ger

More information

Using Avanade s Managed Services to Unlock Business Value. An IDC InfoBrief Sponsored by Avanade March 2017

Using Avanade s Managed Services to Unlock Business Value. An IDC InfoBrief Sponsored by Avanade March 2017 Using Avanade s Managed Services to Unlock Business Value March 2017 Business Value Highlights IDC s research and analysis demonstrates that Avanade s managed services deliver an average payback period

More information

KnowledgeENTERPRISE FAST TRACK YOUR ACCESS TO BIG DATA WITH ANGOSS ADVANCED ANALYTICS ON SPARK. Advanced Analytics on Spark BROCHURE

KnowledgeENTERPRISE FAST TRACK YOUR ACCESS TO BIG DATA WITH ANGOSS ADVANCED ANALYTICS ON SPARK. Advanced Analytics on Spark BROCHURE FAST TRACK YOUR ACCESS TO BIG DATA WITH ANGOSS ADVANCED ANALYTICS ON SPARK Are you drowning in Big Data? Do you lack access to your data? Are you having a hard time managing Big Data processing requirements?

More information

AZURE HDINSIGHT. Azure Machine Learning Track Marek Chmel

AZURE HDINSIGHT. Azure Machine Learning Track Marek Chmel AZURE HDINSIGHT Azure Machine Learning Track Marek Chmel SESSION AGENDA Understanding different scenarios of Hadoop Building an end to end pipeline using HDInsight Using in-memory techniques to analyze

More information

Microsoft Big Data. Solution Brief

Microsoft Big Data. Solution Brief Microsoft Big Data Solution Brief Contents Introduction... 2 The Microsoft Big Data Solution... 3 Key Benefits... 3 Immersive Insight, Wherever You Are... 3 Connecting with the World s Data... 3 Any Data,

More information

Advanced Analytics in Azure

Advanced Analytics in Azure Explore What s Possible. Advanced Analytics in Azure Amie Mason, Practice Lead Data Science & Analytics amiem@attunix.com The Attunix Difference business technology Attunix delivers results at the intersection

More information

INTRODUCTION TO R FOR DATA SCIENCE WITH R FOR DATA SCIENCE DATA SCIENCE ESSENTIALS INTRODUCTION TO PYTHON FOR DATA SCIENCE. Azure Machine Learning

INTRODUCTION TO R FOR DATA SCIENCE WITH R FOR DATA SCIENCE DATA SCIENCE ESSENTIALS INTRODUCTION TO PYTHON FOR DATA SCIENCE. Azure Machine Learning Data Science Track WITH EXCEL INTRODUCTION TO R FOR DATA SCIENCE PROGRAMMING WITH R FOR DATA SCIENCE APPLIED MACHINE LEARNING SCENARIOS HDInsight Certificate of DATA SCIENCE ORIENTATION QUERYING DATA WITH

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

BIG DATA & ADVANCED ANALYTICS ROADSHOW

BIG DATA & ADVANCED ANALYTICS ROADSHOW BIG DATA & ADVANCED ANALYTICS ROADSHOW 2 Copyright 2014, Neudesic. All rights reserved. CO-SPONSORS UPCOMING ROADSHOW STOPS Los Angeles: Wednesday, February 10 th Orange County: Thursday, February 11 th

More information

BRINGING AI TO ALL DEVELOPERS

BRINGING AI TO ALL DEVELOPERS BRINGING AI TO ALL DEVELOPERS Exploring Deep Learning AI Services in the Cloud Tara E. Walker Principal Software Engineer Microsoft @taraw #ITDEVCONNECTIONS ITDEVCONNECTIONS.COM AGENDA WHAT DOES AI MEAN

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

Azure Data Factory Hybrid data integration, at global scale. Erika Harris Senior Program Manager AzureCAT

Azure Data Factory Hybrid data integration, at global scale. Erika Harris Senior Program Manager AzureCAT Azure Data Factory Hybrid data integration, at global scale Erika Harris Senior Program Manager AzureCAT Data Cloud AI There are barriers to getting value from data Data silos Incongruent data types Complexity

More information

Microsoft Dynamics 365 and Columbus

Microsoft Dynamics 365 and Columbus Microsoft Dynamics 365 and Columbus Start your cloud journey Cloud services Cloud transformation series If you agree that modern cloud computing is a great way to benefit from innovative, powerful technology

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

MTWO No.1 Vertical Cloud YTWO No.1 SCM Platform Artificial Intelligence. Investor Roadshow 2018

MTWO No.1 Vertical Cloud YTWO No.1 SCM Platform Artificial Intelligence. Investor Roadshow 2018 MTWO No.1 Vertical Cloud YTWO No.1 SCM Platform Artificial Intelligence Investor Roadshow 2018 TWO LEADERS 2 RIB has agreed with Microsoft on a strategic alliance to build the world's first vertical cloud

More information

Aurélie Pericchi SSP APS Laurent Marzouk Data Insight & Cloud Architect

Aurélie Pericchi SSP APS Laurent Marzouk Data Insight & Cloud Architect Aurélie Pericchi SSP APS Laurent Marzouk Data Insight & Cloud Architect 2005 Concert de Coldplay 2014 Concert de Coldplay 90% of the world s data has been created over the last two years alone 1 1. Source

More information

Big Data Introduction

Big Data Introduction Big Data Introduction Who we are Experts At Your Service Over 50 specialists in IT infrastructure Certified, experienced, passionate Based In Switzerland 100% self-financed Swiss company Over CHF8 mio.

More information

Embracing the Hybrid Cloud using Power BI in CSP. Name Role Group

Embracing the Hybrid Cloud using Power BI in CSP. Name Role Group Embracing the Hybrid Cloud using Power BI in CSP Name Role Group Agenda Cloud Vision & Opportunity What is Power BI Power BI in CSP Power BI in Action Summary Microsoft vision for new era Unified platform

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Hybrid IT Vom Edge bis ins Rechenzentrum

Hybrid IT Vom Edge bis ins Rechenzentrum Hybrid IT Vom Edge bis ins Rechenzentrum 15:30 16:15 Interactive Talk Daniele Kohler, Lead Pursuit IoT & Digital Workplace Karl Heinz Mayer, Pointnext Country Business Manager Enterprises must grasp the

More information

SAP on Azure & Migration

SAP on Azure & Migration SAP on Azure & Migration Overview SAP Architecture Overview SAP on Azure TechData SAP Services Capabilities SAP on Azure rules of engagement SAP on Azure example Q&A 2 SAP Architecture Overview Quick Introduction

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

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

Azure ML Data Camp. Ivan Kosyakov MTC Architect, Ph.D. Microsoft Technology Centers Microsoft Technology Centers. Experience the Microsoft Cloud

Azure ML Data Camp. Ivan Kosyakov MTC Architect, Ph.D. Microsoft Technology Centers Microsoft Technology Centers. Experience the Microsoft Cloud Microsoft Technology Centers Microsoft Technology Centers Experience the Microsoft Cloud Experience the Microsoft Cloud ML Data Camp Ivan Kosyakov MTC Architect, Ph.D. Top Manager IT Analyst Big Data Strategic

More information

In search of the Holy Grail?

In search of the Holy Grail? In search of the Holy Grail? Our Clients Journey to the Data Lake André De Locht Sr Business Consultant Data Lake, Information Integration and Governance $ andre.de.locht@be.ibm.com ( +32 476 870 354 Data

More information

Luxoft and the Internet of Things

Luxoft and the Internet of Things Luxoft and the Internet of Things Bridging the gap between Imagination and Technology www.luxoft.com/iot Luxoft and The Internet of Things Table of Contents Introduction... 3 Driving Business Value with

More information

Building the Foundation for Digital Insurance. An IDC InfoBrief, sponsored by CSC and EMC September 2016

Building the Foundation for Digital Insurance. An IDC InfoBrief, sponsored by CSC and EMC September 2016 Building the Foundation for Digital Insurance September 2016 Executive Summary Insurers are moving away from the traditional wait-and-see approach to embrace new technologies as never before. They realize

More information

BOC Group Customer Success Story

BOC Group Customer Success Story BOC Group Customer Success Story customer profile BOC Group is an international leader in software and consultancy providing products and services for Business Process Management (BPM), Enterprise Architecture

More information

Investor Presentation. Fourth Quarter 2015

Investor Presentation. Fourth Quarter 2015 Investor Presentation Fourth Quarter 2015 Note to Investors Certain non-gaap financial information regarding operating results may be discussed during this presentation. Reconciliations of the differences

More information

Fast Start Business Analytics with Power BI

Fast Start Business Analytics with Power BI Fast Start Business Analytics with Power BI Accelerate Through classroom, challenging, training and a quick proof of concept, learn about Power BI and how it can help speed up your decision making and

More information

Analytics Platform System

Analytics Platform System Analytics Platform System Big data. Small data. All data. Audie Wright, DW & Big Data Specialist Audie.Wright@Microsoft.com Ofc 425-538-0044, Cell 303-324-2860 Sean Mikha, DW & Big Data Architect semikha@microsoft.com

More information

Re-thinking and empowering operations in a digital world! Sebastian Seutter Director Strategy and Business Development

Re-thinking and empowering operations in a digital world! Sebastian Seutter Director Strategy and Business Development Re-thinking and empowering operations in a digital world! Sebastian Seutter Director Strategy and Business Development Industry 4.0 Day Client, partner and Microsoft event (19 th February 2018) Table of

More information

Making Your Cloud Strategy Work in Presenters: Daniel Cohen-Dumani and Dale Tuttle

Making Your Cloud Strategy Work in Presenters: Daniel Cohen-Dumani and Dale Tuttle Making Your Cloud Strategy Work in 2016 Presenters: Daniel Cohen-Dumani and Dale Tuttle About Daniel Daniel Cohen-Dumani @dcohendumani Founder and CEO 14+ years of SharePoint Expertise SharePoint Visionary

More information

Industrial Connected Product Solutions

Industrial Connected Product Solutions Industrial Connected Product Solutions 1. 2. 3. 4. IoT is impacting businesses worldwide Driving digital transformation across enterprises and industry. Worldwide spending forecast for IoT in 2018. 1 Projected

More information

A complete service guide for MICROSOFT DATA ANALYTICS ENABLEMENT

A complete service guide for MICROSOFT DATA ANALYTICS ENABLEMENT A complete service guide for MICROSOFT DATA ANALYTICS ENABLEMENT Contact us today. 206-747-6930 A brief introduction exclusively for Microsoft employees and customers: In early FY12, Decisive Data decided

More information

Cloud Transformation Microsoft Azure and Accenture: Your best choice to modernize SAP

Cloud Transformation Microsoft Azure and Accenture: Your best choice to modernize SAP Cloud Transformation Microsoft Azure and Accenture: Your best choice to modernize SAP SAP on Microsoft Cloud and Accenture offer the most efficient and effective way to migrate your ERP system to the cloud.

More information

DLT AnalyticsStack. Powering big data, analytics and data science strategies for government agencies

DLT AnalyticsStack. Powering big data, analytics and data science strategies for government agencies DLT Stack Powering big data, analytics and data science strategies for government agencies Now, government agencies can have a scalable reference model for success with Big Data, Advanced and Data Science

More information

Azure PaaS and SaaS Microsoft s two approaches to building IoT solutions

Azure PaaS and SaaS Microsoft s two approaches to building IoT solutions Azure PaaS and SaaS Microsoft s two approaches to building IoT solutions Hector Garcia Tellado Program Manager Lead, Azure IoT Suite #IoTinActionMS #IoTinActionMS Agenda Customers using IoT today Microsoft

More information

Building Your Big Data Team

Building Your Big Data Team Building Your Big Data Team With all the buzz around Big Data, many companies have decided they need some sort of Big Data initiative in place to stay current with modern data management requirements.

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

Journey to modern ERP

Journey to modern ERP Journey to modern ERP Emile Egger transforms operations with Avanade and the new Microsoft Dynamics AX Avanade and Microsoft were able to bring us from a paper-based company to a digital company. Raphael

More information

FUJITSU Transformational Application Managed Services

FUJITSU Transformational Application Managed Services FUJITSU Application Managed Services Going digital What does it mean for Applications Management? Most public and private sector enterprises recognize that going digital will drive business agility and

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

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

Investor Presentation. Second Quarter 2016

Investor Presentation. Second Quarter 2016 Investor Presentation Second Quarter 2016 Note to Investors Certain non-gaap financial information regarding operating results may be discussed during this presentation. Reconciliations of the differences

More information

TRANS FORMING INTO AN AI BUSINESS

TRANS FORMING INTO AN AI BUSINESS TRANS FORMING INTO AN AI BUSINESS Click for Video 2 TRANSFORMING YOUR BUSINESS AND INTRODUCING AI AT SCALE REQUIRES MULTIDIMENSIONAL STRATEGIC THINKING TO EFFICIENTLY REALIZE RELEVANT USE CASES, LEVERAGE

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

Jason Virtue Business Intelligence Technical Professional

Jason Virtue Business Intelligence Technical Professional Jason Virtue Business Intelligence Technical Professional jvirtue@microsoft.com Agenda Microsoft Azure Data Services Azure Cloud Services Azure Machine Learning Azure Service Bus Azure Stream Analytics

More information

Move to Modern: Your Plan, Your Cloud, Your Transformation Session 111 Tyler Bowman

Move to Modern: Your Plan, Your Cloud, Your Transformation Session 111 Tyler Bowman Move to Modern: Your Plan, Your Cloud, Your Transformation Session 111 Tyler Bowman Introduction Session Agenda Intro into the presentation State of Cloud Planning for Success Cost Considerations Architecting

More information

EXAMPLE SOLUTIONS Hadoop in Azure HBase as a columnar NoSQL transactional database running on Azure Blobs Storm as a streaming service for near real time processing Hadoop 2.4 support for 100x query gains

More information

Data Analytics. Nagesh Madhwal Client Solutions Director, Consulting, Southeast Asia, Dell EMC

Data Analytics. Nagesh Madhwal Client Solutions Director, Consulting, Southeast Asia, Dell EMC Data Analytics Nagesh Madhwal Client Solutions Director, Consulting, Southeast Asia, Dell EMC Last 15 years IT-centric Traditional Analytics Traditional Applications Rigid Infrastructure Internet Next

More information

Digital Transformation 2.0

Digital Transformation 2.0 Digital Transformation 2.0 Job roles and skills that every IT Services company must know We have been hearing for quite some time, that the world is going through digital transformation & HR department

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

Nouvelle Génération de l infrastructure Data Warehouse et d Analyses

Nouvelle Génération de l infrastructure Data Warehouse et d Analyses Nouvelle Génération de l infrastructure Data Warehouse et d Analyses November 2011 André Münger andre.muenger@emc.com +41 79 708 85 99 1 Agenda BIG Data Challenges Greenplum Overview Use Cases Summary

More information

FOR SAP ON MICROSOFT AZURE

FOR SAP ON MICROSOFT AZURE WHY NOW IS THE FOR SAP ON MICROSOFT AZURE Only in the last couple of years have businesses started to think about migrating core business systems to the public cloud. Most have, until recently, restricted

More information

The Importance of good data management and Power BI

The Importance of good data management and Power BI The Importance of good data management and Power BI The BI Iceberg Visualising Data is only the tip of the iceberg Data Preparation and provisioning is a complex process Streamlining this process is key

More information

Microsoft FastTrack For Azure Service Level Description

Microsoft FastTrack For Azure Service Level Description ef Microsoft FastTrack For Azure Service Level Description 2017 Microsoft. All rights reserved. 1 Contents Microsoft FastTrack for Azure... 3 Eligible Solutions... 3 FastTrack for Azure Process Overview...

More information

Building IoT Solutions in Azure

Building IoT Solutions in Azure Building IoT Solutions in Azure About me Mayank Srivastava Evangelist, Organizer, SPR Consulting CNUG The Chicago.Net User Group @MayankSri www.linkedin.com/in/mayanksri/ MayankSri@Live.com Agenda IoT

More information

IBM Analytics Unleash the power of data with Apache Spark

IBM Analytics Unleash the power of data with Apache Spark IBM Analytics Unleash the power of data with Apache Spark Agility, speed and simplicity define the analytics operating system of the future 1 2 3 4 Use Spark to create value from data-driven insights Lower

More information

WHITEPAPER. Transforming into a Cloud Business: A Pragmatic Works Story

WHITEPAPER. Transforming into a Cloud Business: A Pragmatic Works Story WHITEPAPER Transforming into a Cloud Business: A Pragmatic Works Story Overview There are numerous benefits associated with moving an organization s IT to the cloud. But the decision to move to the cloud

More information

Industrial IoT Solution Architecture Design From Connectivity to Data

Industrial IoT Solution Architecture Design From Connectivity to Data Industrial IoT Solution Architecture Design From Connectivity to Data Cheryl Hsu Program Manager Strategic Engagement & Industrial IoT, Microsoft IoT Enables a Digital Feedback Loop The benefits are profound

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

ACCELERATE TO THE NEW ACCELERATING BIG DATA ADOPTION

ACCELERATE TO THE NEW ACCELERATING BIG DATA ADOPTION ACCELERATE TO THE NEW ACCELERATING BIG DATA ADOPTION IT S NO LONGER ENOUGH TO BUILD IT AND RELY ON THE PROMISE OF BIG DATA FOR USERS TO COME YOU MUST ACTIVELY DRIVE USER ADOPTION TO SUCCEED WITH YOUR BIG

More information

Confidential

Confidential June 2017 1. Is your EDW becoming too expensive to maintain because of hardware upgrades and increasing data volumes? 2. Is your EDW becoming a monolith, which is too slow to adapt to business s analytical

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

Alexander Klein. ETL meets Azure

Alexander Klein. ETL meets Azure Alexander Klein ETL meets Azure Thanks to our sponsors: Who am I? Independent BI Consultant > 15 years experience of SQL Server Focus on Microsoft BI Stack & AI & Azure a.klein@consulting-bi.de @SQL_Alex

More information

HDInsight - Hadoop for the Commoner Matt Stenzel Data Platform Technical Specialist

HDInsight - Hadoop for the Commoner Matt Stenzel Data Platform Technical Specialist HDInsight - Hadoop for the Commoner 10-1-2016 Matt Stenzel Data Platform Technical Specialist SQL Saturday #557 Thank you Sponsors! Please visit the sponsors and enter their end-of-day raffles. Event After

More information

Power BI for Data Science Integration and exploration capabilities

Power BI for Data Science Integration and exploration capabilities Power BI for Data Science Integration and exploration capabilities J AV I E R G U I L L E N C H A R LOT T E B I G R O U P C H A R LOT T E, N C - 2018 Power BI for Data Science exploration Different mindset

More information

Maturing IoT solutions with Microsoft Azure

Maturing IoT solutions with Microsoft Azure Maturing IoT solutions with Microsoft Azure Event Sponsors Expo Sponsors Expo Light Sponsors steefjan.wiggers@codit.eu +31 653 12 29 57 @SteefJan nl.linkedin.com/in/steefjan The next race Agenda How IoT

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

TechValidate Survey Report. Converged Data Platform Key to Competitive Advantage

TechValidate Survey Report. Converged Data Platform Key to Competitive Advantage TechValidate Survey Report Converged Data Platform Key to Competitive Advantage TechValidate Survey Report Converged Data Platform Key to Competitive Advantage Executive Summary What Industry Analysts

More information

Teradata IntelliSphere

Teradata IntelliSphere Teradata IntelliSphere Name, Title of Presenter 1 2 Agenda More analytic tools & techniques The Reality Wide range of deployment choices Proliferation of departmentalized analytics Dynamically changing

More information

Make Business Intelligence Work on Big Data

Make Business Intelligence Work on Big Data Make Business Intelligence Work on Big Data Speed. Scale. Simplicity. Put the Power of Big Data in the Hands of Business Users Connect your BI tools directly to your big data without compromising scale,

More information

Evolution or Revolution: Top Ten Development Trends

Evolution or Revolution: Top Ten Development Trends Evolution or Revolution: Top Ten Development Trends Jim Lundy CEO and Lead Analyst IT Development Trends: Building a Fighter Jet Agenda What are the Top Ten Trends in Development? What are the Best Practices

More information

Readying your Oracle solutions to lead in the digital economy HOW HCL HELPS YOU MODERNIZE ORACLE APPLICATIONS WITH CLOUD MIGRATION

Readying your Oracle solutions to lead in the digital economy HOW HCL HELPS YOU MODERNIZE ORACLE APPLICATIONS WITH CLOUD MIGRATION Readying your Oracle solutions to lead in the digital economy HOW HCL HELPS YOU MODERNIZE ORACLE APPLICATIONS WITH CLOUD MIGRATION The opportunity The digital enterprise is here and with it come huge opportunities

More information

IBM Db2 Warehouse. Hybrid data warehousing using a software-defined environment in a private cloud. The evolution of the data warehouse

IBM Db2 Warehouse. Hybrid data warehousing using a software-defined environment in a private cloud. The evolution of the data warehouse IBM Db2 Warehouse Hybrid data warehousing using a software-defined environment in a private cloud The evolution of the data warehouse Managing a large-scale, on-premises data warehouse environments to

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

ATEA YOUR STRATEGIC PARTNER FOR MICROSOFT EDUCATON

ATEA YOUR STRATEGIC PARTNER FOR MICROSOFT EDUCATON ATEA YOUR STRATEGIC PARTNER FOR MICROSOFT EDUCATON INTRODUCING 2 TP2B 1st 2nd 18% The Place to Be largest in Nordic region largest in Europe share of market +6,900 +4,000 +7,500 27,500 full-time employees

More information

IDC, February 1, 2016 IDC Health Insights Report on Healthcare Provider IT Budgets

IDC, February 1, 2016 IDC Health Insights Report on Healthcare Provider IT Budgets Data Arijit Roy Healthcare providers are taking advantage of more cloud implementations and leveraging mobile and analytics capabilities in the cloud. At the same time, the top drivers for budget growth

More information

Unlocking the Value of the Adobe + Microsoft Partnership All Rights Reserved.

Unlocking the Value of the Adobe + Microsoft Partnership All Rights Reserved. Unlocking the Value of the Adobe + Microsoft Partnership Changing the world through DIGITAL EXPERIENCES 2 EXPERIENCES MATTER MORE THAN EVER MAKE EXPERIENCE YOUR BUSINESS BACK OFFICE WAVE owner CTO / CIO

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

Technology Management Concepts Phone: Fax:

Technology Management Concepts Phone: Fax: Brought to you by and Microsoft We believe that the success made possible by the cloud should be accessible to every business and every organization small and large, old and new. But not all businesses

More information

Designing Business Intelligence Solutions with Microsoft SQL Server 2014

Designing Business Intelligence Solutions with Microsoft SQL Server 2014 Designing Business Intelligence Solutions with Microsoft SQL Server 2014 20467D; 5 Days, Instructor-led Course Description This five-day instructor-led course teaches students how to implement self-service

More information

Modern Analytics Architecture

Modern Analytics Architecture Modern Analytics Architecture So what is a. Modern analytics architecture? Machine Learning AI Open source Big Data DevOps Cloud In-memory IoT Trends supporting Next-Generation analytics Source: Next-Generation

More information

ERP Consolidation & Migration 5 Critical Steps to SAP S/4HANA Central Finance

ERP Consolidation & Migration 5 Critical Steps to SAP S/4HANA Central Finance Trusted Advisor. Preferred Partner. ERP Consolidation & Migration 5 Critical Steps to SAP S/4HANA Central Finance KPIT.com/hana/solutions/home saphana@kpit.com US +1 888 985 0301 UK +44 118 934 5656 India

More information

How Data Science is Changing the Way Companies Do Business Colin White

How Data Science is Changing the Way Companies Do Business Colin White How Data Science is Changing the Way Companies Do Business Colin White BI Research July 17, 2014 Sponsor 2 Speakers Colin White President, BI Research Bill Franks Chief Analytics Officer, Teradata 3 How

More information

Empowering business through enterprise solutions... Building Relationship Globally.

Empowering business through enterprise solutions... Building Relationship Globally. Empowering business through enterprise solutions... Building Relationship Globally. joint venture between two trusted names The hallmark of 'LVD LVD Company nv (http://www.lvdgroup.com/) is a leading manufacturer

More information

Operating in a Big Data World. Thinking about ROI

Operating in a Big Data World. Thinking about ROI Operating in a Big Data World Thinking about ROI Vincent Dell Anno Managing Director December 9, 2013 Big Data in the Enterprise What are we seeing? Approach Just Go For It Characteristics - Big data technologies

More information

What has changed about how we run analytics at UBS?

What has changed about how we run analytics at UBS? Group MI & Analytics Public When Big Data meets reality What has changed about how we run analytics at UBS? Pius Brändli Business Solution Head November 7, 2013 Table of contents About UBS 2 The WMSB analytical

More information

IIoT Data Access with the PI System

IIoT Data Access with the PI System IIoT Data Access with the PI System Daniel McGovern November 8 th, 2017 PI System Data is Used Across the Enterprise to Achieve Business Impacting Change Safety & Security Energy Utilization Process Efficiency

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

SAP Value Assurance for SAP S/4HANA Quick-Start Your Digital Transformation with SAP S/4HANA

SAP Value Assurance for SAP S/4HANA Quick-Start Your Digital Transformation with SAP S/4HANA SAP Value Assurance for SAP S/4HANA Quick-Start Your Digital Transformation with SAP S/4HANA Level 1 Customer Presentation March 2017 Digitalization is happening now Achieve your business goals with a

More information

Azure ML Studio. Overview for Data Engineers & Data Scientists

Azure ML Studio. Overview for Data Engineers & Data Scientists Azure ML Studio Overview for Data Engineers & Data Scientists Rakesh Soni, Big Data Practice Director Randi R. Ludwig, Ph.D., Data Scientist Daniel Lai, Data Scientist Intersys Company Summary Overview

More information

Big Data Trends Arató Bence. BI Consulting

Big Data Trends Arató Bence. BI Consulting Big Data Trends 2017 Arató Bence BI Consulting arato@biconsulting.hu 1 Introduction Arató Bence Consulting and Advisory BI/DW/Big Data strategy, Architecture planning, vendor and tool selection. Also provides

More information

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and Shawn Rogers Orchestrating and Managing Enterprise Analytics DISCLAIMER During the course of this presentation, TIBCO or its representatives may make forward-looking statements regarding future events,

More information

Designing Business Intelligence Solutions with Microsoft SQL Server 2014 Course Code: 20467D

Designing Business Intelligence Solutions with Microsoft SQL Server 2014 Course Code: 20467D Designing Business Intelligence Solutions with Microsoft SQL Server 2014 Course Code: 20467D Duration: 5 Days Overview About this course This five-day instructor-led course teaches students how to implement

More information

H2O Powers Intelligent Product Recommendation Engine at Transamerica. Case Study

H2O Powers Intelligent Product Recommendation Engine at Transamerica. Case Study H2O Powers Intelligent Product Recommendation Engine at Transamerica Case Study Summary For a financial services firm like Transamerica, sales and marketing efforts can be complex and challenging, with

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

What s New. Bernd Wiswedel KNIME KNIME AG. All Rights Reserved.

What s New. Bernd Wiswedel KNIME KNIME AG. All Rights Reserved. What s New Bernd Wiswedel KNIME 2018 KNIME AG. All Rights Reserved. What this session is about Presenting (and demo ing) enhancements added in the last year By the team Questions? See us at the booth.

More information

IAC Publishing Labs Turns Data into a Business Accelerator with Snowflake on AWS

IAC Publishing Labs Turns Data into a Business Accelerator with Snowflake on AWS IAC Publishing Labs Turns Data into a Business Accelerator with Snowflake on AWS CUSTOMER PARTNER IAC Publishing Labs Snowflake Headquartered in Oakland, California s vibrant tech district, IAC Publishing

More information