SlideShare a Scribd company logo
1 of 44
Download to read offline
New Generation Oracle RAC 19c
Diagnosing Oracle RAC Performance Issues
Copyright © 2020, Oracle and/or its affiliates
Anil Nair
Sr Principal Product Manager,
Oracle Real Application Clusters (RAC) & ASM
@RACMasterPM
http://www.linkedin.com/in/anil-nair-01960b6
http://www.slideshare.net/AnilNair27/
Joining me today is Oracle RAC Performance Engineering Team
Elite Engineers with the charter to
• Instrument and measure key code areas
including cpu, memory usage between
releases including patches
• Provide ideas to improve scalability and
reduce reconfiguration time for High
Availability
• Using new OS features
• Threads vs Processes
• Poll vs Event
• Both on generic systems and Engineered
Systems like Exadata
• Improve Diagnosability by adding additional
statistics to AWR
How do I ask
Questions?
Please use the Q & A option in Zoom for
questions
Copyright © 2020, Oracle and/or its affiliates |
New Generation Oracle RAC Scalability and HA
New Apps based on Converged DB’s using IoT, Kafka, Blockchain & Traditional packaged Apps
Copyright © 2020, Oracle and/or its affiliates |
Private
Network
Failover
Private
Network
New Apps Traditional Apps
&
Oracle RAC provides HA and Scalability
Available and Active Active Instances scale Writes, Reads and Hybrid workloads
Private
Network
Failover
Private
Network
0
5000
10000
15000
20000
25000
30000
35000
40000
4 8 32 48 64 80
2035
4010
15520
22416
30016
37040
2 Nodes
3 Nodes
4 Nodes
5 Nodes
# of Cores
Users
*SAP certified SD Benchmark results
Copyright © 2020, Oracle and/or its affiliates |
SAP SD workload
New Generation Oracle RAC scales IoT workloads
Copyright © 2020, Oracle and/or its affiliates |
New Apps
https://www.oracle.com/a/tech/docs/wp-bp-for-iot-with-12c-
042017-3679918.pdf
IoT Workload
Oracle RAC Performance is dependent on Private Network Latency
• Oracle RAC utilizes private network to
synchronize changes in memory
• Private network is to be translated as a distinct
isolated low latency network
• Also important for security
• Communication on generic systems utilize
UDP with its own error correction mechanism
• Supports redundant network via OS NIC
bonding, HAIP
• Supports Network virtualization typically used
in hyper-converged infrastructure using
VLANs
• Ensure adequate QoS settings for private
network
Buffer
Cache
Shared
Pool
In-Memory
Misc
Total SGA
S
G
A
S
G
A
S
G
A
Buffer
Cache
Shared
Pool
In-Memory
Misc
Buffer
Cache
Shared
Pool
In-Memory
Misc
Shared
Pool
In-Memory
Misc
Copyright © 2020, Oracle and/or its affiliates |
Buffer
Cache
TCP vs UDP Communication
TCP UDP
Copyright © 2020, Oracle and/or its affiliates |
Message
Ack
Message
Ack
Message
Message
Message
Message
• In-built support for
Segment retransmission and flow control
• Ordered transmission
UDP is Stateless Protocol
• No flow control or retranmission
• No order
Oracle RAC UDP protocol improvements
• Oracle RAC implements it own state, sequence
control on top of UDP
• Process send and receive messages
acknowledge receipt of messages
• Processes periodically send special “side
channel message”
• If acknowledgement of special side channel
message is received before message, the lost
block counter is incremented, and message is
resent
• Lost blocks can be caused by
• Flaky private network
• High or no CPU
UDP
Copyright © 2020, Oracle and/or its affiliates |
Message
Message
Side Channel Message
Configure at least one or more Private Network
• Installer detects all networks and provides a
drop-down list with list of values to be chosen
• ASM Network can be combined with Private
network
• Post Installation, oifcfg can be used to
add/delete/modify private network
• Choosing multiple interfaces results in HAIP
being used
• For more details check out my slideshare
(https://www.slideshare.net/AnilNair27/s
mart-monitoring-how-does-oracle-rac-
manage-resource-state-ukoug19-
220887244)
$oifcfg getif
eth1 10.12.0.0 global cluster_interconnect
eth2 10.13.0.0 global asm
$oifcfg setif -global eth3/192.168.23.0:private
Copyright © 2020, Oracle and/or its affiliates |
Confirm correct private network is used – Alert log
Cluster Communication is configured to use IPs
from: GPnP
IP: 169.254.249.167 Subnet: 169.254.0.0
Relies on HAIP
Private Interface 'bondib0' configured from GPnP
for use as a private interconnect.
Relies on Bonding for Private network HA
IPCLW over UDP Oracle RDS/IP
Copyright © 2020, Oracle and/or its affiliates |
Confirm correct private network is used –AWR/ADDM
Copyright © 2020, Oracle and/or its affiliates |
ExadataGeneric systems
Detecting performance issues caused by lost blocks
lost blocks only
reported on
Instance 2
348 Lost
blocks
Copyright © 2020, Oracle and/or its affiliates |
NIC
Driver ,
IP stack
Context switch
IPCWire
usersys
Common cause resulting in Blocks lost
• Incorrectly sized UDP send recv buffers
• Check netstat -s' or 'netstat -su' for
"udpInOverflowsudpInOverflows",
"packet receive errors",
"fragments dropped" or
"outgoing packet drop"
• High CPU utilization caused by packet
fragmentation
• Check for netstat -s IP stat counters:
3104582 fragments dropped after timeout
34550600 reassemblies required
8961342 packets reassembled ok
3104582 packet reassembles failed.
• Check /proc/sys/net/ipv4/
ipfrag_low_thresh (default = 196608)
• ipfrag_high_thresh (default = 262144)
• Network Checksum errors causing send (tx) /
receive (tx) errors
• Mismatched MTU sizes
• Ensure all interfaces and switch settings
can support Jumbo frames if possible
• Ensure all private interconnect links are layer 2
direct attached to switch/switches
• Ipfilter configuration
• Full Duplex or Duplex mode mismatch
• Flow control mismatch between interface and
Links
• Default to ON
Additional details in Troubleshooting gc block
lost and Poor Network Performance in a
RAC Environment (Doc ID 563566.1)
Copyright © 2020, Oracle and/or its affiliates |
Tools to help check network performance
• ORAchk
• iperf/iperf3
iperf3 –s
iperf3 -u -c 192.168.18.xx -l 8K -b 5G -w 1M -t 120
-u UDP, -b bandwidth –w window –t time –l block size
Copyright © 2020, Oracle and/or its affiliates |
Oracle RAC Performance
Troubleshooting Tips & New Generation Performance Internals
Atsushi Morimura
RAC Performance Engineer
Oracle RAC Development
October 2020
Copyright © 2020, Oracle and/or its affiliates
17
5 years
RDBMS Sales Consulting
14 years
RAC Development
Today’s Agenda
Copyright © 2020, Oracle and/or its affiliates
18
Troubleshooting Tips from a Performance Engineer
New Generation Oracle RAC Performance Internals
Question & Answers
Troubleshooting Tips from a
Performance Engineer
Copyright © 2020, Oracle and/or its affiliates
19
2-way Block Transfer
Foreground sends request to
remote LMS, LMS sends a data
block back.
• Master is local, holder is
remote.
• Master is remote, and is also
the holder.
3-way Block Transfer
Foreground sends request to
remote LMS, LMS forwards
request to holder LMS, holder
LMS sends a data block back.
• Master is remote, holder is on
another remote instance.
2-way Lock Grant
Foreground sends request to
remote LMS, LMS sends a lock
grant back.
• Master is remote, buffer is not
held anywhere.
• Data is read from disk.
Common Cache Fusion Messaging Patterns
Copyright © 2020, Oracle and/or its affiliates20
Instance 2Instance 1
FG LMS
Request
Data Block Transfer
Instance 2Instance 1
FG LMS
Request
Lock GrantDisk I/O
No matter the size of the cluster,
requests are always satisfied in ≤ 3 hops
Instance 2Instance 3
LMS LMS
RequestData Block Transfer
Instance 1
FG
Forward
Waiting for a buffer (or lock grant) transfer from a remote instance
Common Cache Fusion Wait Events
Copyright © 2020, Oracle and/or its affiliates21
gc [cr|current] [block|grant] [2-way|3-way|busy|congested]
Short for
“Global Cache”
Type of block requested:
• CR: consistent read
• Current: current pin
Request outcome:
(what was returned
from server)
Performance hint
The “performance hint”
• “2-way” / “3-way”
• Received an immediate response back from the master or holder instance.
• “busy”
• If LMS is unable to immediately service the request, processing gets queued.
- A dirty buffer had to be sent, so a REDO log flush was initiated.
- The buffer was pinned by another process.
- The buffer lock was held in an incompatible mode.
- AWR will help explain the reason.
• “congested”
• Request was processed immediately but was stuck in LMS.
- If we exceed a 1 ms threshold, the wait will be marked “congested”.
• Usually indicates LMS starvation.
Common Cache Fusion Wait Events
Copyright © 2020, Oracle and/or its affiliates22
Instance 2Instance 1
FG LMS
Request
Data Block Transfer REDO log flush
Details, expectations and probable causes for abnormalities
Common Cache Fusion Wait Events
Copyright © 2020, Oracle and/or its affiliates23
gc [cr|current] block [2|3]-way
• Expected Latency: < 1 ms (< 100 us on Exadata for 2-way).
• Reasons for abnormal : Interconnect congestion , high CPU load and priority inversion , LMS not in RT.
gc [cr|current] block busy
• Expected latency : log file parallel write + latency of immediate transfer.
• Reasons for abnormal: log flush time, application contention on hot blocks, high CPU load and priority inversion.
gc [cr|current] block congested
• We should not see this event on healthy systems.
• Reasons for abnormal: Same as [2|3]-way waits.
Concurrency waits for globally-busy buffers
Common Cache Fusion Wait Events
Copyright © 2020, Oracle and/or its affiliates24
gc buffer busy [acquire|release]
• “ACQUIRE”: someone wants to read a remote block, and the request has not yet completed.
• The remote block transfer is likely in-process by another local client.
• “RELEASE”: a block got released (pinged away) because it was requested by another instance.
• Upon completion of this wait, the client may be able to pin the buffer right away (since the
buffer has subsequently been ACQUIRE’d by another client), or in some cases, the lock request
will need to be re-started again.
• Don’t confuse these with the “gc [cr|current] [block|grant] busy” waits.
• If there is high concurrency, there will be lots of “buffer busy” waits and a lot fewer transfer waits,
but the root of the wait are the transfers.
Other common wait events
Common Cache Fusion Wait Events
Copyright © 2020, Oracle and/or its affiliates25
gc [cr|current] request
• Used for in-process buffer requests (reported in ASH, hang analyze, etc. but never in AWR).
• Wait event is “fixed-up” upon completion to:
• “gc [cr|current] [block|grant] [2-way|3-way|busy|congested]”
gc [cr|current] multi block [request|grant|mixed]
• A batch of requests were initiated by the client.
• “request” is used when all requests were fulfilled via block transfers.
• “grant” is used when all requests were fulfilled via lock grants (disk I/O’s will follow).
• “mixed” is used when we got a mixture of both.
gc [cr|current] block direct read
• Exadata only (18c+).
• RDMA-read of a remote buffer.
Common reasons and solutions
Common Wait Event Dependencies
Copyright © 2020, Oracle and/or its affiliates26
log file parallel write à gc [cr|current] block busy
• Log writes on sender instance block cache fusion sends.
• Generally log IO related.
• Tune DML schema or SQL to reduce hot blocks.
Often associated with other wait events
• gc [cr|current] block busy à enq: TX – index contention
• gc [cr|current] block busy à enq: TX - row contention
• Dependencies are captured in ASH, based on session blocker/blocked information.
gc [cr|current] block busy à gc buffer busy [acquire|release]
• A session tries to pin a buffer which is/was pinned by another session waiting for a
Cache Fusion transfer from another node.
• gc buffer busy is indicative of serialization.
• Fix root cause (e.g. slow log writes) or remove hot spots.
Correlated/Supporting OS and AWR statistics
Common Cache Fusion Wait Events
Copyright © 2020, Oracle and/or its affiliates27
gc [cr|current] block [2|3]-way à
• Run queue length and load average (either server side OR client side).
• LMS priority changes.
• Signs of congestion on interconnect.
gc [cr|current] block busy à
• Log file parallel write and log file sync in other instances.
• Pin and Flush statistics in other instances.
gc [cr|current] block congested à
• LMS CPU utilization.
• Receive queue time.
Copyright © 2020, Oracle and/or its affiliates
28
Copyright © 2020, Oracle and/or its affiliates
29
Long “Flush” times usually indicate log I/O issues.
Long “Pins” times may indicate:
ü CPU load on serving instances, leading to slow release of pins by foregrounds
ü Priority inversion on serving instance (preempted while holding an exclusive pin)
ü Inefficient code where pins are held for long (contact Oracle support)
Copyright © 2020, Oracle and/or its affiliates
30
Copyright © 2020, Oracle and/or its affiliates31
New Generation Oracle RAC
Performance Internals
•Exafusion
•Zero copy block sends
•Smart fusion block transfer
•Index contention optimizations
•CR & remastering servers
•Service oriented buffer cache
•Global enqueue S-lock
•RDMA for undo blocks
•In-memory commit cache
•Scalable sequences
•PDB lock domains
•Oracle RAC Sharding
•Fast index split
•PMEM commit accelerator (X8M)
•RDMA for data block reads
•RDMA for undo header blocks
•Broadcast on Commit RDMA
•More index contention optimizations
Recent Performance Optimizations for RAC
Copyright © 2020, Oracle and/or its affiliates32
* Exadata specific optimizations
More details at: https://www.oracle.com/a/otn/docs/oracle-rac-
cache-fusion-performance-optimization-on-exadata-wp.pdf Future
• Remote Direct Memory Access (RDMA) is the ability for one computer to
access data from a remote computer without any OS or CPU involvement
• Network card directly reads/writes memory with no extra copying or
buffering and very low latency
Exadata Uses RDMA for Extreme Performance
Copyright © 2020, Oracle and/or its affiliates
33
DRAM
CPUHCA
Server #2
DRAM
CPU HCA
Server #1
RDMA Write
RDMA Read
RDMA can eliminate:
• All server-side processing & context switches (up to 80% of overall round-trip time)
• No server-side queuing effects, LMS can be completely bottlenecked, and we’ll be unaffected
• Client side context switches
RDMA is now supported for the following operations:
• Undo block reads (18c)
• Shared data block reads (Future)
• Undo header reads (Future)
• In-memory commit cache lookups (Future)
RDMA for Cache Fusion
Copyright © 2020, Oracle and/or its affiliates
34
Master is local,
Holder is remote
• Removes all LMS processing
Master is remote,
and is also the Holder
• Cheaper processing in LMS
Master is remote,
Holder is another remote instance
• Remove LMS-LMS messaging
• Does not invoke holder LMS
New Messaging Patterns With Shared Data Block RDMA
Copyright © 2020, Oracle and/or its affiliates35
Instance 2Instance 1
FG LMS
1. Request
2. Data Block Transfer
Instance 2Instance 1
FG LMS
1. Request
2. Data Block Transfer
Instance 2
Instance 1
Direct
Read
SGAFG
Instance 1 3. Direct
Read
Instance 2
1. Request
2. Grant
SGA
LMS
FG
3. Data Block Transfer
Instance 2Instance 3
1. Request
Instance 1
2. Forward
LMS
FG
LMS
3. Direct Read
Instance 2Instance 3
1. Request
Instance 1
FG
SGA LMS
2. Grant
Example from a system where LMS is NOT saturated
• Cache Fusion averages are healthy, at around ~120 µs for 2-way and ~200 µs for 3-way transfers
• RDMA is very fast at 8 µs à 15x faster
Cache Fusion RDMA Benefits
Copyright © 2020, Oracle and/or its affiliates36
Total
%Time Wait Waits % DB
Event Waits -outs Time (s) Avg wait /txn time
-------------------------- ----------- ----- -------- --------- -------- ------
cell single block physical 57,904 16 280.33us 1.6 25.4
log file sync 35,778 13 355.15us 1.0 19.9
gc cr grant 2-way 75,206 8 112.77us 2.1 13.3
gc current grant 2-way 13,855 1 106.73us 0.4 2.3
gc cr block 2-way 10,213 1 122.94us 0.3 2.0
gc cr block 3-way 4,946 1 202.63us 0.1 1.6
gc current grant busy 10,494 1 86.34us 0.3 1.4
Sync ASM rebalance 25 1 20.99ms 0.0 .8
gc current block direct read 57,550 0 8.20us 1.6 .7
gc current block 2-way 2,567 0 111.98us 0.1 .4
gc current block 3-way 1,271 0 181.92us 0.0 .4
Example from a system where LMS IS saturated
• With higher load, LMS is now a bottleneck with lots of congested waits
• RDMA is still at 15µs
• Slower than earlier due to client-side scheduling delays
Cache Fusion RDMA Benefits
Copyright © 2020, Oracle and/or its affiliates37
Total
%Time Wait Waits % DB
Event Waits -outs Time (s) Avg wait /txn time
-------------------------- ----------- ----- -------- --------- -------- ------
log file sync 944,248 782 828.24us 1.0 16.4
gc cr grant 2-way 1,713,004 778 453.94us 1.8 16.3
cell single block physical 1,855,674 743 400.15us 2.0 15.6
gc cr grant congested 83,226 412 4.94ms 0.1 8.6
gc current grant busy 232,165 325 1.40ms 0.2 6.8
gc cr block congested 42,106 217 5.16ms 0.0 4.6
gc cr block 2-way 438,178 203 464.18us 0.5 4.3
gc cr block 3-way 214,811 186 866.67us 0.2 3.9
(snip)
gc current block direct read 864,609 13 15.11us 0.9 .3
Various optimizations have been implemented to help improve scalability for these workloads
• Keep branch block at splitter (12c)
• Make sure splits complete as quickly as possible by preventing branch blocks from being pinged away
• Scalable Sequences (18c)
• Sequence values are automatically prefixed with an instance-specific value
• Oracle RAC Sharding (18c)
• Leverage the Oracle Sharding direct routing API’s to implement data-dependent-routing based on an
application-supplied partitioning key
• Delayed ping (19c)
• Allow local sessions to make more changes to a block while REDO I/O is still pending
• This will help increase “local” changes that can be done without Cache Fusion transfers
• Fast index split (19c)
• Allow sessions to wait for leaf block split completion in the buffer cache, instead of global enqueues
Optimizations for Right Growing Index Workloads
Copyright © 2020, Oracle and/or its affiliates
38
PDB Lock Domains Improve Performance
Copyright © 2020, Oracle and/or its affiliates39
Instance 3
Instance 2
Instance 1
Container Database (CDB)
PDB 1 PDB 2 PDB 3
RAC locks are isolated per-PDB
• Lock masters are distributed among the instances
where the PDB is open
• PDB 1 is a “singleton”; it is only open on instance 1
• All locks for PDB 1 are mastered on instance 1, so
there is 100% locality and no Cache Fusion
messaging
• If more compute is needed, one can dynamically
open PDB 1 on instance 2 and/or 3
• Very common use-case in Autonomous Database
• PDB 2 and 3 are RAC clusters
Please set target_pdbs for best performance
(MOS note: 2644243.1)
RAC (PDB) reconfiguration is only necessary if:
• The PDB is opened or closed on another CDB instance
• If PDB 1 opens on instance 2, RAC reconfiguration is
invoked for PDB 1
• A CDB instance where the PDB is open goes down
(either planed or unplanned)
• If CDB instance 2 goes down, RAC reconfiguration is
invoked for PDB’s 2 and 3
Impact is isolated to the affected PDB’s only:
• PDB 1 is unaffected when CDB instance 3 crashes
• PDB 2 and 3 are unaffected when PDB 1 is opened on CDB
instance 2
• No PDB’s are affected when a 4th CDB instance is brought up
PDB Lock Domains Improve Failure Isolation
Copyright © 2020, Oracle and/or its affiliates
40
Instance 3
Instance 2
Instance 1
Container Database (CDB)
PDB 1 PDB 2 PDB 3
Copyright © 2020, Oracle and/or its affiliates
41
Questions?
Thank you
Atsushi Morimura
RAC Performance Engineer
Oracle RAC Development
Copyright © 2020, Oracle and/or its affiliates42
New Generation Oracle RAC
High Availability and Scalability for both
• Traditional Applications
• New Application Paradigms
Provides a single converged and secure
Database for all your application needs
While ensuring complete Isolation between the
PDBs
Copyright © 2020, Oracle and/or its affiliates |
New Generation Oracle RAC Performance

More Related Content

What's hot

Oracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion EditionOracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion EditionMarkus Michalewicz
 
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesBest Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesMarkus Michalewicz
 
Oracle data guard for beginners
Oracle data guard for beginnersOracle data guard for beginners
Oracle data guard for beginnersPini Dibask
 
MAA for Oracle Database, Exadata and the Cloud
MAA for Oracle Database, Exadata and the CloudMAA for Oracle Database, Exadata and the Cloud
MAA for Oracle Database, Exadata and the CloudMarkus Michalewicz
 
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 VersionOracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 VersionMarkus Michalewicz
 
MAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19cMAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19cMarkus Michalewicz
 
Exadata master series_asm_2020
Exadata master series_asm_2020Exadata master series_asm_2020
Exadata master series_asm_2020Anil Nair
 
The Oracle RAC Family of Solutions - Presentation
The Oracle RAC Family of Solutions - PresentationThe Oracle RAC Family of Solutions - Presentation
The Oracle RAC Family of Solutions - PresentationMarkus Michalewicz
 
Oracle db performance tuning
Oracle db performance tuningOracle db performance tuning
Oracle db performance tuningSimon Huang
 
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the CloudOracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the CloudMarkus Michalewicz
 
How to Use EXAchk Effectively to Manage Exadata Environments
How to Use EXAchk Effectively to Manage Exadata EnvironmentsHow to Use EXAchk Effectively to Manage Exadata Environments
How to Use EXAchk Effectively to Manage Exadata EnvironmentsSandesh Rao
 
Oracle GoldenGate Performance Tuning
Oracle GoldenGate Performance TuningOracle GoldenGate Performance Tuning
Oracle GoldenGate Performance TuningBobby Curtis
 
What to Expect From Oracle database 19c
What to Expect From Oracle database 19cWhat to Expect From Oracle database 19c
What to Expect From Oracle database 19cMaria Colgan
 
Oracle Data Guard basics and how to create manually 18c plus
Oracle Data Guard basics and how to create manually 18c plusOracle Data Guard basics and how to create manually 18c plus
Oracle Data Guard basics and how to create manually 18c plusAkira Kusakabe
 
Dataguard presentation
Dataguard presentationDataguard presentation
Dataguard presentationVimlendu Kumar
 
Oracle Database in-Memory Overivew
Oracle Database in-Memory OverivewOracle Database in-Memory Overivew
Oracle Database in-Memory OverivewMaria Colgan
 
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive PresentationNabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive PresentationNabil Nawaz
 

What's hot (20)

Oracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion EditionOracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion Edition
 
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesBest Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
 
Oracle data guard for beginners
Oracle data guard for beginnersOracle data guard for beginners
Oracle data guard for beginners
 
Oracle GoldenGate
Oracle GoldenGate Oracle GoldenGate
Oracle GoldenGate
 
MAA for Oracle Database, Exadata and the Cloud
MAA for Oracle Database, Exadata and the CloudMAA for Oracle Database, Exadata and the Cloud
MAA for Oracle Database, Exadata and the Cloud
 
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 VersionOracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
 
MAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19cMAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19c
 
Data Guard Architecture & Setup
Data Guard Architecture & SetupData Guard Architecture & Setup
Data Guard Architecture & Setup
 
Exadata master series_asm_2020
Exadata master series_asm_2020Exadata master series_asm_2020
Exadata master series_asm_2020
 
The Oracle RAC Family of Solutions - Presentation
The Oracle RAC Family of Solutions - PresentationThe Oracle RAC Family of Solutions - Presentation
The Oracle RAC Family of Solutions - Presentation
 
Oracle db performance tuning
Oracle db performance tuningOracle db performance tuning
Oracle db performance tuning
 
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the CloudOracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
 
How to Use EXAchk Effectively to Manage Exadata Environments
How to Use EXAchk Effectively to Manage Exadata EnvironmentsHow to Use EXAchk Effectively to Manage Exadata Environments
How to Use EXAchk Effectively to Manage Exadata Environments
 
Oracle GoldenGate Performance Tuning
Oracle GoldenGate Performance TuningOracle GoldenGate Performance Tuning
Oracle GoldenGate Performance Tuning
 
What to Expect From Oracle database 19c
What to Expect From Oracle database 19cWhat to Expect From Oracle database 19c
What to Expect From Oracle database 19c
 
Oracle Data Guard basics and how to create manually 18c plus
Oracle Data Guard basics and how to create manually 18c plusOracle Data Guard basics and how to create manually 18c plus
Oracle Data Guard basics and how to create manually 18c plus
 
Dataguard presentation
Dataguard presentationDataguard presentation
Dataguard presentation
 
Oracle Database in-Memory Overivew
Oracle Database in-Memory OverivewOracle Database in-Memory Overivew
Oracle Database in-Memory Overivew
 
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive PresentationNabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
 
Oracle RAC 12c Overview
Oracle RAC 12c OverviewOracle RAC 12c Overview
Oracle RAC 12c Overview
 

Similar to New Generation Oracle RAC Performance

Oow2007 performance
Oow2007 performanceOow2007 performance
Oow2007 performanceRicky Zhu
 
Extreme Availability using Oracle 12c Features: Your very last system shutdown?
Extreme Availability using Oracle 12c Features: Your very last system shutdown?Extreme Availability using Oracle 12c Features: Your very last system shutdown?
Extreme Availability using Oracle 12c Features: Your very last system shutdown?Toronto-Oracle-Users-Group
 
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...Amazon Web Services
 
Scaling paypal workloads with oracle rac ss
Scaling paypal workloads with oracle rac ssScaling paypal workloads with oracle rac ss
Scaling paypal workloads with oracle rac ssAnil Nair
 
Achieving Continuous Availability for Your Applications with Oracle MAA
Achieving Continuous Availability for Your Applications with Oracle MAAAchieving Continuous Availability for Your Applications with Oracle MAA
Achieving Continuous Availability for Your Applications with Oracle MAAMarkus Michalewicz
 
MySQL Manchester TT - Performance Tuning
MySQL Manchester TT  - Performance TuningMySQL Manchester TT  - Performance Tuning
MySQL Manchester TT - Performance TuningMark Swarbrick
 
Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]
Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]
Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]Markus Michalewicz
 
MySQL Replication Performance in the Cloud
MySQL Replication Performance in the CloudMySQL Replication Performance in the Cloud
MySQL Replication Performance in the CloudVitor Oliveira
 
VMworld 2014: Extreme Performance Series
VMworld 2014: Extreme Performance Series VMworld 2014: Extreme Performance Series
VMworld 2014: Extreme Performance Series VMworld
 
(CMP402) Amazon EC2 Instances Deep Dive
(CMP402) Amazon EC2 Instances Deep Dive(CMP402) Amazon EC2 Instances Deep Dive
(CMP402) Amazon EC2 Instances Deep DiveAmazon Web Services
 
A5 oracle exadata-the game changer for online transaction processing data w...
A5   oracle exadata-the game changer for online transaction processing data w...A5   oracle exadata-the game changer for online transaction processing data w...
A5 oracle exadata-the game changer for online transaction processing data w...Dr. Wilfred Lin (Ph.D.)
 
Ingestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache ApexIngestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache ApexApache Apex
 
20160503 Amazed by AWS | Tips about Performance on AWS
20160503 Amazed by AWS | Tips about Performance on AWS20160503 Amazed by AWS | Tips about Performance on AWS
20160503 Amazed by AWS | Tips about Performance on AWSAmazon Web Services Korea
 
Apache Spark At Scale in the Cloud
Apache Spark At Scale in the CloudApache Spark At Scale in the Cloud
Apache Spark At Scale in the CloudRose Toomey
 
Apache Spark At Scale in the Cloud
Apache Spark At Scale in the CloudApache Spark At Scale in the Cloud
Apache Spark At Scale in the CloudDatabricks
 
Database failover from client perspective
Database failover from client perspectiveDatabase failover from client perspective
Database failover from client perspectivePriit Piipuu
 
APIs, STOP Polling, lets go Streaming
APIs, STOP Polling, lets go StreamingAPIs, STOP Polling, lets go Streaming
APIs, STOP Polling, lets go StreamingPhil Wilkins
 

Similar to New Generation Oracle RAC Performance (20)

Oow2007 performance
Oow2007 performanceOow2007 performance
Oow2007 performance
 
Extreme Availability using Oracle 12c Features: Your very last system shutdown?
Extreme Availability using Oracle 12c Features: Your very last system shutdown?Extreme Availability using Oracle 12c Features: Your very last system shutdown?
Extreme Availability using Oracle 12c Features: Your very last system shutdown?
 
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
 
Scaling paypal workloads with oracle rac ss
Scaling paypal workloads with oracle rac ssScaling paypal workloads with oracle rac ss
Scaling paypal workloads with oracle rac ss
 
Achieving Continuous Availability for Your Applications with Oracle MAA
Achieving Continuous Availability for Your Applications with Oracle MAAAchieving Continuous Availability for Your Applications with Oracle MAA
Achieving Continuous Availability for Your Applications with Oracle MAA
 
MySQL Manchester TT - Performance Tuning
MySQL Manchester TT  - Performance TuningMySQL Manchester TT  - Performance Tuning
MySQL Manchester TT - Performance Tuning
 
Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]
Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]
Oracle RAC 12c Practical Performance Management and Tuning OOW13 [CON8825]
 
MySQL Replication Performance in the Cloud
MySQL Replication Performance in the CloudMySQL Replication Performance in the Cloud
MySQL Replication Performance in the Cloud
 
VMworld 2014: Extreme Performance Series
VMworld 2014: Extreme Performance Series VMworld 2014: Extreme Performance Series
VMworld 2014: Extreme Performance Series
 
(CMP402) Amazon EC2 Instances Deep Dive
(CMP402) Amazon EC2 Instances Deep Dive(CMP402) Amazon EC2 Instances Deep Dive
(CMP402) Amazon EC2 Instances Deep Dive
 
A5 oracle exadata-the game changer for online transaction processing data w...
A5   oracle exadata-the game changer for online transaction processing data w...A5   oracle exadata-the game changer for online transaction processing data w...
A5 oracle exadata-the game changer for online transaction processing data w...
 
Ingestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache ApexIngestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache Apex
 
20160503 Amazed by AWS | Tips about Performance on AWS
20160503 Amazed by AWS | Tips about Performance on AWS20160503 Amazed by AWS | Tips about Performance on AWS
20160503 Amazed by AWS | Tips about Performance on AWS
 
Troubleshooting Storage Devices Using vRealize Operations (formerly vC Ops)
Troubleshooting Storage Devices Using vRealize Operations (formerly vC Ops)Troubleshooting Storage Devices Using vRealize Operations (formerly vC Ops)
Troubleshooting Storage Devices Using vRealize Operations (formerly vC Ops)
 
con8832-cloudha-2811114.pdf
con8832-cloudha-2811114.pdfcon8832-cloudha-2811114.pdf
con8832-cloudha-2811114.pdf
 
Session 307 ravi pendekanti engineered systems
Session 307  ravi pendekanti engineered systemsSession 307  ravi pendekanti engineered systems
Session 307 ravi pendekanti engineered systems
 
Apache Spark At Scale in the Cloud
Apache Spark At Scale in the CloudApache Spark At Scale in the Cloud
Apache Spark At Scale in the Cloud
 
Apache Spark At Scale in the Cloud
Apache Spark At Scale in the CloudApache Spark At Scale in the Cloud
Apache Spark At Scale in the Cloud
 
Database failover from client perspective
Database failover from client perspectiveDatabase failover from client perspective
Database failover from client perspective
 
APIs, STOP Polling, lets go Streaming
APIs, STOP Polling, lets go StreamingAPIs, STOP Polling, lets go Streaming
APIs, STOP Polling, lets go Streaming
 

More from Anil Nair

Smart monitoring how does oracle rac manage resource, state ukoug19
Smart monitoring how does oracle rac manage resource, state ukoug19Smart monitoring how does oracle rac manage resource, state ukoug19
Smart monitoring how does oracle rac manage resource, state ukoug19Anil Nair
 
Using Machine Learning to Debug complex Oracle RAC Issues
Using Machine Learning  to Debug complex Oracle RAC IssuesUsing Machine Learning  to Debug complex Oracle RAC Issues
Using Machine Learning to Debug complex Oracle RAC IssuesAnil Nair
 
Rac 12c rel2_operational_best_practices_sangam_2017_as_pdf
Rac 12c rel2_operational_best_practices_sangam_2017_as_pdfRac 12c rel2_operational_best_practices_sangam_2017_as_pdf
Rac 12c rel2_operational_best_practices_sangam_2017_as_pdfAnil Nair
 
Using Machine Learning to Debug Oracle RAC Issues
Using Machine Learning to Debug Oracle RAC IssuesUsing Machine Learning to Debug Oracle RAC Issues
Using Machine Learning to Debug Oracle RAC IssuesAnil Nair
 
Rac 12c rel2_operational_best_practices_sangam_2017
Rac 12c rel2_operational_best_practices_sangam_2017Rac 12c rel2_operational_best_practices_sangam_2017
Rac 12c rel2_operational_best_practices_sangam_2017Anil Nair
 
New availability features in oracle rac 12c release 2 anair ss
New availability features in oracle rac 12c release 2 anair   ssNew availability features in oracle rac 12c release 2 anair   ss
New availability features in oracle rac 12c release 2 anair ssAnil Nair
 
Collaborate 17 Oracle RAC 12cRel 2 Best Practices
Collaborate 17 Oracle RAC 12cRel 2 Best PracticesCollaborate 17 Oracle RAC 12cRel 2 Best Practices
Collaborate 17 Oracle RAC 12cRel 2 Best PracticesAnil Nair
 
Step by Step instructions to install Cluster Domain deployment model
Step by Step instructions to install Cluster Domain deployment modelStep by Step instructions to install Cluster Domain deployment model
Step by Step instructions to install Cluster Domain deployment modelAnil Nair
 
Anil nair rac_internals_sangam_2016
Anil nair rac_internals_sangam_2016Anil nair rac_internals_sangam_2016
Anil nair rac_internals_sangam_2016Anil Nair
 
Con8780 nair rac_best_practices_final_without_12_2content
Con8780 nair rac_best_practices_final_without_12_2contentCon8780 nair rac_best_practices_final_without_12_2content
Con8780 nair rac_best_practices_final_without_12_2contentAnil Nair
 

More from Anil Nair (10)

Smart monitoring how does oracle rac manage resource, state ukoug19
Smart monitoring how does oracle rac manage resource, state ukoug19Smart monitoring how does oracle rac manage resource, state ukoug19
Smart monitoring how does oracle rac manage resource, state ukoug19
 
Using Machine Learning to Debug complex Oracle RAC Issues
Using Machine Learning  to Debug complex Oracle RAC IssuesUsing Machine Learning  to Debug complex Oracle RAC Issues
Using Machine Learning to Debug complex Oracle RAC Issues
 
Rac 12c rel2_operational_best_practices_sangam_2017_as_pdf
Rac 12c rel2_operational_best_practices_sangam_2017_as_pdfRac 12c rel2_operational_best_practices_sangam_2017_as_pdf
Rac 12c rel2_operational_best_practices_sangam_2017_as_pdf
 
Using Machine Learning to Debug Oracle RAC Issues
Using Machine Learning to Debug Oracle RAC IssuesUsing Machine Learning to Debug Oracle RAC Issues
Using Machine Learning to Debug Oracle RAC Issues
 
Rac 12c rel2_operational_best_practices_sangam_2017
Rac 12c rel2_operational_best_practices_sangam_2017Rac 12c rel2_operational_best_practices_sangam_2017
Rac 12c rel2_operational_best_practices_sangam_2017
 
New availability features in oracle rac 12c release 2 anair ss
New availability features in oracle rac 12c release 2 anair   ssNew availability features in oracle rac 12c release 2 anair   ss
New availability features in oracle rac 12c release 2 anair ss
 
Collaborate 17 Oracle RAC 12cRel 2 Best Practices
Collaborate 17 Oracle RAC 12cRel 2 Best PracticesCollaborate 17 Oracle RAC 12cRel 2 Best Practices
Collaborate 17 Oracle RAC 12cRel 2 Best Practices
 
Step by Step instructions to install Cluster Domain deployment model
Step by Step instructions to install Cluster Domain deployment modelStep by Step instructions to install Cluster Domain deployment model
Step by Step instructions to install Cluster Domain deployment model
 
Anil nair rac_internals_sangam_2016
Anil nair rac_internals_sangam_2016Anil nair rac_internals_sangam_2016
Anil nair rac_internals_sangam_2016
 
Con8780 nair rac_best_practices_final_without_12_2content
Con8780 nair rac_best_practices_final_without_12_2contentCon8780 nair rac_best_practices_final_without_12_2content
Con8780 nair rac_best_practices_final_without_12_2content
 

Recently uploaded

Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
An introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxAn introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxPurva Nikam
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 

Recently uploaded (20)

Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
An introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxAn introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptx
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 

New Generation Oracle RAC Performance

  • 1. New Generation Oracle RAC 19c Diagnosing Oracle RAC Performance Issues Copyright © 2020, Oracle and/or its affiliates Anil Nair Sr Principal Product Manager, Oracle Real Application Clusters (RAC) & ASM @RACMasterPM http://www.linkedin.com/in/anil-nair-01960b6 http://www.slideshare.net/AnilNair27/
  • 2. Joining me today is Oracle RAC Performance Engineering Team Elite Engineers with the charter to • Instrument and measure key code areas including cpu, memory usage between releases including patches • Provide ideas to improve scalability and reduce reconfiguration time for High Availability • Using new OS features • Threads vs Processes • Poll vs Event • Both on generic systems and Engineered Systems like Exadata • Improve Diagnosability by adding additional statistics to AWR
  • 3. How do I ask Questions? Please use the Q & A option in Zoom for questions Copyright © 2020, Oracle and/or its affiliates |
  • 4. New Generation Oracle RAC Scalability and HA New Apps based on Converged DB’s using IoT, Kafka, Blockchain & Traditional packaged Apps Copyright © 2020, Oracle and/or its affiliates | Private Network Failover Private Network New Apps Traditional Apps &
  • 5. Oracle RAC provides HA and Scalability Available and Active Active Instances scale Writes, Reads and Hybrid workloads Private Network Failover Private Network 0 5000 10000 15000 20000 25000 30000 35000 40000 4 8 32 48 64 80 2035 4010 15520 22416 30016 37040 2 Nodes 3 Nodes 4 Nodes 5 Nodes # of Cores Users *SAP certified SD Benchmark results Copyright © 2020, Oracle and/or its affiliates | SAP SD workload
  • 6. New Generation Oracle RAC scales IoT workloads Copyright © 2020, Oracle and/or its affiliates | New Apps https://www.oracle.com/a/tech/docs/wp-bp-for-iot-with-12c- 042017-3679918.pdf IoT Workload
  • 7. Oracle RAC Performance is dependent on Private Network Latency • Oracle RAC utilizes private network to synchronize changes in memory • Private network is to be translated as a distinct isolated low latency network • Also important for security • Communication on generic systems utilize UDP with its own error correction mechanism • Supports redundant network via OS NIC bonding, HAIP • Supports Network virtualization typically used in hyper-converged infrastructure using VLANs • Ensure adequate QoS settings for private network Buffer Cache Shared Pool In-Memory Misc Total SGA S G A S G A S G A Buffer Cache Shared Pool In-Memory Misc Buffer Cache Shared Pool In-Memory Misc Shared Pool In-Memory Misc Copyright © 2020, Oracle and/or its affiliates | Buffer Cache
  • 8. TCP vs UDP Communication TCP UDP Copyright © 2020, Oracle and/or its affiliates | Message Ack Message Ack Message Message Message Message • In-built support for Segment retransmission and flow control • Ordered transmission UDP is Stateless Protocol • No flow control or retranmission • No order
  • 9. Oracle RAC UDP protocol improvements • Oracle RAC implements it own state, sequence control on top of UDP • Process send and receive messages acknowledge receipt of messages • Processes periodically send special “side channel message” • If acknowledgement of special side channel message is received before message, the lost block counter is incremented, and message is resent • Lost blocks can be caused by • Flaky private network • High or no CPU UDP Copyright © 2020, Oracle and/or its affiliates | Message Message Side Channel Message
  • 10. Configure at least one or more Private Network • Installer detects all networks and provides a drop-down list with list of values to be chosen • ASM Network can be combined with Private network • Post Installation, oifcfg can be used to add/delete/modify private network • Choosing multiple interfaces results in HAIP being used • For more details check out my slideshare (https://www.slideshare.net/AnilNair27/s mart-monitoring-how-does-oracle-rac- manage-resource-state-ukoug19- 220887244) $oifcfg getif eth1 10.12.0.0 global cluster_interconnect eth2 10.13.0.0 global asm $oifcfg setif -global eth3/192.168.23.0:private Copyright © 2020, Oracle and/or its affiliates |
  • 11. Confirm correct private network is used – Alert log Cluster Communication is configured to use IPs from: GPnP IP: 169.254.249.167 Subnet: 169.254.0.0 Relies on HAIP Private Interface 'bondib0' configured from GPnP for use as a private interconnect. Relies on Bonding for Private network HA IPCLW over UDP Oracle RDS/IP Copyright © 2020, Oracle and/or its affiliates |
  • 12. Confirm correct private network is used –AWR/ADDM Copyright © 2020, Oracle and/or its affiliates | ExadataGeneric systems
  • 13. Detecting performance issues caused by lost blocks lost blocks only reported on Instance 2 348 Lost blocks Copyright © 2020, Oracle and/or its affiliates | NIC Driver , IP stack Context switch IPCWire usersys
  • 14. Common cause resulting in Blocks lost • Incorrectly sized UDP send recv buffers • Check netstat -s' or 'netstat -su' for "udpInOverflowsudpInOverflows", "packet receive errors", "fragments dropped" or "outgoing packet drop" • High CPU utilization caused by packet fragmentation • Check for netstat -s IP stat counters: 3104582 fragments dropped after timeout 34550600 reassemblies required 8961342 packets reassembled ok 3104582 packet reassembles failed. • Check /proc/sys/net/ipv4/ ipfrag_low_thresh (default = 196608) • ipfrag_high_thresh (default = 262144) • Network Checksum errors causing send (tx) / receive (tx) errors • Mismatched MTU sizes • Ensure all interfaces and switch settings can support Jumbo frames if possible • Ensure all private interconnect links are layer 2 direct attached to switch/switches • Ipfilter configuration • Full Duplex or Duplex mode mismatch • Flow control mismatch between interface and Links • Default to ON Additional details in Troubleshooting gc block lost and Poor Network Performance in a RAC Environment (Doc ID 563566.1) Copyright © 2020, Oracle and/or its affiliates |
  • 15. Tools to help check network performance • ORAchk • iperf/iperf3 iperf3 –s iperf3 -u -c 192.168.18.xx -l 8K -b 5G -w 1M -t 120 -u UDP, -b bandwidth –w window –t time –l block size Copyright © 2020, Oracle and/or its affiliates |
  • 16. Oracle RAC Performance Troubleshooting Tips & New Generation Performance Internals Atsushi Morimura RAC Performance Engineer Oracle RAC Development October 2020
  • 17. Copyright © 2020, Oracle and/or its affiliates 17 5 years RDBMS Sales Consulting 14 years RAC Development
  • 18. Today’s Agenda Copyright © 2020, Oracle and/or its affiliates 18 Troubleshooting Tips from a Performance Engineer New Generation Oracle RAC Performance Internals Question & Answers
  • 19. Troubleshooting Tips from a Performance Engineer Copyright © 2020, Oracle and/or its affiliates 19
  • 20. 2-way Block Transfer Foreground sends request to remote LMS, LMS sends a data block back. • Master is local, holder is remote. • Master is remote, and is also the holder. 3-way Block Transfer Foreground sends request to remote LMS, LMS forwards request to holder LMS, holder LMS sends a data block back. • Master is remote, holder is on another remote instance. 2-way Lock Grant Foreground sends request to remote LMS, LMS sends a lock grant back. • Master is remote, buffer is not held anywhere. • Data is read from disk. Common Cache Fusion Messaging Patterns Copyright © 2020, Oracle and/or its affiliates20 Instance 2Instance 1 FG LMS Request Data Block Transfer Instance 2Instance 1 FG LMS Request Lock GrantDisk I/O No matter the size of the cluster, requests are always satisfied in ≤ 3 hops Instance 2Instance 3 LMS LMS RequestData Block Transfer Instance 1 FG Forward
  • 21. Waiting for a buffer (or lock grant) transfer from a remote instance Common Cache Fusion Wait Events Copyright © 2020, Oracle and/or its affiliates21 gc [cr|current] [block|grant] [2-way|3-way|busy|congested] Short for “Global Cache” Type of block requested: • CR: consistent read • Current: current pin Request outcome: (what was returned from server) Performance hint
  • 22. The “performance hint” • “2-way” / “3-way” • Received an immediate response back from the master or holder instance. • “busy” • If LMS is unable to immediately service the request, processing gets queued. - A dirty buffer had to be sent, so a REDO log flush was initiated. - The buffer was pinned by another process. - The buffer lock was held in an incompatible mode. - AWR will help explain the reason. • “congested” • Request was processed immediately but was stuck in LMS. - If we exceed a 1 ms threshold, the wait will be marked “congested”. • Usually indicates LMS starvation. Common Cache Fusion Wait Events Copyright © 2020, Oracle and/or its affiliates22 Instance 2Instance 1 FG LMS Request Data Block Transfer REDO log flush
  • 23. Details, expectations and probable causes for abnormalities Common Cache Fusion Wait Events Copyright © 2020, Oracle and/or its affiliates23 gc [cr|current] block [2|3]-way • Expected Latency: < 1 ms (< 100 us on Exadata for 2-way). • Reasons for abnormal : Interconnect congestion , high CPU load and priority inversion , LMS not in RT. gc [cr|current] block busy • Expected latency : log file parallel write + latency of immediate transfer. • Reasons for abnormal: log flush time, application contention on hot blocks, high CPU load and priority inversion. gc [cr|current] block congested • We should not see this event on healthy systems. • Reasons for abnormal: Same as [2|3]-way waits.
  • 24. Concurrency waits for globally-busy buffers Common Cache Fusion Wait Events Copyright © 2020, Oracle and/or its affiliates24 gc buffer busy [acquire|release] • “ACQUIRE”: someone wants to read a remote block, and the request has not yet completed. • The remote block transfer is likely in-process by another local client. • “RELEASE”: a block got released (pinged away) because it was requested by another instance. • Upon completion of this wait, the client may be able to pin the buffer right away (since the buffer has subsequently been ACQUIRE’d by another client), or in some cases, the lock request will need to be re-started again. • Don’t confuse these with the “gc [cr|current] [block|grant] busy” waits. • If there is high concurrency, there will be lots of “buffer busy” waits and a lot fewer transfer waits, but the root of the wait are the transfers.
  • 25. Other common wait events Common Cache Fusion Wait Events Copyright © 2020, Oracle and/or its affiliates25 gc [cr|current] request • Used for in-process buffer requests (reported in ASH, hang analyze, etc. but never in AWR). • Wait event is “fixed-up” upon completion to: • “gc [cr|current] [block|grant] [2-way|3-way|busy|congested]” gc [cr|current] multi block [request|grant|mixed] • A batch of requests were initiated by the client. • “request” is used when all requests were fulfilled via block transfers. • “grant” is used when all requests were fulfilled via lock grants (disk I/O’s will follow). • “mixed” is used when we got a mixture of both. gc [cr|current] block direct read • Exadata only (18c+). • RDMA-read of a remote buffer.
  • 26. Common reasons and solutions Common Wait Event Dependencies Copyright © 2020, Oracle and/or its affiliates26 log file parallel write à gc [cr|current] block busy • Log writes on sender instance block cache fusion sends. • Generally log IO related. • Tune DML schema or SQL to reduce hot blocks. Often associated with other wait events • gc [cr|current] block busy à enq: TX – index contention • gc [cr|current] block busy à enq: TX - row contention • Dependencies are captured in ASH, based on session blocker/blocked information. gc [cr|current] block busy à gc buffer busy [acquire|release] • A session tries to pin a buffer which is/was pinned by another session waiting for a Cache Fusion transfer from another node. • gc buffer busy is indicative of serialization. • Fix root cause (e.g. slow log writes) or remove hot spots.
  • 27. Correlated/Supporting OS and AWR statistics Common Cache Fusion Wait Events Copyright © 2020, Oracle and/or its affiliates27 gc [cr|current] block [2|3]-way à • Run queue length and load average (either server side OR client side). • LMS priority changes. • Signs of congestion on interconnect. gc [cr|current] block busy à • Log file parallel write and log file sync in other instances. • Pin and Flush statistics in other instances. gc [cr|current] block congested à • LMS CPU utilization. • Receive queue time.
  • 28. Copyright © 2020, Oracle and/or its affiliates 28
  • 29. Copyright © 2020, Oracle and/or its affiliates 29 Long “Flush” times usually indicate log I/O issues. Long “Pins” times may indicate: ü CPU load on serving instances, leading to slow release of pins by foregrounds ü Priority inversion on serving instance (preempted while holding an exclusive pin) ü Inefficient code where pins are held for long (contact Oracle support)
  • 30. Copyright © 2020, Oracle and/or its affiliates 30
  • 31. Copyright © 2020, Oracle and/or its affiliates31 New Generation Oracle RAC Performance Internals
  • 32. •Exafusion •Zero copy block sends •Smart fusion block transfer •Index contention optimizations •CR & remastering servers •Service oriented buffer cache •Global enqueue S-lock •RDMA for undo blocks •In-memory commit cache •Scalable sequences •PDB lock domains •Oracle RAC Sharding •Fast index split •PMEM commit accelerator (X8M) •RDMA for data block reads •RDMA for undo header blocks •Broadcast on Commit RDMA •More index contention optimizations Recent Performance Optimizations for RAC Copyright © 2020, Oracle and/or its affiliates32 * Exadata specific optimizations More details at: https://www.oracle.com/a/otn/docs/oracle-rac- cache-fusion-performance-optimization-on-exadata-wp.pdf Future
  • 33. • Remote Direct Memory Access (RDMA) is the ability for one computer to access data from a remote computer without any OS or CPU involvement • Network card directly reads/writes memory with no extra copying or buffering and very low latency Exadata Uses RDMA for Extreme Performance Copyright © 2020, Oracle and/or its affiliates 33 DRAM CPUHCA Server #2 DRAM CPU HCA Server #1 RDMA Write RDMA Read
  • 34. RDMA can eliminate: • All server-side processing & context switches (up to 80% of overall round-trip time) • No server-side queuing effects, LMS can be completely bottlenecked, and we’ll be unaffected • Client side context switches RDMA is now supported for the following operations: • Undo block reads (18c) • Shared data block reads (Future) • Undo header reads (Future) • In-memory commit cache lookups (Future) RDMA for Cache Fusion Copyright © 2020, Oracle and/or its affiliates 34
  • 35. Master is local, Holder is remote • Removes all LMS processing Master is remote, and is also the Holder • Cheaper processing in LMS Master is remote, Holder is another remote instance • Remove LMS-LMS messaging • Does not invoke holder LMS New Messaging Patterns With Shared Data Block RDMA Copyright © 2020, Oracle and/or its affiliates35 Instance 2Instance 1 FG LMS 1. Request 2. Data Block Transfer Instance 2Instance 1 FG LMS 1. Request 2. Data Block Transfer Instance 2 Instance 1 Direct Read SGAFG Instance 1 3. Direct Read Instance 2 1. Request 2. Grant SGA LMS FG 3. Data Block Transfer Instance 2Instance 3 1. Request Instance 1 2. Forward LMS FG LMS 3. Direct Read Instance 2Instance 3 1. Request Instance 1 FG SGA LMS 2. Grant
  • 36. Example from a system where LMS is NOT saturated • Cache Fusion averages are healthy, at around ~120 µs for 2-way and ~200 µs for 3-way transfers • RDMA is very fast at 8 µs à 15x faster Cache Fusion RDMA Benefits Copyright © 2020, Oracle and/or its affiliates36 Total %Time Wait Waits % DB Event Waits -outs Time (s) Avg wait /txn time -------------------------- ----------- ----- -------- --------- -------- ------ cell single block physical 57,904 16 280.33us 1.6 25.4 log file sync 35,778 13 355.15us 1.0 19.9 gc cr grant 2-way 75,206 8 112.77us 2.1 13.3 gc current grant 2-way 13,855 1 106.73us 0.4 2.3 gc cr block 2-way 10,213 1 122.94us 0.3 2.0 gc cr block 3-way 4,946 1 202.63us 0.1 1.6 gc current grant busy 10,494 1 86.34us 0.3 1.4 Sync ASM rebalance 25 1 20.99ms 0.0 .8 gc current block direct read 57,550 0 8.20us 1.6 .7 gc current block 2-way 2,567 0 111.98us 0.1 .4 gc current block 3-way 1,271 0 181.92us 0.0 .4
  • 37. Example from a system where LMS IS saturated • With higher load, LMS is now a bottleneck with lots of congested waits • RDMA is still at 15µs • Slower than earlier due to client-side scheduling delays Cache Fusion RDMA Benefits Copyright © 2020, Oracle and/or its affiliates37 Total %Time Wait Waits % DB Event Waits -outs Time (s) Avg wait /txn time -------------------------- ----------- ----- -------- --------- -------- ------ log file sync 944,248 782 828.24us 1.0 16.4 gc cr grant 2-way 1,713,004 778 453.94us 1.8 16.3 cell single block physical 1,855,674 743 400.15us 2.0 15.6 gc cr grant congested 83,226 412 4.94ms 0.1 8.6 gc current grant busy 232,165 325 1.40ms 0.2 6.8 gc cr block congested 42,106 217 5.16ms 0.0 4.6 gc cr block 2-way 438,178 203 464.18us 0.5 4.3 gc cr block 3-way 214,811 186 866.67us 0.2 3.9 (snip) gc current block direct read 864,609 13 15.11us 0.9 .3
  • 38. Various optimizations have been implemented to help improve scalability for these workloads • Keep branch block at splitter (12c) • Make sure splits complete as quickly as possible by preventing branch blocks from being pinged away • Scalable Sequences (18c) • Sequence values are automatically prefixed with an instance-specific value • Oracle RAC Sharding (18c) • Leverage the Oracle Sharding direct routing API’s to implement data-dependent-routing based on an application-supplied partitioning key • Delayed ping (19c) • Allow local sessions to make more changes to a block while REDO I/O is still pending • This will help increase “local” changes that can be done without Cache Fusion transfers • Fast index split (19c) • Allow sessions to wait for leaf block split completion in the buffer cache, instead of global enqueues Optimizations for Right Growing Index Workloads Copyright © 2020, Oracle and/or its affiliates 38
  • 39. PDB Lock Domains Improve Performance Copyright © 2020, Oracle and/or its affiliates39 Instance 3 Instance 2 Instance 1 Container Database (CDB) PDB 1 PDB 2 PDB 3 RAC locks are isolated per-PDB • Lock masters are distributed among the instances where the PDB is open • PDB 1 is a “singleton”; it is only open on instance 1 • All locks for PDB 1 are mastered on instance 1, so there is 100% locality and no Cache Fusion messaging • If more compute is needed, one can dynamically open PDB 1 on instance 2 and/or 3 • Very common use-case in Autonomous Database • PDB 2 and 3 are RAC clusters Please set target_pdbs for best performance (MOS note: 2644243.1)
  • 40. RAC (PDB) reconfiguration is only necessary if: • The PDB is opened or closed on another CDB instance • If PDB 1 opens on instance 2, RAC reconfiguration is invoked for PDB 1 • A CDB instance where the PDB is open goes down (either planed or unplanned) • If CDB instance 2 goes down, RAC reconfiguration is invoked for PDB’s 2 and 3 Impact is isolated to the affected PDB’s only: • PDB 1 is unaffected when CDB instance 3 crashes • PDB 2 and 3 are unaffected when PDB 1 is opened on CDB instance 2 • No PDB’s are affected when a 4th CDB instance is brought up PDB Lock Domains Improve Failure Isolation Copyright © 2020, Oracle and/or its affiliates 40 Instance 3 Instance 2 Instance 1 Container Database (CDB) PDB 1 PDB 2 PDB 3
  • 41. Copyright © 2020, Oracle and/or its affiliates 41 Questions?
  • 42. Thank you Atsushi Morimura RAC Performance Engineer Oracle RAC Development Copyright © 2020, Oracle and/or its affiliates42
  • 43. New Generation Oracle RAC High Availability and Scalability for both • Traditional Applications • New Application Paradigms Provides a single converged and secure Database for all your application needs While ensuring complete Isolation between the PDBs Copyright © 2020, Oracle and/or its affiliates |