• No results found

DB2 z/os Data Sharing

N/A
N/A
Protected

Academic year: 2021

Share "DB2 z/os Data Sharing"

Copied!
35
0
0

Loading.... (view fulltext now)

Full text

(1)

© 2009 IBM Corporation

DB2 z/OS Data Sharing

Stephan Arenswald – DB2 z/OS Data Sharing [email protected]

(2)

Ich / Me /

ぼく

 Entwickler am IBM Tivoli OMEGAMON XE for DB2 Performance Expert on z/OS  Seit über 2 Jahren fest angestellt, vorher Hiwi / Praktikant / Werkstudent / Diplomarbeit

– Thema: Autonomes Datenbank Tuning

 Entwicklung mit System Z / z/OS / Z

– Auf z/OS mit REXX, CLIST, ISPF Panel/Skeleton – Gegen DB2 z/OS mit Java von Distributed aus

 Betreuung von Studenten für verschieden Projekte – Workload Service

(3)

© 2009 IBM Corporation

First the challenges, then the solution...

 Availability

– Access to data any time of the day

 Capacity

– Single system may be constraint to rapid business growth, but splitting the database would introduce several problems

 Growth

– Easily accomodating business targets means providing scalable, non-disruptive growth options

 Workload Balancing

– Effective utilization of available processor capacity for mixed workloads and the ability to handle unpredictable workload spikes

 Systems Management

– Consolidation of multiple systems allows easier system management

(4)

Data Sharing

 1: It‘s a function of DB2 for z/OS  no separate product

 2: Only available on DB2 for z/OS

 3: REAL CONCURRENT access to data

„The data sharing function

1

of the licensed program DB2 for z/OS

2

enables

multiple application to read from, and write to, the same DB2 data concurrently

3

.

The applications can run on different DB2 subysystems resideing on multiple

central processor complexes

4

(CPC) in a Parallel Sysplex

5

.“

(5)

© 2009 IBM Corporation

REAL CONCURRENT access?

5

App 1

App 2

DBMS

App 1

App 2

DBMS 2

DBMS 1

(6)

Data Sharing

 1: It‘s a function of DB2 for z/OS  no separate product

 2: Only available on DB2 for z/OS

 3: REAL CONCURRENT access to data

 4: Different DB2 subsystems on different CPCs – Various different configurations possible

 5: Parallel Sysplex

„The data sharing function

1

of the licensed program DB2 for z/OS

2

enables

multiple application to read from, and write to, the same DB2 data concurrently

3

.

The applications can run on different DB2 subysystems residing on multiple

(7)

© 2009 IBM Corporation

Parallel Syplex

 Base technology for different important technologies – Data Sharing (IBM DB2 z/OS)

– CICS PLEX (IBM CICS)

– Shared Queues (IBM WebSphere Message Queue)

 Parallel Sysplex only on System Z  no comparable technology anywhere else (Oracle, Microsoft, ...)

 Sysplex (System Complex):

– Group of z/OS systems that communicate and cooperate with one another – Synchronization through Sysplex Timer

– Conection using ESCON, FICON

 Parallel Sysplex

– Syplex + Coupling Facility • Lock processing

• High speed caching

(8)

Sysplex / Shared Disk

XCFAS

z/OS 1

XCFAS

z/OS 2

XCF

(9)

© 2009 IBM Corporation

Parallel Sysplex / Shared Data

9

XCFAS

z/OS 1

XCFAS

z/OS 2

XCF

X

E

S

X

E

S

CF

(10)

Data Sharing Architecture

 Shared Nothing

– Database partitioned – Discs not shared

– Distributed commit required

– Data repartitioning when adding nodes – (+) Performance

– (-) If one node dies ...

 Shared Disks

– No partitioning required – Dynamic load balancing

– (-) Inter-Node communication von messages • Locking

• Buffering

 Shared Data

– Handling of locking and caching CF – Load Balancing

– Continuous availability

– Flexible growth  no additional overhead

(11)

© 2009 IBM Corporation

Shared Disk / Sysplex vs. Shared Data / Parallel Sysplex

(12)

Coupling Facility

 Connector between z/OS Systems

 Minimal OS that contains different data structures – Lock Structures

– Cache Structures – List Structures

 CF requires 1 LPAR (as separate OS) – External CF  CF in separate box

– Internal CF (ICF)  CF in same box as DB2

(13)

© 2009 IBM Corporation

Scalability

 2 critical factors for scalability

– Concurrency Control (Locking)

– Buffer coherency control (Buffering  managing changed data)

 (1) Concurrency Control – Global Locking

– Allow multiple read operations or single write operation in DSG

 (2) Coherency Control – Managing Changed Data

– Situation in which one DB2 member changes data rows that already reside in the buffers of other members

(14)

Global Locking & Lock Structure

 IRLM (Internal Resource Lock Manager)

– Separate Address Space responsible for Lock Management in DB2 and IMS! – Responsible for local and global locking

– Uses Cross-Coupling Facility

 False Contention

– Hash value is the same for two different resources – Rare  lock structure in general large enough

(15)

© 2009 IBM Corporation

Data Sharing Lock Types

 Logical Locks (L-Locks)

– Locks held by transactions

 Physical Locks (P-Locks) – Only in data sharing

– Part of process to manage buffer coherency

– Locks on table-/index-spaces to discover inter-DB2 read/write interest

Inter-DB2 read/write Interest = situation where at least one member in DSG is reading a table-/index-space and another member is writing to them

(16)

Deadlock Detection in DSG

 Local vs. Global Deadlock Detection

 Local Deadlock Detector (LDD): (at least) two waiters are on the same DB2

 Global Deadlock Manager (GDM): (at least) two waiters are on different DB2s

 GDD requires all IRLM in DSG

– Each IRLM knows its own local locks

IRLM

IRLM

IRLM

GDM

(17)

© 2009 IBM Corporation

Group Bufferpools

 Challenge in managing data in DSG is that DB2 buffers data

 Problem:

– 1 Page is in BP of Member 1 and Member 2 – Page on Member 1 gets update

– Page on Member 2 hast to be updated, too

 Group Bufferpool is a cache structure in CF

17

DB2A

DB2B

BP0

BP1

BP2

BP0

BP1

BP2

GBP0

GBP1

GBP2

CF

(18)

Group Bufferpools

DB2A

DB2B

BP4

BP4

(19)

© 2009 IBM Corporation

Group Bufferpools

19

DB2A

DB2B

BP4

BP4

GBP4

Inter-DB2 read/

write interest

(20)

Group Bufferpools

DB2A

DB2B

BP4

BP4

GBP4

Updated

Page

(21)

© 2009 IBM Corporation

Group Bufferpools

21

DB2A

DB2B

BP4

BP4

GBP4

(22)

Group Bufferpools – Castout

 Writes pages from the primary GBP to disk

 Castout responsibility spread out through all of the members

 There is no connection between CF and data

 Benefit?  Copy data from buffer to buffer  Performance

DB2A

DB2B

BP4

BP4

GBP4

(23)

© 2009 IBM Corporation

Outages

 Planned Outages

– Installing Maintenance – Migration to new version

 Unplanned Outages – Unwanted of course – But more interesting

(24)

Planned Outages

 DB2 Outage

1. Direct any workload away from DB2 z/OS 2. Shut down DB2

3. Do changes 4. Restart DB2

5. Start accepting workloads again

6. Do 1-5 with every other member in DSG

(25)

© 2009 IBM Corporation

DB2 z/OS Migration

 CM8/9

– Just to make sure that code runs

– In DSG: CM8/9 & NFM8/9 can coexist – No v10 new functions available

 CM8/9*

– Same as CM8/9 but system was already in ENFM8/9 or ENFM8*/9* or NFM – In DSG: CM8/9 & NFM8/9 can not coexist

– Objects created in ENFM8/9 or NFM can still be used

25 V8 NFM V9 NFM V10 CM8 V10 CM9 V10 ENFM8 V10 ENFM9 V10 NFM V10 ENFM8* V10 ENFM9* V10 CM8* V10 CM8* V10 CM9* V10 CM9*

(26)

DB2 z/OS Migration

 ENFM8/9

– In DSG: ENFM8/9 & NFM8/9 can not coexist – No v10 new functions available

 ENFM8/9*

– Same as ENFM8/9 but system was already in NFM (or in CM8*/9*) – In DSG: ENFM8*/9* & NFM8/9 can not coexist

– Objects created in NFM can still be used – Creating new NFM objects not possible

V8 NFM V9 NFM V10 CM8 V10 CM9 V10 ENFM8 V10 ENFM9 V10 NFM V10 ENFM8* V10 ENFM9* V10 CM8* V10 CM8* V10 CM9* V10 CM9*

(27)

© 2009 IBM Corporation

DB2 z/OS Migration

 NFM

– Catalog completely migrated – All new v10 functions available

 Customer stays in – CM weeks – ENFM minutes 27 V8 NFM V9 NFM V10 CM8 V10 CM9 V10 ENFM8 V10 ENFM9 V10 NFM V10 ENFM8* V10 ENFM9* V10 CM8* V10 CM8* V10 CM9* V10 CM9*

(28)

Planned Outages

 DB2 Outage

1. Direct any workload away from DB2 z/OS 2. Shut down DB2

3. Do changes 4. Restart DB2

5. Start accepting workloads again

6. Do 1-5 with every other member in DSG

Rolling Maintenance or Rolling IPLs

 CF Outage

– Move Structures to secondary CF  Rebuild

(29)

© 2009 IBM Corporation

Unplanned Outages – DB2

 New work is automatically rerouted to other member in DSG

 Transactions, tasks, queries are candidates for recovery

 Problem?

– DB2A may hold locks to resources on behalf of running transactions

 If those locks are global locks, then update locks are changed to retained locks

 No other access is allowed to these resources until changes are committed or backed out

 Resolve retained locks?  DB2A restart

29

DB2B

DB2A

Database

Availability in %

hr/yr

Sysplex

99,999

< 1

(30)

Only DB2 AS or IRLM failed?  Restart DB2

– (e.g. Using ARM)

 During restart retained locks are released

z/OS, CPC, LPAR, ... failed?

Problem: release retained locks as quickly as possible

But: IPL takes ≥ 30 mins

Solution: Start DB2A on another LPAR that is online and that is connected to CF (Cross-System Restart)

 Then, use Restart Light option

– Requires minimal resources

– Immediatly shuts down after releasing locks!

Unplanned Outages – DB2

(31)

© 2009 IBM Corporation

Unplanned Outages – CF

 Not a real problem

 In High Availability Scenarios CF is mirrored

 Switch to secondary CF in sub-second area

 Performance may be slow down a little bit but DB2 still works!

(32)

Flexibility

 Environement Change?  No App Change

– Portability: Execute App on more than one member – Frequent Commits

– Lock Avoidence: Return rows without holding locks – Concurrency: Execute more than one instance of an

app on different members at the same time

 Replace/Add/Remove Member in DB2 Data Sharing

– As shown in migration

– No problem except minimal performance loss as worst case

 Replace/Add/Remove LPAR in Parallel Sysplex

– Means that at least one DB2 member will changed

 see above

z/OS

Parallel Sysplex

DSG

App 2

Transaction Managers

Network

App 1

App n

DB2A

DB2n

SYSA

SYSn

(33)

© 2009 IBM Corporation

Questions? Comments?

(34)

DB2 Workload Entwicklung

 Weiterentwicklung eines existierenden Frameworks für Workloads

 Neuentwicklung von Workloads

 Umsetzung von Requirements in einem Entwicklungsprozess

 Erforderliche Kenntnisse: Java und Datenbanken (Grundkenntnisse)

 Spannende, abgeschlossene Aufgaben zur Eigenverantwortung

 Möglichkeit zur aktiven Mitgestaltung

Entwicklung /

Test-Automatisierung

 Testautomatisierung für ein Java

basiertes GUI oder eine commandline basierten UI

 Weiterentwicklung der bereits vorhandenen Testcases

 Implementierung von neuen

Anforderungen für das Framework

 Erforderliche Kenntnisse: Java, XML und Datenbanken (Grundkenntnisse)

 Mitarbeit in einem komplexen Software-Entwicklungsprojekt

 Möglichkeit zur aktiven Mitgestaltung

 ID: JO15356 / ID: JO12163

(35)

© 2009 IBM Corporation

zSummer University

 2 Wochen bezahlter Workshop

 Alles rund um System Z und dessen wichtigster Technologien – DB2 z/OS

– CICS – IMS

 Hands On Labs → Selbst auf z/OS arbeiten

29.08.2011 – 09.09.2011

ibm.com/de/entwicklung

References

Related documents

OS.) IRLM takes this action when all identified DBMSs have issued a QUIT request to the IRLM to terminate their active data sharing activity.. The message may also be issued by a

The request for increased fees shall be allowed if agreed to by the parties or the administrative judge may order increased fees where extrodinary time and effort is required based

12 © 2021 IBM Corporation z/OS Connect Server CICS DB2 DVM/VSAM z/OS LPAR Secure Gateway Client z Linux (Ubuntu 18.04) z/OS Connect Server CICS DB2 DVM/VSAM.. z/OS

• In data sharing, DB2 needs to synchronously write out the changed pages involved in index b-tree structure in certain order, this is to maintain index b- tree structure

• Increased profitability “Circle of trust” widens Data Data Warehouse Warehouse Business Business Analytics Analytics DB2 for z/OS DB2 for z/OS IMS IMS Information

z/OS Linux UNIX Windows DB2 Oracle MS SQL Server Extract Cleanse Transform Load Data Warehouse Linux z/VM InfoSphere Information Server Linux z/VM InfoSphere Warehouse z/OS DB2

- - Data Data Warehouse Warehouse Business Business Analytics Analytics DB2 for z/OS DB2 for z/OS IMS IMS Information Information Governance Governance Integration Integration...