+ All Categories
Home > Documents > Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16...

Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16...

Date post: 09-Apr-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
26
Governance Capabilities of Overlord Kurt Stam JBUG Washington DC Oct 16 2013
Transcript
Page 1: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Governance Capabilities of Overlord

Kurt StamJBUG Washington DC

Oct 16 2013

Page 2: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Overlord

jboss.org/overlord

Page 3: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Introduction to Overlord● Overlord is an umbrella project which represents

JBoss Governance. Overlord is part of the SOA Group.● Projects: DTGov, RTGov & S-RAMP on http://www.

jboss.org/overlord● Source: https://github.com/Governance● Committers: Gary Brown, Kurt Stam, Eric Wittmann, Jeff

Yu and you?

Page 4: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA
Page 5: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

SRAMP presented by Eric

jboss.org/overlord

Page 6: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

SOA Repository Artifact Model and Protocol

OASIS specification known as S-RAMP defines ● a common data model for Artifact

Repositories (SOA focus) (type & model)● an interaction ATOM protocol to facilitate

the use of common tooling and sharing data

Page 7: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP Components

● Core Models storing standard metadata and the file content itself

● Derived Models are read only and data is derived from the content

● Extensible● XPath2 based QL

S-RAMP ATOM BIND API

Derived Models(Read Only)

Core Model Documents

XML, XSD, WSDL, SOAP,Policy, ..., Extended Doc

XSD, WSDL, SOAP, Policy, ..., Extended Model

Page 8: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP Implementation

● RESTEasy for the ATOM BIND API

● Content Extractors (jar)● Artifact Relationships● Content Derivers● Modeshape and Infinispan

as JCR impl for perform- ance and scalability

● JAAS, SAML for SSO

ATOM BINDING (RESTEasy)

Derived Models(Read Only)

Core Model Documents

JCR Storage (Modeshape on top of Infinispan)

Page 9: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP Capabilities?● Store Content and MetaData

○ Core & Custom Properties○ Classification (OWL Ontology)○ Relationships between artifacts

● Rich Query Support XPath2 Style● ATOM API for easy communication

Page 10: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

What S-RAMP is not

● SCM - use GIT instead (S-RAMP tracks 'deployable' and 'interface' type artifacts)

● Not meant for intermediate artifacts, but rather 'released' and 'versioned'.

Page 11: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

How to interact with S-RAMP?Through the ATOM BIND REST API using ● An ATOM client● Java, using the S-RAMP client library● Command Line Interface● S-RAMP-UI Browser (Web Based)● Maven (S-RAMP Wagon up/down)

Page 12: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP ClientSrampAtomApiClient client =

new SrampAtomApiClient(endpoint, username, password, true);

//Upload an artifactBaseArtifactType artifact = client.uploadArtifact(type, is, file);

//Query S-RAMPQueryResultSet rs = client.buildQuery("/s-ramp[@from-demo = ?]")

Page 13: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP Wagon(1)...<build> <finalName>${project.artifactId}</finalName> <extensions> <extension> <groupId>org.overlord.sramp</groupId> <artifactId>s-ramp-wagon</artifactId> </extension> </extensions>...

Page 14: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP Wagon(2)...<distributionManagement> <repository> <id>local-sramp-repo</id> <name>S-RAMP Releases Repository</name> <url>sramp://localhost:8080/s-ramp-server/

?artifactType=SwitchyardApplication</url> </repository>...

Page 15: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

S-RAMP Demos

Page 16: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

DTGov

jboss.org/overlord

Page 17: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Design Time Governance● SOA Architecture Design (Workflow)● Search for Services (re-use)● Artifact Relationship Visualization● Notifications on Service Change● Impact Discovery● Store and Manage Policies

Page 18: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

DTGov, some key priorities to start

● Best practice BPMN2 based governance workflows○ Repository events kick off governance workflows

○ Out-of-the-box integration with jBPM-6

○ Workflows can be customized or new ones can be created

● Governance Workflows can push artifacts to a service execution environment using either JON/RHQ, or direct deployment

● DTGov console

Page 19: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Deployment workflow● S-RAMP triggers deploy to runtime● Logs deployment status in S-RAMP● Sends out notifications● Human task to approve or fail● target: dev, qa, stage, prod

Page 20: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA
Page 21: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

DTGov Demo

● Upload ontologies & workflows● 2. Upload Switchyard app using maven

○ s-ramp:query "/s-ramp/ext/SwitchyardApplication"

● 3. Approve SY Artifact(s)

Page 22: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

RTGov

jboss.org/overlord

Page 23: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Runtime GovernanceThe RTGov architecture has following goals:● Real-time analysis of individual business transactions

○ correlating activities across services to understand the overall transaction

● Evaluating activity against Service Level Agreements● Real-time policy enforcement

Page 24: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA
Page 25: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

What's Coming (Soon)?Repository:

Complete implementation of S-RAMP-1.0 specIntegration into other JBoss products (TEIID, JON/RHQ) (Done)

Governance:Console (Started)

Bottom up Switchyard, Project Lifecycle (Started)API Management (Started)Policy ManagementCommunity Management

What features are you looking for?

Page 26: Kurt Stam JBUG Washington DC Governance Capabilities of ...files.meetup.com/2376281/JBug DC Oct 16 2013.pdf · Extended Doc XSD, WSDL, SOAP, Policy, ... Design Time Governance SOA

Questions?


Recommended