Multi-Vendor Active Inventory UI Extensibility. Dave Adams ( ) Software Development Specialist 11-Dec-2017

Size: px
Start display at page:

Download "Multi-Vendor Active Inventory UI Extensibility. Dave Adams ( ) Software Development Specialist 11-Dec-2017"

Transcription

1 Multi-Vendor Active Inventory UI Extensibility Dave Adams ( dave.adams@amdocs.com ) Software Development Specialist 11-Dec-2017

2 Agenda Introduction Sparky in ONAP Sparky Functional Overview Extensibility Use Case Entity Summary View UI Design API Contract + Call Flows Network Routing Model Entity Analytics View UI Design API Contract + Call Flows Network Routing Model Conclusion 2

3 Sparky in ONAP OOM MSO SDC Model Loader AAI Resources Titan + HBase AAI Traversal Entity Create, Update, and Delete Events HA Proxy AAI DMaaP <sync> Sparky (AAI-UI) New Microservice <API Router> /ui-request/* <search> <sync> <API Router> Synapse Search Data Service Elastic Search Entity Event Consumption and Policy Execution to Update Search Indexes 3

4 Sparky in ONAP OOM MSO SDC Model Loader AAI Resources Titan + HBase AAI Traversal Entity Create, Update, and Delete Events HA Proxy AAI DMaaP <sync> Sparky (AAI-UI) New Microservice <API Router> /ui-request/* <search> <sync> <API Router> Synapse Search Data Service Elastic Search Entity Event Consumption and Policy Execution to Update Search Indexes 4

5 Sparky: Expandable Navigation 5

6 Sparky: Suggestive Search 6

7 Sparky: View and Inspect View 7

8 Sparky: VNF Aggregation View + Filters 8

9 Sparky: Decomposed Data Synchronization ElasticSearch entity-search-index Spring Bean Registration: <bean id="viewinspectsynccontroller" class="o.o.a.s.v.sync.viewinspectsynccontroller" init-method="registercontroller">... <property name="synccontrollerregistry" ref="synccontrollerregistry" /> </bean> 9

10 Sparky: Modular Search Processor Camel Routing: <route xmlns=" trace="true"> <from uri="restlet:/search/querysearch?restletmethods=get,post" /> <to uri="bean:unifiedsearchprocessor?method=search"/> </route> Spring Bean Registration: <bean id="viewinspectsearchprovider" class="o.o.a.s.v.search.viewinspectsearchprovider"> <constructor-arg ref="oxmmodelloader"/> <property name="additionalsearchsuggestiontext"> <value>schema</value> </property> </bean> <bean id="registerviewinspectsearchprovider" class="o.s.b.f.c.methodinvokingfactorybean"> <property name="targetobject" ref="searchproviderregistry" /> <property name="targetmethod"> <value>addsearchproviders</value> </property> <property name="arguments"> <list value-type="o.o.a.s.search.api.searchprovider"> <ref bean="viewinspectsearchprovider" /> </list> </property> </bean> 10

11 Extensibility Use Case Now we ll consider a scenario where a team wants to add a new view to the front end and use an API for a service that doesn t exist (yet). We ll create a really simple view that queries for available entities and allows the user to select an arbitrary set for enumeration visualization on a chart. Let s call this the Entity Summary view. We ll also assume there is a second team, perhaps in the same company or a different company, wanting to build an Entity Analytics view. They want to create a new service but also leverage the service from the first team. Let s explore how this could be accomplished using the Sparky FE + BE from ONAP. 11

12 Entity Summary View UI Design Entity Summary 12

13 Entity Summary View UI Design Entity Summary 13

14 Entity Summary View API Contract Request: GET entityaggregator/entities?sort=asc Response: { "types" : [ "customer", "generic-vnf", "image", "service-instance", "tenant" ] } Request POST entityaggregator/aggregation&sort=asc { "types" : [ "customer", "generic-vnf", "image", "service-instance", "tenant" ] } Response: { "typeenumerations: { "customer" : 14, "generic-vnf" : 50, "image" : 22, "service-instance" : 11, "tenant" : 3 } } 14

15 Entity Summary View Network Routing Model Sparky-FE AAI-Traversal /routerservice/entityaggregator/entities /routerservice/entityaggregator/aggregation Sparky-BE HA Proxy /ui-request/entityaggregator/entities /ui-request/entityaggregator/aggregation /aai/v12/search/nodes-query?search-node-type=pnf Synapse <route xmlns=" trace="true"> <from uri="servlet:///ui-request/entityaggregator" /> <to uri="bean:sslrestclient?method=handlerequest(" ","9500",*)" /> </route> Entity Summary Service aaischema 15

16 Entity Summary View Messaging Call Flows 16

17 Entity Summary View Messaging Call Flows 17

18 Entity Analytics View UI Design Most Used: Least Used Non-Zero: Entity Analytics 18

19 Entity Analytics View UI Design Entity Summary Entity Analytics 19

20 Entity Analytics View API Contract Request: GET entityanalytics/mostused?num=5&sort=asc Response: { "mostusedresult: { "cloud-region" : 77, "generic-vnf" : 50, "image" : 22, "ipv4-address-list" : 17, "vserver" : 12 } } Request GET entityanalytics/leastused?num=5&nonzero=true&sort=asc Response: { "leastusedresult: { "pnf" : 5, "flavor" : 3, "site-pair-set" : 2, "vlan" : 1, "logical-link" : 1 } } 20

21 Entity Analytics View Network Routing Model AAI-Traversal Sparky-FE Sparky-BE /routerservice/entityanalytics/mostused /routerservice/entityanalytics/leastused aaischema HA Proxy Entity Summary Service /ui-request/entityanalytics/mostused /ui-request/entityanalytics/leastused Synapse <route xmlns=" trace="true"> <from uri="servlet:///ui-request/entityanalytics" /> <to uri="bean:sslrestclient?method=handlerequest(" ","9500",*)" /> </route> Entity Analytics Service entityaggregator/entities entityaggregator/aggregation 21

22 Entity Analytics View Messaging Call Flows 22

23 Entity Analytics View Messaging Call Flows 23

24 Conclusion What have we done? added an Entity Summary View and an Entity Analytics View which will be published within FE build artifact added two new services within the ONAP ecosystem to perform some entity analysis, and, created a new set of camel routes for our extension services to be routed by Synapse We have now seen a high level demonstration for how Sparky can be used by multiple teams to build new content without having to change the underlying front end or back end code. And that s pretty cool. 24

25 Thank-you 25

26 Backup Slides 26

27 How did Sparky get its name? 27

28 Technology Stack 28

29 Sparky Front End Capabilities - View-Inspect - VNF Aggregation - Suggestive Search - Filters - View Extensibility 29

30 Sparky Back End Capabilities - Decomposed data synchronization - Modular Search Processor - Suggestive + Aggregation Search APIs - API Router 30

31 Sparky Build Process Extension Extension Extension imports components imports components imports components reducer reducer reducerscss scss scss extensibility/index.js extensibilityreducer.js customviews.css + Sparky ONAP FE FE BE => gulp build => aai.war published to Nexus mvn build + WAR dependency dockerized Sparky BE + Sparky FE WAR in docker image 31

32 Layered Docker Extensibility Exposing New Service Capabilities with Docker Image Layers Ubuntu16.04 ONAP Sparky BE Sparky Extension Service Advantages Separation of Concerns Functional Layering at a ms Level Example of Composability with Docker Disadvantages Indirect Dependency Management Class level extensibility tricky without proper library componentization 32

Integrating External Controllers with ONAP. AT&T Labs

Integrating External Controllers with ONAP. AT&T Labs Integrating External Controllers with ONAP AT&T Labs Motivation Some service providers may want to leverage an alternative to an ONAP out of the box Controller (e.g., SDNC, GenNFC) for some subset of Resources.

More information

PHYSICAL NETWORK FUNCTION (PNF)

PHYSICAL NETWORK FUNCTION (PNF) ACTORS PNF DHCP SEGW CA/RA Initial EM vdhcp vaaa SDN-C DCA&E A&AI SO APP-C DESCRIPTION PHYSICAL NETWORK FUNCTION (PNF) The Distributed Unit (DU) or Network Hardware device that provides service to an end-user.

More information

Service Orchestration- Need for Users

Service Orchestration- Need for Users Service Orchestration- Need for Users Background Issues: Increased Capex and Opex Huge manual efforts involved single-purpose/ domain specific / homogenous networks Possible way out: SDN NFV Automation

More information

How to Setup a Development Environment for ONAP

How to Setup a Development Environment for ONAP How to Setup a Development Environment for ONAP Victor Morales December 12 th, 2017 Agenda Problem statement Proposed solution ONAP on Vagrant - Installation process Key features - Why Vagrant? - Synced

More information

Microservice Bus Tutorial. Huabing Zhao, PTL of MSB Project, ZTE

Microservice Bus Tutorial. Huabing Zhao, PTL of MSB Project, ZTE Microservice Bus Tutorial Huabing Zhao, PTL of Project, ZTE Agenda Overview Service Registration Service Discovery Deploy Example & Demo 2 Overview-Introduction (Microservices Bus) provide a comprehensive,

More information

Illustrative Sequence Diagrams for Residential Broadband vcpe Use Case

Illustrative Sequence Diagrams for Residential Broadband vcpe Use Case Illustrative Sequence Diagrams for Residential Broadband vcpe Use Case vcpe Use Case Used in These Examples Overview of Services Defined for vcpe Use Case Key Resource PNF VNF Network Allotted Resource

More information

Microservice Powered Orchestration

Microservice Powered Orchestration Microservice Powered Orchestration Huabing Zhao ZTE, System Engineer, Network Management &, OPEN-O Common PTL zhao.huabing@zte.com.cn Zhaoxing Meng ZTE, NFV&SDN Architect, Network Management &, OPEN-O

More information

Abinash Vishwakarma(Netcracker)

Abinash Vishwakarma(Netcracker) Analysis of ETSI Vs ONAP API (Focus: ETSI Os-Ma-nfvo reference point) Abinash Vishwakarma(Netcracker) 12, 2017 Agenda Objective and Scope of Analysis NSD Management NSD Lifecycle Management NS Performance

More information

ONAP PNF Plug and Play

ONAP PNF Plug and Play ONAP Plug and Play ONAP and Plug and Play for 5G RAN 5G Use Case Team Feb 9, 2018 version 13 Design Time Run-Time (Instances) Plug and Play Stages A Modeling Resources Definition/Services Definition SDC:

More information

MODERN APPLICATION ARCHITECTURE DEMO. Wanja Pernath EMEA Partner Enablement Manager, Middleware & OpenShift

MODERN APPLICATION ARCHITECTURE DEMO. Wanja Pernath EMEA Partner Enablement Manager, Middleware & OpenShift MODERN APPLICATION ARCHITECTURE DEMO Wanja Pernath EMEA Partner Enablement Manager, Middleware & OpenShift COOLSTORE APPLICATION COOLSTORE APPLICATION Online shop for selling products Web-based polyglot

More information

ONAP Integration Through Information and Data Modeling. ONAP Information Integration GOAL. 12 December 2017

ONAP Integration Through Information and Data Modeling. ONAP Information Integration GOAL. 12 December 2017 ONAP Integration Through Information and Data Modeling 12 December 2017 Andy Mayer, Ph.D. ONAP Information Integration GOAL We need a cohesive way to have a shared view of information across ONAP (and

More information

Towards a Carrier Grade ONAP Platform Multi Cloud (MC) Architecture for R2+ & Alignment to S3P

Towards a Carrier Grade ONAP Platform Multi Cloud (MC) Architecture for R2+ & Alignment to S3P Towards a Carrier Grade ONAP Platform Multi Cloud (MC) Architecture for R2+ & Alignment to S3P Key Contributors: Ramki Krishnan, Sumit Verdi, Xinhui Li, Danny Lin, Bin Hu, Gil Hellmann, Bin Yang, Shankar

More information

LOG AGGREGATION. To better manage your Red Hat footprint. Miguel Pérez Colino Strategic Design Team - ISBU

LOG AGGREGATION. To better manage your Red Hat footprint. Miguel Pérez Colino Strategic Design Team - ISBU LOG AGGREGATION To better manage your Red Hat footprint Miguel Pérez Colino Strategic Design Team - ISBU 2017-05-03 @mmmmmmpc Agenda Managing your Red Hat footprint with Log Aggregation The Situation The

More information

Inventory (input to ECOMP and ONAP Roadmaps)

Inventory (input to ECOMP and ONAP Roadmaps) Inventory (input to ECOMP and ONAP Roadmaps) 1Q2018 2Q2018 3Q2018 4Q2018 1Q2019 2Q2019 3Q2019 4Q2019 ONAP participation and alignment Operations, Product, and other features with A&AI design impact Inventory

More information

ONAP container. For architecture subcommittee review November 14, 2017 Isaku Yamahata. Isaku Yamahata

ONAP container. For architecture subcommittee review November 14, 2017 Isaku Yamahata. Isaku Yamahata ONAP container For architecture subcommittee review November 14, 2017 Isaku Yamahata Isaku Yamahata Goal and scope Current ONAP architecture Currently ONAP is heavily tied into

More information

ONAP Micro-service Design Improvement. Manoj Nair, NetCracker Technologies

ONAP Micro-service Design Improvement. Manoj Nair, NetCracker Technologies ONAP Micro-service Design Improvement Manoj Nair, NetCracker Technologies Micro Service Definition Micro service architectural style is an approach to developing a single application as a suite of small

More information

PNF and Hybrid Services Support in ONAP

PNF and Hybrid Services Support in ONAP PNF and Hybrid Services Support in ONAP Oskar Malm, Ericsson v1.1, January 2018 Introduction Introduction of NFV means that VNFs deployed on shared infrastructure is quickly replacing dedicated physical

More information

ONAP VNF Developer Experience. Eric Multanen - Intel. ONAP Developer Forum June 20, 2018

ONAP VNF Developer Experience. Eric Multanen - Intel. ONAP Developer Forum June 20, 2018 ONAP VNF Developer Experience Eric Multanen - Intel ONAP Developer Forum June 20, 2018 Context We have VNFs - Reference platforms e.g. FlexRAN, NEV SDK, etc. We have ONAP experience - Contributions to

More information

Introduction. Delivering Management as Agile as the Cloud: Enabling New Architectures with CA Technologies Virtual Network Assurance Solution

Introduction. Delivering Management as Agile as the Cloud: Enabling New Architectures with CA Technologies Virtual Network Assurance Solution Delivering Management as Agile as the Cloud: Enabling New Architectures with CA Technologies Virtual Network Assurance Solution Introduction Service providers and IT departments of every type are seeking

More information

How to Leverage Integration Labs? Helen Chen, Rich Bennett, Stephen Gooch, Gary Wu

How to Leverage Integration Labs? Helen Chen, Rich Bennett, Stephen Gooch, Gary Wu How to Leverage Integration Labs? Heen Chen, Rich Bennett, Stephen Gooch, Gary Wu Agenda How to Leverage Integration Labs Depoying OOM Using Heat Integration Labs Infrastructure Testing environment: currenty

More information

OpenECOMP SDC Developer Guide

OpenECOMP SDC Developer Guide OpenECOMP SDC Developer Guide Copyright 2017 AT&T Intellectual Property. All rights reserved. Licensed under the Creative Commons License, Attribution 4.0 Intl. (the "License"); you may not use this documentation

More information

External API - Casablanca Proposal - SDNC/DO/MEC Alignment

External API - Casablanca Proposal - SDNC/DO/MEC Alignment External API - Casablanca Proposal - SDNC/DO/MEC Alignment NetCracker May 2018 Ext API : Beijing Release BSS Ext API List Service Order Retrieve Service Order Create Service Order Partial Update of Service

More information

ONAP Release Planning

ONAP Release Planning ONAP Release Planning Gildas Lanilis ONAP Release Manager F2F Paris Sept 25-28, 2017 What is this deck about? 1. Release Strategy 2. Beijing Major Release Calendar Proposal 3. Making Amsterdam reality

More information

vcpe Use Case Review Integration Project and Use Case Subcommittee July 25, 2017

vcpe Use Case Review Integration Project and Use Case Subcommittee July 25, 2017 vcpe Use Case Review Integration Project and Use Case Subcommittee July 25, 2017 Red blocks are infrastructure. They are shared among all the users. Green blocks are used by customers. Each customer needs

More information

ONAP Data Model - an SDC Perspective

ONAP Data Model - an SDC Perspective ONAP Data Model - an SDC Perspective Michael Brenner (Cloudify) Tom Nadeau (Cloudify) David Shadmi (AT&T) Anatoly Katzman (AT&T) December 2017 Design-Time Data Model - Principals The Design-Time model

More information

VoLTE E2E Service Review

VoLTE E2E Service Review VoLTE E2E Service Review September 26, 2017 Chengli Wang/Yang Xu VoLTE Use Case Integrate with 3 rd Part Specific Components S-VNFM /EMS DC Controller S-VNFM /EMS S-VNFM /EMS WAN/SPTN Controller Commercial

More information

History of SDN Control at AT&T

History of SDN Control at AT&T History of SDN Control at AT&T Chris Rice Senior Vice-President, AT&T Labs Definition of SDN and an SDN Controller Software-Defined Networking - (SDN) is an architectural approach to network design that

More information

Application Centric Microservices Ken Owens, CTO Cisco Intercloud Services. Redhat Summit 2015

Application Centric Microservices Ken Owens, CTO Cisco Intercloud Services. Redhat Summit 2015 Application Centric Microservices Ken Owens, CTO Cisco Intercloud Services Redhat Summit 2015 Agenda Introduction Why Application Centric Application Deployment Options What is Microservices Infrastructure

More information

Top five Docker performance tips

Top five Docker performance tips Top five Docker performance tips Top five Docker performance tips Table of Contents Introduction... 3 Tip 1: Design design applications as microservices... 5 Tip 2: Deployment deploy Docker components

More information

SBB. Java User Group 27.9 & Tobias Denzler, Philipp Oser

SBB. Java User Group 27.9 & Tobias Denzler, Philipp Oser OpenShift @ SBB Java User Group 27.9 & 25.10.17 Tobias Denzler, Philipp Oser Who we are Tobias Denzler Software Engineer at SBB IT Java & OpenShift enthusiast @tobiasdenzler Philipp Oser Architect at ELCA

More information

Towards a Carrier Grade ONAP Platform FCAPS Architectural Evolution

Towards a Carrier Grade ONAP Platform FCAPS Architectural Evolution Towards a Carrier Grade ONAP Platform FCAPS Architectural Evolution Key Contributors: Ramki Krishnan, Sumit Verdi, Xinhui Li, Danny Lin, Bin Hu, Gil Hellmann, Bin Yang, Shankar Narayanan, Sastry Isukapalli,

More information

ONAP Project Proposal Training. Chris Donley

ONAP Project Proposal Training. Chris Donley ONAP Project Proposal Training Chris Donley A project is: long term endeavor setup to deliver features across multiple releases Single entity solely responsible for 1+ repos Defined scope Led by PTL and

More information

Building Interactive Dashboards in Oracle Management Cloud

Building Interactive Dashboards in Oracle Management Cloud Building Interactive Dashboards in Oracle Management Cloud Part 3 Drill Down from Dashboard Widgets using Widget Title Linking By Pratul Mathur Oracle Management Cloud (OMC) allows users to build custom

More information

Open Source Networking Software Case studies and Roundtable. Arpit Joshipura GM, Networking

Open Source Networking Software Case studies and Roundtable. Arpit Joshipura GM, Networking Open Source Networking Software Case studies and Roundtable Arpit Joshipura GM, Networking Industry Progress towards Harmonization 1. Recap of Software Stack 2. Technical Collaboration 3. Bringing Global

More information

Reactive Integrations - Caveats and bumps in the road explained

Reactive Integrations - Caveats and bumps in the road explained Reactive Integrations - Caveats and bumps in the road explained @myfear Why is everybody talking about cloud and microservices and what the **** is streaming? Biggest Problems in Software Development High

More information

ONAP ETSI NFV ARCHITECTURE ALIGNEMENT

ONAP ETSI NFV ARCHITECTURE ALIGNEMENT ONAP ETSI NFV ARCHITECTURE ALIGNEMENT Bruno Chatras, NFV ISG Vice-Chairman on behalf of the ISG leadership team ETSI 2017. All rights reserved 2 PART 1 ETSI NFV CONCEPTS ETSI NFV Architecture, and NFV-MANO

More information

5G and Open Source Networking

5G and Open Source Networking #Generation5G 5G and Open Source Networking Jamil Chawki Contributor: Vincent Colas From 1G to 5G 5G Customer expectation, usage & main challenges 5G core network transformation Network Slicing Service-Based

More information

Develop Mobile Front Ends Using Mobile Application Framework A - 2

Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 2 Develop Mobile Front Ends Using Mobile Application Framework A - 3 Develop Mobile Front Ends Using Mobile Application Framework A - 4

More information

OpenLegacy API Integration & Management for Legacy or Core Mission-critical Systems

OpenLegacy API Integration & Management for Legacy or Core Mission-critical Systems PRODUCT DATASHEET OpenLegacy API Integration & Management for Legacy or Core Mission-critical Systems Legacy or core mission-critical systems are the foundation of most of the world s largest and most

More information

OSM Hackfest Session 6 Performance & Fault Management Benjamín Díaz (Whitestack)

OSM Hackfest Session 6 Performance & Fault Management Benjamín Díaz (Whitestack) OSM Hackfest Session 6 Performance & Fault Management Benjamín Díaz (Whitestack) Introduction Performance and Fault Management capabilities have made important progress in Release FIVE. At the time of

More information

Using AWS to Build a Large Scale Dockerized Microservices Architecture. Dr. Oliver Wahlen moovel Group GmbH Frankfurt, 30.

Using AWS to Build a Large Scale Dockerized Microservices Architecture. Dr. Oliver Wahlen moovel Group GmbH Frankfurt, 30. Using AWS to Build a Large Scale Dockerized Microservices Architecture Dr. Oliver Wahlen moovel Group GmbH Frankfurt, 30. Juni 2016 The moovel Group GmbH Our vision is an ecosystem that simplifies mobility

More information

MSB to Support for Carrier Grade ONAP Microservice Architecture. Huabing Zhao, PTL of MSB Project, ZTE

MSB to Support for Carrier Grade ONAP Microservice Architecture. Huabing Zhao, PTL of MSB Project, ZTE MSB to Support for Carrier Grade ONAP Microservice Architecture Huabing Zhao, PTL of MSB Project, ZTE ONAP Architecture Principle: Microservices ONAP Architecture Principle: ONAP modules should be designed

More information

Monitor your containers with the Elastic Stack. Monica Sarbu

Monitor your containers with the Elastic Stack. Monica Sarbu Monitor your containers with the Elastic Stack Monica Sarbu Monica Sarbu Team lead, Beats team monica@elastic.co 3 Monitor your containers with the Elastic Stack Elastic Stack 5 Beats are lightweight shippers

More information

not use this documentation except in compliance with the License.

not use this documentation except in compliance with the License. AAI REST API Copyright 2017 AT&T Intellectual Property. All rights reserved. You may obtain a copy of the License at https://creativecommons.org/licenses/by/4.0/ Unless required by applicable law or agreed

More information

OPEN-O DevOps Practice with Automation Toolchain

OPEN-O DevOps Practice with Automation Toolchain OPEN-O DevOps Practice with Automation Toolchain Helen Chen Principal Architect, Huawei USA PTL of OPEN-O Integration helen.chen@huawei.com Weidong Shao Principal Engineer, Huawei USA weidong.shao@huawei.com

More information

DEPLOYING A VMWARE VCLOUD DIRECTOR INFRASTRUCTURE-AS-A-SERVICE (IAAS) SOLUTION WITH VMWARE CLOUD FOUNDATION : ARCHITECTURAL GUIDELINES

DEPLOYING A VMWARE VCLOUD DIRECTOR INFRASTRUCTURE-AS-A-SERVICE (IAAS) SOLUTION WITH VMWARE CLOUD FOUNDATION : ARCHITECTURAL GUIDELINES DEPLOYING A VMWARE VCLOUD DIRECTOR INFRASTRUCTURE-AS-A-SERVICE (IAAS) SOLUTION WITH VMWARE CLOUD FOUNDATION : ARCHITECTURAL GUIDELINES WHITE PAPER JULY 2017 Table of Contents 1. Executive Summary 4 2.

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme CNA1612BU Deploying real-world workloads on Kubernetes and Pivotal Cloud Foundry VMworld 2017 Fred Melo, Director of Technology, Pivotal Merlin Glynn, Sr. Technical Product Manager, VMware Content: Not

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme NET1510 Introduction to NSX-T Architecture Dimitri Desmidt ddesmidt@vmware.com Andrew Voltmer avoltmer@vmware.com #VMworld #NET1510BU Disclaimer This presentation may contain product features that are

More information

The API Economy in a Mobile World What are we talking about?

The API Economy in a Mobile World What are we talking about? IBM BusinessConnect A New Era of Thinking The API Economy in a Mobile World What are we talking about? Frank van der Wal Human Being Digital Transformation Specialist thewall@nl.ibm.com @thewalls 1 2016

More information

ONAP open lab A fully virtual flavor

ONAP open lab A fully virtual flavor ONAP open lab A fully virtual flavor Ver 0.5 Helen Chen, William Chen, Lingli Deng, Chris Donley, Ranny Haiby, Jason Hunt, Catherine Lefevre, Tomer Oster, Oliver Spatscheck, Chengli Wang, Gary Wu, Kang

More information

Multi-Cloud and Application Centric Modeling, Deployment and Management with Cisco CloudCenter (CliQr)

Multi-Cloud and Application Centric Modeling, Deployment and Management with Cisco CloudCenter (CliQr) Multi-Cloud and Application Centric Modeling, Deployment and Management with Cisco CloudCenter (CliQr) Jeremy Oakey - Sr. Director, Technical Marketing & Integrations BRKCLD-2008 Agenda Introduction Architecture

More information

ONAP PNF Enhancements for Casablanca (R3, 4Q 2018) Casablanca Developer s Conference

ONAP PNF Enhancements for Casablanca (R3, 4Q 2018) Casablanca Developer s Conference ONAP PNF Enhancements for Casablanca (R3, 4Q 2018) Casablanca Developer s Conference ONAP and PNF Plug and Play for 5G RAN 5G Use Case Team Jun 14, 2018 version 7 PNF Enhancements Casablanca Summary TOPIC

More information

Orchestration and Management for Edge Application with ONAP

Orchestration and Management for Edge Application with ONAP Orchestration and Management for Edge Application with ONAP Haibin Huang, Intel OTC Yan Yang, China Mobile Shane Wang, Intel OTC OpenStack Berlin Summit, Nov. 14 Agenda - Akraino Edge Stack - ONAP VNF/CNF

More information

CORD Roadmap. Release Management. #OpenCORD

CORD Roadmap. Release Management. #OpenCORD CORD Roadmap Release Management #OpenCORD Reference Implementation When is the reference implementation released? Four-month cadence: January / May / September Mid-cycle support branches (e.g., 3.0.1)

More information

MODERN IT ARCHITECTURE

MODERN IT ARCHITECTURE MODERN IT ARCHITECTURE 2 ABOUT ME 3 ABOUT ME AGENDA 1. KEY CONCEPTS Microservices, containers, etc. 2. HOLISTIC VIEW Making businesses agile 3. ARCHITECTURE Faster, flatter, and more flexible 4. LAB MATERIALS

More information

ONAP VoLTE Use Case Solution Brief

ONAP VoLTE Use Case Solution Brief ONAP VoLTE Use Case Solution Brief ONAP Voice over LTE Improves Agility and Slashes Costs for Communication Service Providers ONAP VoLTE Use Case Solution Brief 1 By using ONAP to support the VoLTE use

More information

Developing Microsoft Azure Solutions: Course Agenda

Developing Microsoft Azure Solutions: Course Agenda Developing Microsoft Azure Solutions: 70-532 Course Agenda Module 1: Overview of the Microsoft Azure Platform Microsoft Azure provides a collection of services that you can use as building blocks for your

More information

1. Introduction. 2. Technology concepts

1. Introduction. 2. Technology concepts 1 Table of Contents 1. Introduction...2 2. Technology Concepts...3 2.1. Sharding...4 2.2. Service Oriented Data Architecture...4 2.3. Aspect Oriented Programming...4 3. Technology/Platform-Specific Features...5

More information

Telco Perceptions of OPNFV. Roz Roseboro, Senior Analyst, Heavy Reading

Telco Perceptions of OPNFV. Roz Roseboro, Senior Analyst, Heavy Reading Telco Perceptions of OPNFV Roz Roseboro, Senior Analyst, Heavy Reading CSP Info (1) Source: Heavy Reading Service Provider Survey, June 2017 n=98 CSP info (2) Source: Heavy Reading Service Provider Survey,

More information

Casa Systems Axyom Multiservice Router

Casa Systems Axyom Multiservice Router Solution Brief Casa Systems Axyom Multiservice Router Solving the Edge Network Challenge To keep up with broadband demand, service providers have used proprietary routers to grow their edge networks. Cost

More information

Akraino & Starlingx: A Technical Overview

Akraino & Starlingx: A Technical Overview Akraino & Starlingx: A Technical Overview Agenda Why Edge Computing? What s Edge Computing? Akraino and Its Building Blocks StarlingX Technical Overview Collaboration in Akraino Community LC3 Beijing 2018

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme CNA2080BU Deep Dive: How to Deploy and Operationalize Kubernetes Cornelia Davis, Pivotal Nathan Ness Technical Product Manager, CNABU @nvpnathan #VMworld #CNA2080BU Disclaimer This presentation may contain

More information

Multi-Cloud and Application Centric Modeling, Deployment and Management with Cisco CloudCenter (CliQr)

Multi-Cloud and Application Centric Modeling, Deployment and Management with Cisco CloudCenter (CliQr) Multi-Cloud and Application Centric Modeling, Deployment and Management with Cisco CloudCenter (CliQr) Jeremy Oakey Senior Director, Technical Marketing and Integrations Agenda Introduction Architecture

More information

Open Cloud Engine - An Open Source Cloud Native Transformer

Open Cloud Engine - An Open Source Cloud Native Transformer DDD Spring Cloud DevOps Open Cloud Engine - An Open Source Cloud Native Transformer AS-IS: Pain-points in service operation Requests for Service upgrade is too frequently, it brings over-time working everyday.

More information

BizMailChimp MailChimp & Dynamics CRM Integration Tool Installation Guide

BizMailChimp MailChimp & Dynamics CRM Integration Tool Installation Guide BizMailChimp MailChimp & Dynamics CRM Integration Tool Installation Guide Introduction This document outlines the components and controls that are available to integrate Dynamics CRM and MailChimp. BizMailChimp

More information

AT&T SD-WAN Network Based service quick start guide

AT&T SD-WAN Network Based service quick start guide AT&T SD-WAN Network Based service quick start guide After you order your AT&T SD-WAN Network Based service, you can: Create administrator accounts Log in to the SD-WAN orchestrator Configure business policy

More information

Enabling Agility through Modularity and Microservices TM Forum Middle East Jan 2018

Enabling Agility through Modularity and Microservices TM Forum Middle East Jan 2018 Enabling Agility through Modularity and Microservices TM Forum Middle East Jan 2018 Joann O Brien VP APIs & Ecosystems, TM Forum 2017 TM Forum 1 5G open ecosystems represent a $582bn opportunity as other

More information

TEN ESSENTIAL NETWORK VIRTUALIZATION DEFINITIONS

TEN ESSENTIAL NETWORK VIRTUALIZATION DEFINITIONS E-Guide TEN ESSENTIAL NETWORK VIRTUALIZATION DEFINITIONS SearchSDN T here is some confusion surrounding as there is no one definition. In this exclusive guide, you ll find ten to help you better understand

More information

SDD Proposal to COSMOS

SDD Proposal to COSMOS IBM Tivoli Software SDD Proposal to COSMOS Jason Losh (SAS), Oasis SDD TC Tooling Lead Mark Weitzel (IBM), COSMOS Architecture Team Lead Why: Customer Problems Customer Feedback More than half of outages

More information

Microservices log gathering, processing and storing

Microservices log gathering, processing and storing Microservices log gathering, processing and storing Siim-Toomas Marran Univeristy of Tartu J.Liivi 2 Tartu, Estonia siimtoom@ut.ee ABSTRACT The aim of this work is to investigate and implement one of the

More information

OpenAPI-based Message Router for Mashup Service Development

OpenAPI-based Message Router for Mashup Service Development OpenAPI-based Message Router for Mashup Service Development Doyoung Lee, Seyeon Jeong, James Won-Ki Hong Department of Computer Science and Engineering, POSTECH, Korea {dylee90, jsy0906, jwkhong}@postech.ac.kr

More information

Improving Drupal search experience with Apache Solr and Elasticsearch

Improving Drupal search experience with Apache Solr and Elasticsearch Improving Drupal search experience with Apache Solr and Elasticsearch Milos Pumpalovic Web Front-end Developer Gene Mohr Web Back-end Developer About Us Milos Pumpalovic Front End Developer Drupal theming

More information

Multi VIM/Cloud Evolvement for Carrier Grade Support

Multi VIM/Cloud Evolvement for Carrier Grade Support Multi VIM/Cloud Evolvement for Carrier Grade Support VMWare: Xinhui Li, Ramki Krishnan, Sumit Verdi China Mobile: Lingli Deng, Chengli Wang, Yuan Liu, Yan Yang ATT: Bin Hu Wind River: Gil Hellmann, Bin

More information

Deployment Case Study of SDN and NFV Transformation. Marcela Blanco-Luna Solutions Architect Advanced Services

Deployment Case Study of SDN and NFV Transformation. Marcela Blanco-Luna Solutions Architect Advanced Services Deployment Case Study of SDN and NFV Transformation Marcela Blanco-Luna Solutions Architect Advanced Services Future Network Platform Service Creation Service Design Service Assurance Cloud Optimization

More information

Microservices Implementations not only with Java. Eberhard Wolff Fellow

Microservices Implementations not only with Java. Eberhard Wolff Fellow Microservices Implementations not only with Java Eberhard Wolff http://ewolff.com @ewolff Fellow http://continuous-delivery-buch.de/ http://continuous-delivery-book.com/ http://microservices-buch.de/ http://microservices-book.com/

More information

WHITE PAPER. RedHat OpenShift Container Platform. Benefits: Abstract. 1.1 Introduction

WHITE PAPER. RedHat OpenShift Container Platform. Benefits: Abstract. 1.1 Introduction WHITE PAPER RedHat OpenShift Container Platform Abstract Benefits: Applications are designed around smaller independent components called microservices. Elastic resources: Scale up or down quickly and

More information

CUSTOMIZE & SECURE YOUR ENTERPRISE MOBILE SALESFORCE INTEGRATIONS LIKE RED HAT

CUSTOMIZE & SECURE YOUR ENTERPRISE MOBILE SALESFORCE INTEGRATIONS LIKE RED HAT CUSTOMIZE & SECURE YOUR ENTERPRISE MOBILE SALESFORCE INTEGRATIONS LIKE RED HAT Featuring Red Hat Mobile Application Platform, 3Scale by Red Hat, and Red Hat JBoss Fuse Maggie Hu - Sr. Middleware Specialist

More information

Microservice Splitting the Monolith. Software Engineering II Sharif University of Technology MohammadAmin Fazli

Microservice Splitting the Monolith. Software Engineering II Sharif University of Technology MohammadAmin Fazli Microservice Software Engineering II Sharif University of Technology MohammadAmin Fazli Topics Seams Why to split the monolith Tangled Dependencies Splitting and Refactoring Databases Transactional Boundaries

More information

Engaging Academia in ONAP Perspective of a Faculty Member at SMU Ali Shah PhD Adjunct Professor

Engaging Academia in ONAP Perspective of a Faculty Member at SMU Ali Shah PhD Adjunct Professor Engaging Academia in ONAP Perspective of a Faculty Member at SMU Ali Shah PhD Adjunct Professor https://training.linuxfoundation.org/training/course-catalog/?_sft_course_mode=e-learning Slide 1 Overview

More information

End-to-End Cloudification of Mobile Telecoms. The MCN Consortium Presenter: Andy Edmonds ZHAW

End-to-End Cloudification of Mobile Telecoms. The MCN Consortium Presenter: Andy Edmonds ZHAW End-to-End Cloudification of Mobile Telecoms The MCN Consortium Presenter: Andy Edmonds (@dizz), ZHAW Goals of MCN Architecture Modularity, reusability Creation of composed (end-to-end) services Adhere

More information

Harmonizing Open Source and Standards: A Case Study of ONAP

Harmonizing Open Source and Standards: A Case Study of ONAP Harmonizing Open Source and Standards: A Case Study of ONAP Draft by Jenny Huang (AT&T), Lingli Deng (CMCC), and Hui Deng (Huawei) Harmonizing Open Source and Standards: A Case Study of ONAP 1 As part

More information

August, HPE Propel Microservices & Jumpstart

August, HPE Propel Microservices & Jumpstart August, 2016 HPE Propel s & Jumpstart Jumpstart Value Quickly build modern web applications Single page application Modular microservices architecture app generator Modularity provides better upgradeability

More information

Oracle Fusion Middleware 11g: Build Applications with ADF I

Oracle Fusion Middleware 11g: Build Applications with ADF I Oracle University Contact Us: +966 1 1 2739 894 Oracle Fusion Middleware 11g: Build Applications with ADF I Duration: 5 Days What you will learn This course is aimed at developers who want to build Java

More information

Performance Monitoring and Management of Microservices on Docker Ecosystem

Performance Monitoring and Management of Microservices on Docker Ecosystem Performance Monitoring and Management of Microservices on Docker Ecosystem Sushanta Mahapatra Sr.Software Specialist Performance Engineering SAS R&D India Pvt. Ltd. Pune Sushanta.Mahapatra@sas.com Richa

More information

ONAP Application Controller (APPC) API Guide

ONAP Application Controller (APPC) API Guide ONAP Application Controller (APPC) API Guide Revision Version 2.0.0 Revision Date 25 August 2017 Copyright 2017 AT&T Intellectual Property. Copyright 2017 Amdocs All rights reserved. Licensed under the

More information

Casa Systems Axyom Multiservice Router

Casa Systems Axyom Multiservice Router Solution Brief Casa Systems Axyom Multiservice Router Solving the Edge Network Challenge To keep up with broadband demand, service providers have used proprietary routers to grow their edge networks. Cost

More information

DevOps Course Content

DevOps Course Content DevOps Course Content 1. Introduction: Understanding Development Development SDLC using WaterFall & Agile Understanding Operations DevOps to the rescue What is DevOps DevOps SDLC Continuous Delivery model

More information

Transformation-free Data Pipelines by combining the Power of Apache Kafka and the Flexibility of the ESB's

Transformation-free Data Pipelines by combining the Power of Apache Kafka and the Flexibility of the ESB's Building Agile and Resilient Schema Transformations using Apache Kafka and ESB's Transformation-free Data Pipelines by combining the Power of Apache Kafka and the Flexibility of the ESB's Ricardo Ferreira

More information

Data Staging and Data Movement with EUDAT. Course Introduction Helsinki 10 th -12 th September, Course Timetable TODAY

Data Staging and Data Movement with EUDAT. Course Introduction Helsinki 10 th -12 th September, Course Timetable TODAY Data Staging and Data Movement with EUDAT Course Introduction Helsinki 10 th -12 th September, 2013 1400 Introduction Adam Carter Course Timetable TODAY 1430 The EUDAT Safe Replication Service Claudio

More information

Oracle Application Container Cloud

Oracle Application Container Cloud Oracle Application Container Cloud Matthew Baldwin Principal Product Manager Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes

More information

There is no such thing as a microservice!

There is no such thing as a microservice! There is no such thing as a microservice! Chris Richardson Founder of Eventuate.io Founder of the original CloudFoundry.com Author of POJOs in Action chris@chrisrichardson.net http://microservices.io http://eventuate.io

More information

Cloud Native Applications. 主讲人 :Capital One 首席工程师 Kevin Hoffman

Cloud Native Applications. 主讲人 :Capital One 首席工程师 Kevin Hoffman Cloud Native Applications 主讲人 :Capital One 首席工程师 Kevin Hoffman Agenda Define Cloud Native Cloud Native practices and the 15 factors From Monoliths to the Cloud Q&A What is Cloud Native? Contract between

More information

Solution Overview Gigamon Visibility Platform for AWS

Solution Overview Gigamon Visibility Platform for AWS Solution Overview Gigamon Visibility Platform for Background With the rapid evolution of the public cloud that brings instant advantages of economies of scale, elasticity and agility, IT and data center

More information

Customize OpenStack for Telco NFV

Customize OpenStack for Telco NFV Security Level: Customize OpenStack for Telco NFV Tianran Zhou (zhoutianran@huawei.com) Feng Dong (albert.dongfeng@huawei.com) www.huawei.com HUAWEI TECHNOLOGIES CO., LTD. Motivation Linux as a general

More information

Data Virtualization and the API Ecosystem

Data Virtualization and the API Ecosystem Data Virtualization and the API Ecosystem Working Together, These Two Technologies Enable Digital Transformation SOLUTION Data Virtualization for the API Ecosystem WEBSITE www.denodo.com PRODUCT OVERVIEW

More information

ONAP CCVPN Blueprint Overview. ONAP CCVPN Blueprint Improves Agility and Provides Cross-Domain Connectivity. ONAP CCVPN Blueprint Overview 1

ONAP CCVPN Blueprint Overview. ONAP CCVPN Blueprint Improves Agility and Provides Cross-Domain Connectivity. ONAP CCVPN Blueprint Overview 1 ONAP CCVPN Blueprint Overview ONAP CCVPN Blueprint Improves Agility and Provides Cross-Domain Connectivity ONAP CCVPN Blueprint Overview 1 OVERVIEW: Build high-bandwidth, flat OTN (Optical Transport Networks)

More information

Microservices with Red Hat. JBoss Fuse

Microservices with Red Hat. JBoss Fuse Microservices with Red Hat Ruud Zwakenberg - ruud@redhat.com Senior Solutions Architect June 2017 JBoss Fuse and 3scale API Management Disclaimer The content set forth herein is Red Hat confidential information

More information

GlusterFS Architecture & Roadmap

GlusterFS Architecture & Roadmap GlusterFS Architecture & Roadmap Vijay Bellur GlusterFS co-maintainer http://twitter.com/vbellur Agenda What is GlusterFS? Architecture Integration Use Cases Future Directions Challenges Q&A What is GlusterFS?

More information

Towards a Real- time Processing Pipeline: Running Apache Flink on AWS

Towards a Real- time Processing Pipeline: Running Apache Flink on AWS Towards a Real- time Processing Pipeline: Running Apache Flink on AWS Dr. Steffen Hausmann, Solutions Architect Michael Hanisch, Manager Solutions Architecture November 18 th, 2016 Stream Processing Challenges

More information

Qualys Cloud Platform

Qualys Cloud Platform 18 QUALYS SECURITY CONFERENCE 2018 Qualys Cloud Platform Looking Under the Hood: What Makes Our Cloud Platform so Scalable and Powerful Dilip Bachwani Vice President, Engineering, Qualys, Inc. Cloud Platform

More information