- nloug · pdf fileit is created from a sql source ... • service thresholds (response...

71

Upload: lynga

Post on 17-Mar-2018

217 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules
Page 2: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

<Insert Picture Here>

Performance, performance, performance !!!

John AbrahamsTechnology Sales ConsultantOracle Nederland

Page 3: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Important Trends

• Highest QoS for all applications• 24 x 7 availability• Predictable Service Levels

• Databases rapidly grow in size

Page 4: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Agenda

• Automated Performance Management• Automatic Workload Management• Large Databases – Oracle ILM• Oracle DWH – Balanced Configurations• When milliseconds counts - Oracle TimesTen In-

memory database

Page 5: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Agenda

• Automated Performance Management• Automatic Workload Management• Large Databases – Oracle ILM• Oracle DWH – Balanced Configurations• When milliseconds counts - Oracle TimesTen In-

memory database

Page 6: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Traditional Performance Tuning

• Performance and Workload Data Capture• System Statistics, Wait Information, SQL Statistics, etc.

• Analysis• What types of operations database is spending most time on?• Which resources is the database bottlenecked on?• What is causing these bottlenecks?• What can be done to resolve the problem?

• Problem Resolution• If multiple problems identified, which is most critical?• How much performance gain expected if is solution implemented?

Oracle Database 10g Automates All Steps to Addresses Main Issues & Challenges

Page 7: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

• Built-in Workload and Performance Statistics Repository Within Database

• Part of Oracle Database 10g Intelligent Self-Management Infrastructure • Automatically Captures Workload Data

• Every 60 minutes, or manually, saves data for 7 days by default

• Resides in Newly Introduced SYSAUX Tablespace• Server Automatically Manages Space Requirements

• Old Data is automatically purged

• Stores different classes of data: • BASE STATISTICS e.g. physical reads• SQL STATISTICS e.g. disk reads (per sql stmt)• METRICS e.g. physical reads / sec• ACTIVE SESSION HISTORY

Automatic Workload Repository (AWR)

Page 8: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Proactive Performance Tuning

• Self-Diagnostic Engine In the Database

• Integrate all components together

• Automatically provides database-wide performance diagnostic

• On-Demand Performance Analysis

• Provides impact and benefit analysis, non problem areas

• Runs proactively out of the box, reactively when requiredSQL

Advisor

High-load SQL

IO / CPU issues RAC issues

Automatic Diagnostic Engine

Snapshots inAutomatic Workload

Repository

Self-Diagnostic Engine inside DB

System Resource

Advice

Network + DB config

Advice

Automatic Database Diagnostic Monitor (ADDM)

Page 9: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Manual Tuning Challenges

� Requires expertise in several domains– SQL optimization: adjust the execution plan– Access design: provide fast data access– SQL design: use appropriate SQL constructs

� Time consuming– Each SQL statement is unique– Potentially large number of statements to tune

� Never ending task– SQL workload always evolving– Plan regressions

Page 10: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Oracle 10g Automates the SQL Tuning Process

I can do it for you !

SQL Tuning Advisor

DBAHigh-Load

SQL

ADDM

SQLWorkload

Page 11: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Automatic Tuning Optimizer (ATO)

� It is the query optimizer running in tuning mode– Uses same plan generation process but performs

additional steps that require lot more time

� It performs verification steps– To validate statistics and its own estimates

� Uses dynamic sampling and partial executions to validate

� It performs exploratory steps– To investigate the use of new indexes that could

provide significant speed-up– To analyze SQL constructs that led to expensive

plan operators

Page 12: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Automatic SQL Tuning Overview

Add Missing Indexes

Modify SQL Constructs

Create a SQL Profile

Automatic Tuning Optimizer

SQL Structure Analysis

Access Path Analysis

SQL Profiling

Statistics Analysis

Gather Missing or Stale Statistics

DBA

SQL TuningRecommendations

SQL Tuning Advisor

Page 13: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQL Tuning Usage Scenarios

SQL Tuning Advisor

ADDM High-load SQL

Cursor Cache

AWR

SQL Tuning Set(STS)

User-defined

Filter / Rank

SQL Sources Manual Selection

Automatic Selection

AWR

Page 14: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQL Tuning Set (STS)

� Motivation– Enable user to tune a custom set of SQL statements

� It is a new object in Oracle10g for capturing SQL workload

� It stores SQL statements along with..– Execution context: parsing user, bind values, etc.– Execution statistics: buffer gets, CPU time, elapse

time, number of executions, etc.

� It is created from a SQL source– Sources: AWR, cursor cache, user-defined SQL

workload, another STS

Page 15: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQL Tuning Set Benefits

� Allows selective, on-demand, custom SQL workload tuning

� It simplifies tuning of large number of SQL statements

� It is persistent� Provides a common infrastructure for dealing

with SQL workloads– Can be used as a source for different tuning tasks

Page 16: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQL Source: ADDM Finding

Page 17: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQL Source: Top SQL

Page 18: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQL Tuning Recommendations — Overview

Page 19: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Implement Recommendations

Page 20: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

SQLAccess Advisor

Workload

Indexes Materialized ViewsMaterialized View Logs

SQL Access Advisor

Page 21: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Usage Scenarios

WorkloadUser Defined

Hypothetical

Cursor Cache

Filter Options

STS

SQL Access Advisor

Page 22: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Conclusion

• SQL Tuning and Access Advisors automate SQL tuning

• Provide targeted, quick, easy tuning advice

• Fully integrated with CBO• Easy, user-friendly interface

Page 23: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Agenda

• Automated Performance Management• Automatic Workload Management• Large Databases – Oracle ILM• Oracle DWH – Balanced Configurations• When milliseconds counts - Oracle TimesTen In-

memory database

Page 24: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Oracle Real Application Clusters 10g Automatic Workload Management

• AWM is an abstraction that customers use to divide work into logical workloads.

• Services is the first stage in AWM

• Each service represents a workload with• common function• common service level thresholds• common priority• (common resource footprint)• e.g. mail server – iMap, postman,

garbage collector, monitor

Financials HR DSS

Page 25: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Node-4

Service Distribution Example

Critical-1

Node-3Node-2Node-1

Critical-2

Using RAC Automatic Workload Management

Critical-4

Batch

Low

Medium 1

Critical-3

Medium 2

Page 26: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Sample Work Sheet

Service Usage Priority Response time (sec) – warning / critical

Preferred Instances

Available Instances

ERP Client service 1 0.5, 0.75 RAC01, RAC02 RAC03, RAC04

CRM Client service 2 0.5, 1.0 RAC03, RAC04 RAC01, RAC02

SELF_SERVICE

Client service 2 1.0, 1.5 RAC01, RAC02, RAC03, RAC04

-

HOT_BATCH Job scheduler 3 RAC01 RAC02, RAC03, RAC04

STD_BATCH Job scheduler 4 RAC01, RAC02, RAC03, RAC04

-

Page 27: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Creating Services

• Services are maintained in the data dictionary• Each service has attributes

• globally unique name • service thresholds (response time, CPU/service)• resource consumer group (ratios or priorities)

• HA business rules are maintained in OCR• preferred configuration for availability• TAF policy

Page 28: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Creating Services

• Oracle 10g single instance• DBMS_SERVICE to create and administer services

• Oracle 10g RAC• DBCA, NETCA or SRVCTL to create and administer

services

• EM or PL/SQL to create thresholds, consumer groups, job classes, detail monitoring, traces

Page 29: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Database Resource Manager

• DBMS_RESOURCE_MANAGER. SET_CONSUMER_GROUP_MAPPING • Automatically sets consumer groups for services at connect

time.• alter session to change consumer groups within service

• Using ratios • e.g. two-thirds of resource to payroll and one-third to CRM.

• Using priorities • satisfy the highest priority services first, followed by the next

priority services, and so on.

Page 30: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Services are a unit for performance

• A new level dimension for performance tuning• workloads are visible and measurable • tuning by “service and SQL” replaces “session and SQL” in most

systems where sessions are shared.• Performance measures for real transactions

• Alerts and actions when performance goals are violated

Page 31: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Service Thresholds and Alerts

• DBMS_SERVER_ALERT.SET_THRESHOLD• SERVICE_ELAPSED_TIME• SERVICE_CPU_TIME• Warning and critical levels for observed periods• Import from EM baselines

• Comparison of response time against accepted minimum levels • a desire for the wall clock time to be, at most, a certain value.

Page 32: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

30 service, module, action statistics

• user calls• DB time – response time• DB CPU – CPU/service• parse count (total)• parse time elapsed• parse time cpu• execute count• sql execute elapsed time• sql execute cpu time• opened cursors cumulative• session logical reads• physical reads• physical writes• redo size• user commits

� workarea executions - optimal� workarea executions - onepass� workarea executions - multipass� session cursor cache hits� user rollbacks� db block changes� gc cr blocks received� gc cr block receive time� gc current blocks received� gc current block receive time� cluster wait time� concurrency wait time� application wait time� user I/O wait time

Page 33: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Automatic Workload ManagementProvides Visibility

0

5

10

15

20

25

30

9 10 11 12 13 14 15 16 17 18

DCBA

Page 34: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Automatic Workload ManagementProvides Visibility

Page 35: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

AWR Automatically Measures Service

• AWR measures response time, resource used• Automatically for work done in every service

• AWR monitors thresholds, sends AWR alerts • response time, cpu used• maintains runtime history every 30 minutes

• Statistics collection and tracing are HA • persistent for service location / instance restart.• enabled and disabled globally for RAC.

Page 36: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Getting the best out of Oracle- Configuration

• Plan your services• application to service, data range to service• global name, HA configuration, priority, response time

• Use service: not SID, not Instance, not Host• Use service to connect• Use virtual IP for database access• Use cluster alias to eliminate address lists.

• Use service for jobs and PQ.

Page 37: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Agenda

• Automated Performance Management• Automatic Workload Management• Large Databases – Oracle ILM• Oracle DWH – Balanced Configurations• When milliseconds counts - Oracle TimesTen In-

memory database

Page 38: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Information Lifecycle Management

“The policies, processes, practices, and tools used to align the business value of information with the most appropriate and cost effective IT infrastructure from the time information is conceived through its final disposition.”

Storage Networking Industry Association (SNIA) Data Management Forum

HistoricalData

ActiveData

Less ActiveData

Page 39: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Oracle ILM• Low Cost

• Can use low cost storage to reduce the cost of retaining data

• Transparent to Applications• Applications are unchanged

• Enforceable Compliance Policies• Sophisticated techniques to

define and enforce data policies

• Fine Grained Control• Lifecycle of groups of

business data is managed down to individual rows

• Hardware Independent

Active

Oracle Database 10gwith Partitioning Option

LessActive

Historical

Applications

Oracle Desktop Apps

Portals & Browsers

ISV Apps

Page 40: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Implementing Oracle ILM

• DefineData

Classes

• Create Storage Tiers for the Data Classes

• Create Data Access and Migration Policies

• Define and Enforce

Compliance Policies

Page 41: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Implementing Oracle ILM

• Oracle ILM Assistant Manages the ILM environment • Define Lifecycle Definitions• Illustrates Storage Costs & Savings• Manage Compliance & Security• Calendar of Events• Simulates the impact of partitioning on a table

• Advises how to • Partition a Table• Generates Scripts to move data when required

Page 42: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Separate Data by Class

• Apply different policies to different classesof data

• To treat data classes differently, you must physically separate data by class• Data classes must be mapped to data

attributes e.g. Order date

• Table Partitions enable you to separate data by data attribute• Can manage each class (Partition) as a unit

• Store, move, archive, search, query

• Partitions are transparent to the application• Use ILM Assistant to define a Lifecycle

All OrdersQ1

Orders

Q2Orders

Q3Orders

Q4Orders

OlderOrders

Page 43: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Lifecycle Definition

Page 44: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Create Physical Storage Tiers

• Create separate storage areas for high performance and low cost storage

• High Performance Storage Tier uses• High performance storage

arrays• Disks optimised for

throughput • Low Cost Storage Tier

uses• Modular arrays for reduced

cost• Large capacity commodity

ATA disks

High PerformanceStorage Tier

Low CostStorage Tier

Page 45: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Automatic Storage Management (ASM)• ASM & ILM

• Partitions are located in different diskgroups

• Each tier uses ASM for load balancing

Jan Feb Mar

Diskgroup H Diskgroup A

1997-2001

Diskgroup L

2005 2004

20022003High Performance Tier

Low Cost Tier

Online Archive Tier

Page 46: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Online Archive Storage Tier

• The Online Archive Storage Tier is• Very large• Low Activity• Read-only or Read-mostly

• Store in low cost storage tier• Information is still online and always

readable• No delay when data needed, always

available• Storage cost is almost same as tape

• Leverage usage patterns to further reduce size and cost • Defragment and Compress• Declare read-only

Page 47: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

All OrdersQ1

Orders

Q2Orders

Q3Orders

Q4Orders

OlderOrders

Assign Classes/Partitions to Storage Tiers

ActiveHigh PerformanceStorage Tier

Less ActiveLow CostStorage Tier

HistoricalOnline ArchiveStorage Tier

Page 48: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Enforcing Compliance Policies

• Oracle ILM provides an intelligent central location to store data and enforce compliance data policies• Policies are customisable for

businesses-specific needs• Centralised policy definition

and enforcement• Flexibility to respond to

changing regulations

Oracle Database 10gwith Partitioning Option

Applications

Oracle Desktop Apps

Portals & Browsers

ISV Apps

Compliance Policy

Page 49: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Agenda

• Automated Performance Management• Automatic Workload Management• Large Databases – Oracle ILM• Oracle DWH – Balanced Configurations• When milliseconds counts - Oracle TimesTen In-

memory database

Page 50: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

DW Configuration Problem: I/O

Database CPUs Memory Actuators LUNs Disks Raid

Database CPUs Memory Actuators LUNs Disks Raid

An unbalanced configuration

A balanced configuration

100%Possible

Efficiency

100%Possible

Efficiency

100%AchievedEfficiency

< 50%AchievedEfficiency

Page 51: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Oracle Information Appliance FoundationWhat is it?

• Documented balanced system configurations for pre-defined DWBI environments• Starting point for sizing a system• Balanced system consists of CPU, memory, I/O, and cabling• Sizing factors are raw data, avg. concurrent users and

workload complexity• Leverages scalable, modular components

• Enables incremental growth (scale-in, scale-out)• Mitigates implementation risks

• Different OS and HW configurations• Different workload configurations

• Price/Performance versus I/O intensive

Page 52: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

• Balanced system configurations are built on modular balanced building blocks• Add building blocks as you grow• Each building block is a balanced unit

DisksDisksDiskDisk DiskDiskDisksDisksDisksDisks DisksDisks DisksDisksDisksDisksDiskDisk DiskDisk DiskDisk DiskDiskDisksDisks

• Different building blocks provide “guided choices”• Many small nodes

versus few large nodes

Oracle Information Appliance FoundationWhat is it?

Page 53: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

What is a balanced unit ?

•“The weakest link” defines the throughput

• Each building block is a balanced unit

•Components to consider:• CPU: Quantity and speed • HBA (Host Bus Adapter):

Quantity and speed• Switch speed• Controller: Quantity and

speed• Disk: Quantity and speed

FC-Switch1 FC-Switch2

DiskArray 1

DiskArray 2

DiskArray 3

DiskArray 4

DiskArray 5

DiskArray 6

DiskArray 7

DiskArray 8

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

Page 54: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Throughput Performance

Component theory (Bit/s) maximal Byte/s

HBA 1/2Gbit/s 100/200 Mbytes/s

16 Port Switch 8 x 2Gbit/s 1600 Mbytes/s

Fibre Channel 2Gbit/s 200 Mbytes/s

Disk Controller 2Gbit/s 200 Mbytes/s

GigE NIC 1Gbit/s 80 Mbytes/s

Infiniband 10Gbit/s 890 Mbytes/s

CPU 200MB/s

Grid Components Rough Sizing numbers

* 2Gbit based

Page 55: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Sample Balanced Unit

•“The weakest link” defines the throughput

• Each building block is a balanced unit

•Components to consider:• CPU: Quantity and speed • HBA (Host Bus Adapter):

Quantity and speed• Switch speed• Controller: Quantity and

speed• Disk: Quantity and speed

FC-Switch1 FC-Switch2

DiskArray 1

DiskArray 2

DiskArray 3

DiskArray 4

DiskArray 5

DiskArray 6

DiskArray 7

DiskArray 8

Each machine has 2 CPUs All four servers drive about

2 * 200MB/s * 4 = 1600 MB/s

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

Page 56: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Sample Balanced Unit

•“The weakest link” defines the throughput

• Each building block is a balanced unit

•Components to consider:• CPU: Quantity and speed • HBA (Host Bus Adapter):

Quantity and speed• Switch speed• Controller: Quantity and

speed• Disk: Quantity and speed

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

FC-Switch1 FC-Switch2

DiskArray 1

DiskArray 2

DiskArray 3

DiskArray 4

DiskArray 5

DiskArray 6

DiskArray 7

DiskArray 8

Each machine has 2 Gb HBAsAll 8 HBAs can sustain

8 * 200MB/s = 1600 MB/s

Each machine has 2 CPUs All four servers drive about

2 * 200MB/s * 4 = 1600 MB/s

Page 57: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Sample Balanced Unit

•“The weakest link” defines the throughput

• Each building block is a balanced unit

•Components to consider:• CPU: Quantity and speed • HBA (Host Bus Adapter):

Quantity and speed• Switch speed• Controller: Quantity and

speed• Disk: Quantity and speed

FC-Switch1 FC-Switch2

DiskArray 1

DiskArray 2

DiskArray 3

DiskArray 4

DiskArray 5

DiskArray 6

DiskArray 7

DiskArray 8

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2 Each machine has 2 Gb HBAs

All 8 HBAs can sustain8 * 200MB/s = 1600 MB/s

Each switch needs to support 800MB/s to guarantee a total system throughput of 1600 MB/s

Each machine has 2 CPUs All four servers drive about

2 * 200MB/s * 4 = 1600 MB/s

Page 58: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Sample Balanced Unit

•“The weakest link” defines the throughput

• Each building block is a balanced unit

•Components to consider:• CPU: Quantity and speed • HBA (Host Bus Adapter):

Quantity and speed• Switch speed• Controller: Quantity and

speed• Disk: Quantity and speed

FC-Switch1 FC-Switch2

DiskArray 1

DiskArray 2

DiskArray 3

DiskArray 4

DiskArray 5

DiskArray 6

DiskArray 7

DiskArray 8

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2

HB

A1

HB

A2 Each machine has 2 Gb HBAs

All 8 HBAs can sustain8 * 200MB/s = 1600 MB/s

Each switch needs to support 800MB/s to guarantee a total system throughput of 1600 MB/s

Each disk array has one 2Gbit controllerAll 8 disk arrays can sustain

8 * 200MB/s = 1600 MB/s

Each machine has 2 CPUs All four servers drive about

2 * 200MB/s * 4 = 1600 MB/s

Page 59: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Agenda

• Automated Performance Management• Automatic Workload Management• Large Databases – Oracle ILM• Oracle DWH – Balanced Configurations• When milliseconds counts - Oracle TimesTen In-

memory database

Page 60: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Oracle TimesTen In-Memory Database

In-memory RDBMSin the middle-tier..

enables the Real-time Enterprise

ApplicationApplication

Page 61: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Oracle TimesTen In-Memory Database• In-Memory RDBMS

• Entire database is in memory• Low latency + high throughput � fast • Data access via ODBC, JDBC, SQL-92 � standard

• Shared by multi-threaded and multi-user applications• Direct-linked and client-server

• Transactions are logged and recoverable

• Transaction logs and checkpoint files persist on disk � safe

• Thousands of customers � proven• Compatible with Oracle database

Checkpoints

Tx Logs

Network

Client-Server

Cache Tables

CacheAgent

Direct-linked

ApplicationApplication

TimesTen Libraries

TimesTen Client lib

Application

Page 62: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Cache Connect to Oracle

• Cache tables from Oracle database• User configured cache groups

• Cache individual tables and related tables

• Cache all or subset of rows and columns

• Read-only or updatable • Access cached tables like regular

database tables

• Automatic data synchronization• TimesTen to Oracle• Oracle to TimesTen

Checkpoints

Tx Logs

Network

Client-Server

Cache Tables

CacheAgent

Direct-linked

ApplicationApplication

TimesTen Libraries

TimesTen Client lib

Application

Page 63: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Caching Data from Oracle DatabaseCache Group – describes the Oracle data to be cached in the TimesTen in-memory database, via a SQL WHERE clause

TimesTen Cache Groups

RootTable

ChildTable

ChildTable

ChildTable

Example: Caching name and address of premier customers who have had more than 500 purchase orders

CREATE CACHE GROUP PremierUsersFROM CUSTOMER (

NAME VARCHAR2(100) NOT NULL,ADDR VARCHAR2(100) )

WHERE CUSTOMER.ORDER > 500;

Page 64: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

On-Demand Caching

• On-demand loading of data from Oracle if data not found in TimesTen

• All updates to the cache write-through to Oracle database

• Set data aging policy to age out the data that’s no longer needed

Oracle

Load data from Oracle upon SELECT

ApplicationClients

On Demand Cache GroupIMDB

Application

Client/Server

C/SApplications

Age out when no longer needed

Page 65: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Sliding Window CachingCache data from a specific time window for real-time management, monitoring and optimization

• Cache 5 days of shipments for real-time optimization of routes & schedules

• Cache last 15 minutes of RFID data for real-time process monitoring

• Cache last 90 days of ordersto speed searching by call agents or self-service portals

• Cache last 30 days of market data for analytics & simulation

WEDTUEMON

Page 66: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Benchmark example

Oracle 10g

Oracle 10g

Presentation

Benchmark Program

Benchmark Program

• 3-tier architecture

• Benchmark app runs in mid-tier

• TimesTen embedded in benchmark app

• Updatable cache contains benchmark data

• 3-tier architecture

• Benchmark app runs in mid-tier

Oracle Oracle + TimesTen

Page 67: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Combined Performance

Page 68: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

TimesTen and J2EE Application Servers

• Customers use TimesTen database with their J2EE applications

• TimesTen supports industry leading Application Servers• Oracle Application Server• IBM Websphere Application Server• BEA WebLogic Application Server• Sun Application Server• JBOSS Application Server

• Refer to TimesTen Application Server Guide for more details

Page 69: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Java Middleware Tested with TimesTen

• Oracle Application Server 10.1.2 & 10.1.3• Oracle BPEL Process Manager 10.1.3• Oracle TopLink 9.0.4 & 10.1.3• Oracle JDeveloper 10.1.3• JBoss Application Server 4• Hibernate 3• WebSphere Application Server 6• Weblogic Application Server 8• Sun Java System Application Server 8

Page 70: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules

Product Features In the Pipeline..

• Integration with Oracle SQL Developer tool• TimesTen will be supported in next release

• Support Oracle Call Interface (OCI) and Pro*C embedded SQL

• Support for PL/SQL stored-procedures• Integration with Oracle Enterprise Manager

Page 71: - nlOUG · PDF fileIt is created from a SQL source ... • service thresholds (response time, CPU/service) • resource consumer group (ratios or priorities) • HA business rules