SlideShare a Scribd company logo
The Microservices Lifecycle
A Demonstration
Jay Thorne, Consulting Software Engineer, APIM
Matt McLarty, VP, API Academy
DO3X14SV
DEVOPS
2 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
For Informational Purposes Only
Terms of this Presentation
© 2016 CA. All rights reserved. All trademarks referenced herein belong to their respective companies. The presentation provided at CA
World 2016 is intended for information purposes only and does not form any type of warranty. Some of the specific slides with customer
references relate to customer's specific use and experience of CA products and solutions so actual results may vary.
Certain information in this presentation may outline CA’s general product direction. This presentation shall not serve to (i) affect the rights
and/or obligations of CA or its licensees under any existing or future license agreement or services agreement relating to any CA software
product; or (ii) amend any product documentation or specifications for any CA software product. This presentation is based on current
information and resource allocations as of November 1, 2016, and is subject to change or withdrawal by CA at any time without notice. The
development, release and timing of any features or functionality described in this presentation remain at CA’s sole discretion.
Notwithstanding anything in this presentation to the contrary, upon the general availability of any future CA product release referenced in
this presentation, CA may make such release available to new licensees in the form of a regularly scheduled major product release. Such
release may be made available to licensees of the product who are active subscribers to CA maintenance and support, on a when and if-
available basis. The information in this presentation is not deemed to be incorporated into any contract.
3 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Abstract
In this demo, we’ll illustrate how to create a microservices-based system that employs essential
capabilities to deliver speed and safety at scale.Jay Thorne
CA Technologies
Consulting Software
Engineer, APIM
4 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Agenda
SOFTWARE COMPLEXITY
ESSENTIAL VS. ACCIDENTAL COMPLEXITY
COMPLEXITY IN MICROSERVICES
THE MICROSERVICES LIFECYCLE: A DEMO
1
2
3
4
5 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Software Complexity
6 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Software Complexity
“Many of the classical problems of
developing software products derived
from this essential complexity and its
nonlinear increased with size.”
- Fred Brooks, “No Silver Bullet—Essence and
Accident in Software Engineering”
http://www.cs.nott.ac.uk/~pszcah/G51ISS/Documents/NoSilverBullet.html
7 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Essential vs. Accidental Complexity
Essential Complexity
‱ The complexity of the software’s functional scope and the
problems it solves (e.g. correlating and analyzing large amounts
of data in real time)
Accidental Complexity
‱ The complexity of the software’s implementation details (e.g.
the languages, processes and messages used to do the work)
8 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Complexity in Microservices
Essential Complexity in Microservices
‱ Focus on who will be consuming the microservices, what tasks they want
to accomplish, how service boundaries are drawn, and the semantics of
the APIs that allow communication between microservices
Accidental Complexity in Microservices
‱ Focus on establishing component independence and then using
automation to speed up the development lifecycle and achieve
maximum stability in operational environments
9 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Dealing with Essential Complexity in Microservices
 Eric Evans’ Domain-Driven Design provides a
framework for defining and modeling the
essential capabilities of complex software
systems
Image credit: http://martinfowler.com/bliki/BoundedContext.html
10 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Dealing with Accidental Complexity in Microservices
From Ronnie Mitra’s
Presentation, “Designing a
Microservices Architecture”, at
CA World 2015
http://www.apiacademy.co/reso
urces/designing-a-microservices-
architecture/
11 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Our Demo Scenario: “App Economy World”
 “App Economy World” is the preeminent global technology
conference
 In order to practice what they preach, the AEW tech team is
building a microservices backbone to power the website and
mobile app
 These services will be used in preparation for the event—to
book speakers and exhibitors—and also during the event—to
help attendees build their own personal agendas
12 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Essential Complexity in “App Economy World” Services
Service Consumers
‱ Speakers
‱ Exhibitors
‱ Event Managers
‱ Event Attendees
Service Tasks
‱ Propose sessions
‱ Approve sessions
‱ Schedule sessions
‱ Propose exhibits
‱ Approve exhibits
‱ Locate exhibits
‱ Build personal agenda
Services
‱ Speaking Session
Service
‱ Exhibit Service
‱ Event Management
Service
‱ Attendee Service
‱ Accounting Service
(external)
‱ Facility Services
(external)
13 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Demo Scenario Context Map
Speaking
Session
Service
Exhibit
Service
Event
Management
Service
Accounting
Service
Attendee
Service
Facilities
Service
Query and Book Rooms/Times
Query and Book Booths
Post Purchases
Speakers
Attendees
Exhibitors
Event Managers
Query Exhibits
Query Sessions
Query and
Build Agenda
Request Session,
Receive
Approve/Decline
Request Exhibit, Receive
Approve/Decline,
Purchase Exhibit
Approve
Sessions and
Exhibits
Request
Approval
14 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Microservices Lifecycle Considerations
Design Time Runtime
System
Service
 Service discoverability
 Service boundary evolution
 System-wide policy definition
 Service instance discoverability
 Service composition for task
execution
 System-wide policy enforcement
 Component discoverability
 Interface evolution
 Rapid service prototyping
 Self-awareness
 Parallelism
 Rapid provisionability
15 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Microservices Lifecycle Considerations
Design Time Runtime
System
Service
 Service discoverability
 Service boundary evolution
 System-wide policy definition
 Service instance discoverability
 Service composition for task
execution
 System-wide policy enforcement
 Component discoverability
 Interface evolution
 Rapid service prototyping
 Self-awareness
 Parallelism
 Rapid provisionability
16 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Microservices Lifecycle Select Capabilities
Capability Enabling Technology
Service Discoverability CA API Portal
System-wide Policy Definition and
Enforcement
CA API Gateway
Rapid Service Prototyping and
Provisioning
CA Live API Creator
17 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Demo Focus: Removing Accidental Complexity
Internet of Things
Mobile
SaaS/Cloud Solutions
AWS, Google, SFDC 

Partner Ecosystems
Developers
ID/Authentication
SQL Data
NoSQL Data
Live API Creator
API Gateway
Mobile API Gateway
Mobile App Services
API Developer Portal
Enterprise NetworkExisting APIs
Scripts
18 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
 11 docker images
 All Ephemeral – no saved databases, etc.
 All provisioned live via scripting – no pre-done db’s or artifacts
 Source data was checked out this week from our Github
 It takes 15 minutes because it’s literally all from scratch
Some Details on what’s happening
19 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
The Demo
20 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Questions?
21 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD
Stay connected at communities.ca.com
Thank you.
@CAWORLD #CAWORLD © 2016 CA. All RIGHTS RESERVED.22 @CAWORLD #CAWORLD
DevOps – API Management and
Application Development
For more information on DevOps – API Management and
Application Development, please visit: http://cainc.to/DL8ozQ

More Related Content

PPTX
Vancouver Microservices Meetup - Kickoff Session
PPTX
Defining Microservices
PPTX
How to Execute a Successful API Strategy
PDF
META for Microservices: Getting your enterprise migration in motion
PDF
Composable data for the composable enterprise
PPTX
A Capability Blueprint for Microservices
PPTX
Microservices: 5 Years In
PPTX
How to Execute a Successful API Strategy
Vancouver Microservices Meetup - Kickoff Session
Defining Microservices
How to Execute a Successful API Strategy
META for Microservices: Getting your enterprise migration in motion
Composable data for the composable enterprise
A Capability Blueprint for Microservices
Microservices: 5 Years In
How to Execute a Successful API Strategy

What's hot (20)

PPTX
Overcoming RESTlessness
PPTX
How Cisco is Leveraging MuleSoft to Drive Continuous Innovation​ at Enterpris...
PDF
Microservices = Death of the Enterprise Service Bus (ESB)?
PPTX
Demystifying MuleSoft
PPTX
Application Networks: Microservices and APIs at Netflix
PDF
apidays LIVE Australia 2020 - Building an Enterprise Eventing Platform by Gna...
PPTX
The Agile Roots of Microservices
PPTX
Hybrid Cloud Integration is Coming: Are You Ready? | MuleSoft
PPTX
The Payer of the Future: Modernizing Health Insurance with API-led Connectivity
PPTX
From Commit to Production in 10 Minutes
 at a Century Old Insurance Company
PDF
apidays LIVE Australia 2020 - Events are Cool Again! by Nelson Petracek
PDF
Mule : Building Blocks for Microservices
PDF
Value Networks in Open Banking
PDF
How to Choose the Right API Management Solution
PDF
Mapping API business models through value exchange
PDF
Becoming a Connected Insurer With API-led Connectivity
PDF
Microservices - Death of the Enterprise Service Bus (ESB)? (Update 2016)
PDF
Product Keynote: How to Compete in the API Economy
PDF
A Visual Language for Systems Integration
PDF
Microservices and Friends
Overcoming RESTlessness
How Cisco is Leveraging MuleSoft to Drive Continuous Innovation​ at Enterpris...
Microservices = Death of the Enterprise Service Bus (ESB)?
Demystifying MuleSoft
Application Networks: Microservices and APIs at Netflix
apidays LIVE Australia 2020 - Building an Enterprise Eventing Platform by Gna...
The Agile Roots of Microservices
Hybrid Cloud Integration is Coming: Are You Ready? | MuleSoft
The Payer of the Future: Modernizing Health Insurance with API-led Connectivity
From Commit to Production in 10 Minutes
 at a Century Old Insurance Company
apidays LIVE Australia 2020 - Events are Cool Again! by Nelson Petracek
Mule : Building Blocks for Microservices
Value Networks in Open Banking
How to Choose the Right API Management Solution
Mapping API business models through value exchange
Becoming a Connected Insurer With API-led Connectivity
Microservices - Death of the Enterprise Service Bus (ESB)? (Update 2016)
Product Keynote: How to Compete in the API Economy
A Visual Language for Systems Integration
Microservices and Friends
Ad

Viewers also liked (20)

PDF
Design - Start Your API Journey Today
PDF
IBM WebSphere Liberty and Docker Deep Dive
PDF
API Driven Applications - An ecosystem architecture
 
PDF
WebSphere Liberty and IBM Containers: The Perfect Combination for Java Micros...
PDF
Microservice Builder: A Microservice DevOps Pipeline for Rapid Delivery and P...
PPTX
Microservice architecture design principles
PDF
Principles of Microservices - NDC 2014
PDF
Automated Deployment with Capistrano
PDF
Full lifecycle of a microservice
PDF
Multi-provider Vagrant and Chef: AWS, VMware, and more
ODP
It Works On My Machine: Vagrant for Software Development
PPTX
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
PDF
Vagrant For DevOps
PDF
Vagrant for real (codemotion rome 2016)
PDF
Microservices: Architecture for Agile Software Development
PPTX
Building out a Microservices Architecture with WebSphere Liberty Profile and ...
PPTX
Vagrant to-aws-flow
PDF
A Checklist for Every API Call
PPTX
Introduction to Microservices and Cloud Native Application Architecture
PPTX
API Management in Digital Transformation
Design - Start Your API Journey Today
IBM WebSphere Liberty and Docker Deep Dive
API Driven Applications - An ecosystem architecture
 
WebSphere Liberty and IBM Containers: The Perfect Combination for Java Micros...
Microservice Builder: A Microservice DevOps Pipeline for Rapid Delivery and P...
Microservice architecture design principles
Principles of Microservices - NDC 2014
Automated Deployment with Capistrano
Full lifecycle of a microservice
Multi-provider Vagrant and Chef: AWS, VMware, and more
It Works On My Machine: Vagrant for Software Development
Migrating Java EE applications to IBM Bluemix Platform-as-a-Service
Vagrant For DevOps
Vagrant for real (codemotion rome 2016)
Microservices: Architecture for Agile Software Development
Building out a Microservices Architecture with WebSphere Liberty Profile and ...
Vagrant to-aws-flow
A Checklist for Every API Call
Introduction to Microservices and Cloud Native Application Architecture
API Management in Digital Transformation
Ad

Similar to Microservice Lifecycle Demo Presentation (20)

PPTX
Mobile to Mainframe: Leveraging Application Services for Rapid Application De...
PDF
Leveraging CA Technologies Application Development Solutions to Rapidly Deliv...
PPTX
Pre-Con Ed: CA API Gateway: Developing Custom Policies to Secure Your Enterpr...
PDF
'Shift-Right' - Rapid Evolution with DesignOps
PDF
Technology Primer: Building Applications the New-Fashioned Way
PDF
Orchestrating Legacy Services Into Contemporary RESTful WEB APIs With CA App ...
PDF
CA Microgateway: Deploying, Configuring, and Extending CA Microgateway
PPTX
Reinventing Application Performance Testing with Service Virtualization
PDF
The Key to Successful Development and Deployment of Applications from Mobile ...
PDF
Securing Your Enterprise Continuous Delivery Pipelines with CA Automation Sol...
PDF
Pivotal Cloud Foundry: A Technical Overview
PDF
Pivotal Cloud Foundry: A Technical Overview
PDF
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
PDF
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
PDF
Technology Primer: Monitor Microservices, Containers, Cloud Foundry and Node ...
PDF
Pre-Con Education: How to Deliver a "5-Star" Mobile App Experience With CA ...
PDF
Application Testing Best Practices for Mobile Devices
PDF
Tech Talk: Introduction to SDN/NFV Assurance (CA Virtual Network Assurance)
PDF
Strategies for DevOps in the API and Microservices World
PPTX
Agile Tour Pune 2015: Dev-ops- niche or mainstream: Bhaskar Venugopalan
Mobile to Mainframe: Leveraging Application Services for Rapid Application De...
Leveraging CA Technologies Application Development Solutions to Rapidly Deliv...
Pre-Con Ed: CA API Gateway: Developing Custom Policies to Secure Your Enterpr...
'Shift-Right' - Rapid Evolution with DesignOps
Technology Primer: Building Applications the New-Fashioned Way
Orchestrating Legacy Services Into Contemporary RESTful WEB APIs With CA App ...
CA Microgateway: Deploying, Configuring, and Extending CA Microgateway
Reinventing Application Performance Testing with Service Virtualization
The Key to Successful Development and Deployment of Applications from Mobile ...
Securing Your Enterprise Continuous Delivery Pipelines with CA Automation Sol...
Pivotal Cloud Foundry: A Technical Overview
Pivotal Cloud Foundry: A Technical Overview
Pre-Con Ed: Monitor Your Cloud Infrastructure With CA Unified Infrastructure ...
Eclipse-Based User Interfaces for CA Endevor SCM and CA Testing Tool
Technology Primer: Monitor Microservices, Containers, Cloud Foundry and Node ...
Pre-Con Education: How to Deliver a "5-Star" Mobile App Experience With CA ...
Application Testing Best Practices for Mobile Devices
Tech Talk: Introduction to SDN/NFV Assurance (CA Virtual Network Assurance)
Strategies for DevOps in the API and Microservices World
Agile Tour Pune 2015: Dev-ops- niche or mainstream: Bhaskar Venugopalan

Recently uploaded (20)

PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
history of c programming in notes for students .pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
 
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
System and Network Administraation Chapter 3
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
ai tools demonstartion for schools and inter college
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Wondershare Filmora 15 Crack With Activation Key [2025
wealthsignaloriginal-com-DS-text-... (1).pdf
Design an Analysis of Algorithms II-SECS-1021-03
How to Choose the Right IT Partner for Your Business in Malaysia
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
How to Migrate SBCGlobal Email to Yahoo Easily
history of c programming in notes for students .pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
 
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Navsoft: AI-Powered Business Solutions & Custom Software Development
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
System and Network Administraation Chapter 3
Operating system designcfffgfgggggggvggggggggg
PTS Company Brochure 2025 (1).pdf.......
ai tools demonstartion for schools and inter college
Softaken Excel to vCard Converter Software.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
VVF-Customer-Presentation2025-Ver1.9.pptx
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool

Microservice Lifecycle Demo Presentation

  • 1. The Microservices Lifecycle A Demonstration Jay Thorne, Consulting Software Engineer, APIM Matt McLarty, VP, API Academy DO3X14SV DEVOPS
  • 2. 2 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD For Informational Purposes Only Terms of this Presentation © 2016 CA. All rights reserved. All trademarks referenced herein belong to their respective companies. The presentation provided at CA World 2016 is intended for information purposes only and does not form any type of warranty. Some of the specific slides with customer references relate to customer's specific use and experience of CA products and solutions so actual results may vary. Certain information in this presentation may outline CA’s general product direction. This presentation shall not serve to (i) affect the rights and/or obligations of CA or its licensees under any existing or future license agreement or services agreement relating to any CA software product; or (ii) amend any product documentation or specifications for any CA software product. This presentation is based on current information and resource allocations as of November 1, 2016, and is subject to change or withdrawal by CA at any time without notice. The development, release and timing of any features or functionality described in this presentation remain at CA’s sole discretion. Notwithstanding anything in this presentation to the contrary, upon the general availability of any future CA product release referenced in this presentation, CA may make such release available to new licensees in the form of a regularly scheduled major product release. Such release may be made available to licensees of the product who are active subscribers to CA maintenance and support, on a when and if- available basis. The information in this presentation is not deemed to be incorporated into any contract.
  • 3. 3 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Abstract In this demo, we’ll illustrate how to create a microservices-based system that employs essential capabilities to deliver speed and safety at scale.Jay Thorne CA Technologies Consulting Software Engineer, APIM
  • 4. 4 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Agenda SOFTWARE COMPLEXITY ESSENTIAL VS. ACCIDENTAL COMPLEXITY COMPLEXITY IN MICROSERVICES THE MICROSERVICES LIFECYCLE: A DEMO 1 2 3 4
  • 5. 5 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Software Complexity
  • 6. 6 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Software Complexity “Many of the classical problems of developing software products derived from this essential complexity and its nonlinear increased with size.” - Fred Brooks, “No Silver Bullet—Essence and Accident in Software Engineering” http://www.cs.nott.ac.uk/~pszcah/G51ISS/Documents/NoSilverBullet.html
  • 7. 7 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Essential vs. Accidental Complexity Essential Complexity ‱ The complexity of the software’s functional scope and the problems it solves (e.g. correlating and analyzing large amounts of data in real time) Accidental Complexity ‱ The complexity of the software’s implementation details (e.g. the languages, processes and messages used to do the work)
  • 8. 8 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Complexity in Microservices Essential Complexity in Microservices ‱ Focus on who will be consuming the microservices, what tasks they want to accomplish, how service boundaries are drawn, and the semantics of the APIs that allow communication between microservices Accidental Complexity in Microservices ‱ Focus on establishing component independence and then using automation to speed up the development lifecycle and achieve maximum stability in operational environments
  • 9. 9 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Dealing with Essential Complexity in Microservices  Eric Evans’ Domain-Driven Design provides a framework for defining and modeling the essential capabilities of complex software systems Image credit: http://martinfowler.com/bliki/BoundedContext.html
  • 10. 10 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Dealing with Accidental Complexity in Microservices From Ronnie Mitra’s Presentation, “Designing a Microservices Architecture”, at CA World 2015 http://www.apiacademy.co/reso urces/designing-a-microservices- architecture/
  • 11. 11 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Our Demo Scenario: “App Economy World”  “App Economy World” is the preeminent global technology conference  In order to practice what they preach, the AEW tech team is building a microservices backbone to power the website and mobile app  These services will be used in preparation for the event—to book speakers and exhibitors—and also during the event—to help attendees build their own personal agendas
  • 12. 12 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Essential Complexity in “App Economy World” Services Service Consumers ‱ Speakers ‱ Exhibitors ‱ Event Managers ‱ Event Attendees Service Tasks ‱ Propose sessions ‱ Approve sessions ‱ Schedule sessions ‱ Propose exhibits ‱ Approve exhibits ‱ Locate exhibits ‱ Build personal agenda Services ‱ Speaking Session Service ‱ Exhibit Service ‱ Event Management Service ‱ Attendee Service ‱ Accounting Service (external) ‱ Facility Services (external)
  • 13. 13 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Demo Scenario Context Map Speaking Session Service Exhibit Service Event Management Service Accounting Service Attendee Service Facilities Service Query and Book Rooms/Times Query and Book Booths Post Purchases Speakers Attendees Exhibitors Event Managers Query Exhibits Query Sessions Query and Build Agenda Request Session, Receive Approve/Decline Request Exhibit, Receive Approve/Decline, Purchase Exhibit Approve Sessions and Exhibits Request Approval
  • 14. 14 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Microservices Lifecycle Considerations Design Time Runtime System Service  Service discoverability  Service boundary evolution  System-wide policy definition  Service instance discoverability  Service composition for task execution  System-wide policy enforcement  Component discoverability  Interface evolution  Rapid service prototyping  Self-awareness  Parallelism  Rapid provisionability
  • 15. 15 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Microservices Lifecycle Considerations Design Time Runtime System Service  Service discoverability  Service boundary evolution  System-wide policy definition  Service instance discoverability  Service composition for task execution  System-wide policy enforcement  Component discoverability  Interface evolution  Rapid service prototyping  Self-awareness  Parallelism  Rapid provisionability
  • 16. 16 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Microservices Lifecycle Select Capabilities Capability Enabling Technology Service Discoverability CA API Portal System-wide Policy Definition and Enforcement CA API Gateway Rapid Service Prototyping and Provisioning CA Live API Creator
  • 17. 17 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Demo Focus: Removing Accidental Complexity Internet of Things Mobile SaaS/Cloud Solutions AWS, Google, SFDC 
 Partner Ecosystems Developers ID/Authentication SQL Data NoSQL Data Live API Creator API Gateway Mobile API Gateway Mobile App Services API Developer Portal Enterprise NetworkExisting APIs Scripts
  • 18. 18 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD  11 docker images  All Ephemeral – no saved databases, etc.  All provisioned live via scripting – no pre-done db’s or artifacts  Source data was checked out this week from our Github  It takes 15 minutes because it’s literally all from scratch Some Details on what’s happening
  • 19. 19 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD The Demo
  • 20. 20 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Questions?
  • 21. 21 © 2016 CA. ALL RIGHTS RESERVED.@CAWORLD #CAWORLD Stay connected at communities.ca.com Thank you.
  • 22. @CAWORLD #CAWORLD © 2016 CA. All RIGHTS RESERVED.22 @CAWORLD #CAWORLD DevOps – API Management and Application Development For more information on DevOps – API Management and Application Development, please visit: http://cainc.to/DL8ozQ