introduction to enterprise messaging using ibm mqintroduction to enterprise messaging using ibm mq...

55
Introduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Upload: others

Post on 20-May-2020

27 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Introduction to Enterprise Messaging using IBM MQGwydion Tudur

IBM MQ Development

November 2019

Session AK

Page 2: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Agenda

• Messaging• What is messaging and why use it? • What does MQ give you?

• Fundamentals of IBM MQ• Messaging models• Key components• Messaging applications• MQ Environments• Security• Reliability and availability• Administration

Page 3: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

What is messaging?

From the simplest pairs of applications…

...to the most complexbusiness processes.and breaks the tight coupling…

It connects your applications!

Page 4: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Direct communication between applications

• Issues with this ‘synchronous’ approach• Both applications A and B must always be available for A to continue

• A cannot do anything whilst B is processing A’s request

• What if B fails whilst A is waiting for it to complete?

• What if B needs to handle a high workload of different priority requests?

Request an action

Wait for a response

App AApp B

Page 5: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Fragility of tight coupling

• As systems become more tightly coupled, their reliance on each other increases.• The cost of a failure of a process increases

• A process was originally designed for one, well-defined, purpose...… It then needed to change to meet new requirements.

• Being able to respond rapidly to internal and external challenges by rapidlymodifying existing services gives a competitive advantage.

• Maximum number of connections goes up with the square ofthe number of systems

• Scaling systems independently to respond to requirementsbecomes unmanageable

Page 6: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Adding flexibility with Messaging

• A ‘queue’ is placed between the two applications• Allows A to continue immediately, without waiting for B

• Allows B to efficiently process a queue of work

• Overcomes availability of B versus A – “store and forward” of messages

Send request Perform action

App AApp B

Page 7: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

What if I NEED a response?

• Using messaging still adds value!• Process the response whenever it becomes available

• No need for A to be idle whilst the request is performed

• Application B processes its workload efficiently and can handle spikes in load

• Application, network and infrastructure failures are handled

Send request Perform action

Process response Send responseApp A

App B

Page 8: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

The power of events

• Not all information is distributed on a one-to-one basis

• Think about streams of information• Regularly updated information - such as stock prices or sensor data• Business events - such as ‘new customer’ or ‘purchase’

• Publish / Subscribe messaging is the solution!• The owner of the information simply publishes it on a topic• Anybody who is interested simply subscribes to the topic

App

Page 9: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Messaging Models

Page 10: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Message consumer

Message consumer

Message consumer

Message producer

Point-to-point

Page 11: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Topic

Publish/subscribe

Subscription

Subscription

Subscription

Message consumer

Message consumer

Message consumer

Message producer

Message consumer

Message consumer

Message consumer

Message producer

Page 12: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Durable publish/subscribe in action

• Durable subscriptions result in published messages being retained when the subscriber is not connected to the messaging provider.

Subscriber 1

MessagePublisher

Topic

Subscriber 2

Page 13: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

IBM MQ

Page 14: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Security

Data encryption and integrity

End use authentication and authorisation

Audit trails for configuration and data flows

Scalability

High performance solution

Incremental growth of applications and infrastructure

Ubiquity

Breadth of support for platforms and environments

Multiple application environments and APIs to suit many styles

Reliability

Assured message delivery “Once and once only”

Resiliency and high availability of the infrastructure

Continued support and interoperability of systems for over twenty years

What MQ adds to messagingEnterprise Messaging

Page 15: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Anatomy of an MQ system• Applications

• Applications use MQ clients to connect to an MQ queue manager• Applications can connect to queue managers either on the same

system (BINDINGS mode) or remotely over a network (CLIENT mode)

• Queue Managers• A queue manager is a runtime that hosts messaging resources

such as queues and their messages• A queue manager manages the flow and storage of messages• Each queue manager runs on a single system• Multiple queue managers can be connected together using

channels and messages routed between them

• Queues• Queues are a named resource where messages sent to by

applications, stored by the queue manager and retrieved by applications

• Messages• Are just chunks of data• Applications build messages to send and receive

• Channels• Channels define a way for one queue manager to connect to

another queue manager• Channels can be manually configured or dynamically created as

and when needed using MQ Clusters

System 3

System 1

App A

QMgr

System 2

QMgr

Channel

App B

Page 16: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Topics for Publish/Subscribe

• Topics defined by “Topic Strings” – case sensitive

• Some characters have special meanings:• '/' The topic level separator – provides

hierarchical structure to topic trees. Each node in the tree is a topic.

• '#' The multilevel wildcard character for subscribers

• '+' The single-level wildcard character for subscribers

• Typically describe the data published to them

• Queue manager matches a topic to a list of subscribers

• “Topic objects” (defined by PCF, MQSC or publish/subscribe action) control behaviour of applications

Price

Vegetable Fruit

BroccoliCarrot Apple Banana

Price/Fruit/+

Price/Fruit/#Red Green

Page 17: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

IBM MQ Architectures

Page 18: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Distributed Architectures

• Used for connectivity of heterogeneous systems

• Provides store and forward to overcome system outages

• This is the ‘original’ deployment pattern for MQ

• Queue managers will interoperate with other queue managers and clients at any other version of MQ

QMgr

QMgr

QMgr

QMgr

QMgr

Page 19: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ hub architecture

• A ‘hub’ of systems running queue managers on a standard deployment

• Applications connect to “gateways” as clients from remote systems

• This pattern has gained popularity as networks improve and administration costs go up

QMgr

QMgr

QMgr

Page 20: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Connecting queue managers together

• Channels connect queue managers together, allowing messages to flow between them

• Two options:• Manual configuration of channels

• Each channel relationship must be defined on both ends

• Additional resource also need to be defined(transmission queues and remote queues)

• MQ clusters

• Once queue managers join a cluster (a pair of specialchannels must be defined) they can route messages to anyother clustered resource in the cluster without requiringfurther, per queue manager, configuration.

• As queue manager networks grow, clusters become a benefit

• Clusters also enable workload balancing and availability routingof messages

QMgr

QMgr

QMgr

QMgr

QMgr

QMgr

QMgr

QMgr

QMgr

QMgr

Page 21: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

IBM MQ with Event Streams

• IBM MQ connects mission critical systems, requiring transactional once only delivery

• IBM Event Streams distributes and processes streams of events in real time to intelligently engage with customers

• Connecting the two together, flowing messages and events between them, with the supported connectors enables you to unlock the potential of your data

Page 22: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Applications

Page 23: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ APIs

• How do I connect my apps to my queue manager?• MQI

• JMS

• MQ Light API

• MQTT

• REST API Messaging (point to point only!)

C

JMS

MQTT.NET

COBOL

QMgr

QMgr

QMgr

Page 24: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ APIs - MQI (MQ Interface)

• C, COBOL, Java

• MQ’s proprietary API offering full access to MQ’s capabilities

MQCONN(QM1)

MQOPEN(APP.Q)

MQPUT(APP.Q, message)

MQGET(APP.Q, message)

MQCLOSE(APP.Q)

MQDISC(QM1)

QM1

APP.Q

Page 25: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Java Message Service (JMS) and XMS• JMS is part of the JEE specification. JMS 2.0 (JEE 7) is the latest spec

• Fully supported in application servers such as WSAS, Liberty, WebLogic, Wildfly

• Simplifies programming and supports both messaging domains

• No MQ coding knowledge needed!

• XMS syntactically the same as JMS V1.1 but for C, C++ and C#

// Lookup the MQ specific objects in JNDIContext jndiContext = new InitialContext();ConnectionFactory cf = (ConnectionFactory) jndiContext.lookup("jms/QM1");Destination dest = (Destination) jndiContext.lookup("jms/APP.Q");

// Establish a connection with the queue manager & create JMS objectsJMSContext context = cf.createContext();JMSConsumer consumer = context.createConsumer(dest);

// Get a messageMessage msg = consumer.receive();

QM1

APP.Q

Page 26: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ APIs - MQ Light

• AMQP based API

• Node.js, Java, Ruby

• Connects cloud applications to MQ!# Receive:

var mqlight = require('mqlight');

var recvClient = mqlight.createClient({service:

'amqp://localhost'});

recvClient.on('started', function() {

recvClient.subscribe('news/technology');

recvClient.on('message', function(data, delivery) {

console.log(data);

});

});

Page 27: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ Telemetry

● Product extension supports connectivity

for smart devices to the enterprise

● Utilises the open standard MQTT protocol

– a lightweight, public, low bandwidth

messaging protocol for scenarios where

enterprise messaging clients are too big or

bandwidth intensive.

● Java, C and JavaScript libraries provided,

but you can “roll your own” that

implement the MQTT v3 spec

Petrol Forecourt

Vehicle

Oil rig

Retail Store

Medical

PervasiveDevice

Sensore.g.

RFID

Enterprise

Smartphones

Page 28: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

REST Messaging

• The new HTTP server support introduced in MQ 9.0.x (now available in MQ 9.1.0 LTS) provides the platform for a properly integrated REST API solution

• Allowing applications to put and get messages from a queue without installing any MQ software locally

• Ideal for environments with native REST support, such as common JavaScript libraries including NodeJS, and AngularJS

• Can only be used for point to point messaging

• For full functionality and resiliency an MQ client should still be used

REST API

HT

TP

S

Ex

isting

ch

an

ne

ls

AppAppAppMQ

QM1

Q1 MQPUT(Q1)

MQGET(Q1)

AppAppApp POST …/qmgr/QM1/queue/Q1/message

DELETE…/qmgr/QM1/queue/Q1/message

Page 29: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Messaging APIs

• All interoperate with each other!

• Any application can receive messages from any other application

C

JMS

MQTT.NET

COBOL

QMgr

QMgr

QMgr

Page 30: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Message consumerMessage producer

Persistent Queues

Request Queue

Reply Queue

Combining persistent messages with transactions gives youonce and once only delivery of messages from an application’s point of view

Transaction

Transactional Messaging

Page 31: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Environments:On-premise & Cloud

Page 32: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Run IBM MQ in any location or cloud exactly as youneed it

On-premises, software and the MQ Appliance

Run it yourself in any cloud, public or private

Let IBM host it for you with its new managed MQ service in IBM Cloud

Private cloud

AWSAWSAWSAzure

AWS

Linux

Windows SolarisHPE

AIX

IBMi

IBM Z

Appliance

NEW

IBM Cloud Private

Page 33: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Provision queue managers directly into IBM Cloud

IBM owns the infrastructure and the responsibility to keep the systems up to date and running

The customer owns the configuration and the monitoring of the messaging

Try the service for free at:

https://console.bluemix.net/catalog/services/mq

MQ on IBM Cloud

• Provision queue managers directly into IBM Cloud

• IBM owns the infrastructure and the responsibility to keep the systems up to date and running

• The customer owns the configuration and the monitoring of the messaging

Try the service for free at:

https://console.bluemix.net/catalog/services/mq

Page 34: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ in Containers MQ has been supporting Docker containers since 2015 with images on Docker Hub and Docker Store and sample setups on Github

More recently it has been demonstrating how to get the most from containers using Kubernetes

And now MQ Advanced is available as a fully supported product with IBM Cloud Private, a Kubernetes-based solution from IBM

Page 35: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

The IBM MQ Appliance• The scalability, security and reliability of IBM MQ

• The convenience, fast time-to-value and low total cost of ownership of an appliance

• Built in high availability and disaster recovery capabilities

• Ideal for use as a messaging hub running queue managers accessed by clients, or to extend MQ connectivity to a remote location

• Familiar feel for existing MQ users – application interfaces, administration, networking/clustering, security….

Page 36: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Security

Page 37: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Security

• Authentication• Determining who is connecting to your Queue Manager• Local and remote rules based controls allow fine grain control

• IP address, User ID & Password, X.509 Certificates, custom exits

• Mapping and blocking rules can be used to elevate, demote or block access• Default rules prevent unauthenticated clients from asserting administrator privileges

• Authorization & Access Control• Determining what operations your users are allowed to perform• Granular MQ authorities allow you to control what applications and administrators can and cannot do

• MQ authorities can be granted to groups or users, generic or specific objects

• Extensibility & Custom implementations• Ranging from Channel Security & API exits through to pluggable authority manager

Page 38: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Security

• Integrity & Privacy• Digital signing & Data Encryption supporting latest protocols and algorithms• Builds on Public key infrastructure technologies

• X.509 Certificates

• Transport level (in-flight)• TLS 1.2

• FIPS 140-2 (Federal Information Processing Standards) compliance

• Message level (data at rest)• Advanced Message Security (AMS) provides signing and encryption

capabilities for message lifetime

• From MQ V9:

• AMS supported on non-IBM JREs

• Fast encrypted messages with “Confidentiality policies”

Page 39: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

High availability

Page 40: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

• Replicated Data Queue Managers (Linux)

• Queue-sharing groups (z/OS)

• Support for cloud orchestration frameworkse.g. Kubernetes, Docker Swarm, Apache Mesos

• Client connectivity

• Automatic reconnection

• CCDTs

• Pre-connect exit

• Support for HA clusters and network storage

• Multi-instance queue managers (Windows, Linux, UNIX)

• IBM MQ Appliance

IBM MQ HA capabilities

Page 41: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Multi-instance queue managers

• Automatic detection and take over of terminated queue managers, recovering persistent messages.

• MQ clients can detect the failover and automatically reconnect an application to an alternative location without the application being aware of it.

System 1

QMgr A

System 2

Networkstorage

QMgr A

AppAppApp

Page 42: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ queue manager clusters

• The same queue is defined on multiple queue managers in an MQ cluster

• Messages are workload balanced across them or sent to a primary location

• This gives you great horizontal scaling potential or high availability

• In the event of a failure, messages continue to be routed to the available locations to be processed

• Also the ability to route messagesbased on application availability

App

App

App

QMgr

QMgr

QMgr

Page 43: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Shared queues on z/OS• Shared queues are hosted centrally within a queue sharing group

• A application connected to any queue manager in the group can consume the messages from the shared queues

• A failure of one queue manager is recovered by the others in the group and messages continue to be available

App

AppApp

App

QMgr

QMgr

QMgr

QMgr

Page 44: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ Appliance high availability

Fully synchronousreplication

▪ No external storage

▪ No additional skills required

▪ All recoverable data replicated

immediately

▪ Manual control of failover for

migration/maintenance

▪ Queue manager level active/passive

(i.e. both appliances can run workload)https://www.ibm.com/support/knowledgecenter/SS5K6E_9.1.0/com.ibm.mqa.doc/overview/ov00020_.htm

Page 45: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Replicated Data Queue Managers

• Linux-only HA solution with no need for a shared file system or HA cluster

• MQ configures the underlying resources to make setup and operations natural to an MQ user

• Three-way replication for quorum support

• Synchronous data replication for once and once only transactional delivery of messages

• Active/passive queue managers with automatic takeover

MQ HA Group

Node 2 Node 3Node 1

Synchronous data replication

Monitoring

App

Network

Page 46: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Administration and monitoring

Page 47: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Administration and Monitoring• Command Line, Scripting (MQSC), PCF

• MQ Explorer GUI

• Web consoleSimple to use, web based administration

• RESTful administrationAdminister and manage your queue managers over HTTPS

• Tivoli, Third Party/Open Source Tooling

• Logging and monitoringSimplify the streaming of logs and metrics for centralized storage and analysis

51

DISPLAY

UPDATE

GETreceive JSON

POSTsend JSON

DELETE

PATCHsend JSON

HTTP MQSC

DEFINE

DELETE

JSON

Page 48: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ Advanced

Page 49: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ Advanced Message Security• Secures application data even before it is passed to MQ

• Upgrade from base MQ

• No changes to existing applications or network required

MQ Queue Manager

AMS Interceptor

App B

App A

AMS Client Interceptor

MQ standard security:• Industry standard TLS channels• Certified for Common Criteria• Authentication is based on Operating System identifier

of local process• Message data can be encrypted in transport but not

when it resides in the queues

MQ Advanced Message Security adds:• Authentication policies are based on certificates

associated with each application• Message data is protected end-to-end – including

when it resides in queues• Much finer granularity in security policies• No changes needed to applications or queues

Page 50: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

MQ Managed File Transfer

• MQ MFT solves problems of auditing, monitoring, scheduling and securing file transfer operations

• Automated bulk data transfer between distributed heterogeneous systems.

• Capabilities for integrating, managing, and controlling data movement.

• Assured delivery of data overMQ backbone.

• Simplicity and flexibility

• MQ Explorer Integration

• Scriptable

• Scheduled or Triggered transfers

• Complements IIB File Nodes

MQMQMFT

MQMFT MQMFTMQMFT

MQ MQ

Clients

Servers

MQMFT Eclipse Tooling

MQMFT

MQMFT

MQMFT

MQMFT Eclipse Tooling

Coordination

Queue Manager

Page 51: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

IBM MQ: long term support and continuous delivery

Mix and Match

Both are available under the same license.

Both can interoperate, just like any previous version of MQ.

Continuous Delivery

New CD versions of MQ are released approximately every four months, incrementally introducing new product capabilities.

Intended for those that can continually integrate.

Long Term Support

Approximately every two years a new LTS version is released, rolling up many of the CD capabilities into a release with 5+3 support attached.

Required by those looking for fixed function.

In 2016 MQ introduced a dual Long Term Support and Continuous Delivery model

The function delivered in the 9.0.x CD releases made available as a long term support release, 9.1.0 LTS.

2016 2017 2018

LTS V9.0.1 CD V9.0.2 CD V9.0.3 CD V9.0.4 CD V9.0.5 CD

IBM MQ ApplianceM2001

MQ on IBM Cloud

2019 2020

V9.1 LTS V9.1.1 CD V9.1.2 CD V9.1.3 CD …

availableavailable

IBM MQ ApplianceM2002

available

Page 52: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Getting Started

Page 53: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

LearnMQ

Finding it hard to get developers started with MQ?

Point them to:

developer.ibm.com/messaging/learn-mq

Totally new to MQ? Learn the basics

Step-by-step guide to getting up and running with MQ

Tutorials on building your applications

Page 54: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Where do I get more information?

IBM MQ Knowledge Center

https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_9.1.0

IBM Messaging developerWorks

https://developer.ibm.com/messaging

IBM Messaging Youtube

https://ibm.biz/MQplaylist

LinkedIn

Ibm.biz/ibmmessaging

Twitter

@IBMintegration

Page 55: Introduction to Enterprise Messaging using IBM MQIntroduction to Enterprise Messaging using IBM MQ Gwydion Tudur IBM MQ Development November 2019 Session AK

Please submit your session feedback!

• Do it online at http://conferences.gse.org.uk/2019/feedback/AK

• This session is AK