Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP. Thursday, April 18, 13

Size: px
Start display at page:

Download "Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP. Thursday, April 18, 13"

Transcription

1 Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP

2 Who am I? Frits Hoogland Working with Oracle products since 1996 Blog: Oracle ACE Director OakTable Member 2

3 Note!! This presentation has been made benchmarking an older version of the Oracle appliances. The versions are explicitly stated. The message of the presentation doesn t change! 3

4 What is Exadata? Engineered system specifically for oracle database. Ability to reach high number of read IOPS and huge bandwidth. Has it s own patchbundles. Validated versions and patch versions across database, clusterware, o/s and storage, firmware. Dedicated, private storage for databases. ASM. Recent hardware & recent CPU. No virtualisation. 4

5 Exadata versions Oracle database 64 bit version >= 11 (.2) ASM 64 bit version >= 11 (.2) Exadata communication is using in skgxp code Linux OL5 x64 No UEK kernel used (except X2-8) Update! Exadata uses el5uek 5

6 Exadata hardware Intel Xeon server hardware Infiniband 40Gb/s Oracle cell (storage) server Flash to mimic SAN cache High performance disks or high capacity disks 600GB 15k RPM / ~ 5ms latency 2/3TB 7.2k RPM / ~ 8ms latency 6

7 Flash Flashcards are in every storage server Total of 384GB per storage server* Do not confuse exadata STORAGE server flashcache with oracle database flashcache! 7

8 Flash Flash can be configured either as cache or as diskgroup or both. cache: flashlog, flashcache* When flash is used as diskgroup latency is ~ 1 ms Faster than disk My guess was < 400µs 1µs infiniband 200µs flash IO time some time for storage server 8

9 Flash Flash is restricted* to 4x96GB = 384GB per storage server. Totals: Q:1152GB, H:2688GB, F:5376GB Net (ASM Normal redundancy): Q: 576GB, H:1344GB, F:2688GB That is a very limited amount of storage. 9

10 Exadata specific features The secret sauce of exadata: the storage server smartscan storage indexes EHCC * IO Resource manager 10

11 Exadata specific features The secret sauce of exadata: the storage server smartscan storage indexes EHCC * IO Resource manager 10

12 Exadata specific features The secret sauce of exadata: the storage server smartscan storage indexes EHCC * IO Resource manager 10

13 Exadata specific features The secret sauce of exadata: the storage server smartscan storage indexes EHCC * IO Resource manager 10

14 OLTP How does OLTP look like (in general simplistic) Fetch small amount of data Invoice numbers, client id, product id select single values or small ranges via index Create or update rows Sold items on invoice, payments, order status insert or update values 11

15 A great way to mimic or measure OLTP performance is SLOB Silly Little Oracle Benchmark Author: Kevin Closson 12

16 SLOB It can do reading: FOR i IN LOOP v_r := dbms_random.value(257, 10000) ; SELECT COUNT(c2) into x FROM cf1 where custid > v_r AND custid < v_r; END LOOP; 13

17 SLOB And writing: FOR i IN LOOP v_r := dbms_random.value(257, 10000) ; UPDATE cf1 set c2 = 'AAAAAAAABBBBBBBBAAAAAAAABBBBBBBBAAAAAAAABBBBBBBBAAAAAAAABBBBBBBBAAAAAAAABBBBBBBBAA AAAAAABBBBBBBBAAAAAAAABBBBBBBBAAAAAAAABBBBBBBB',...up to column 20 (c20)... where custid > v_r AND custid < v_r; COMMIT; END LOOP; 14

18 SLOB Lets run SLOB with 0 writers and 1 reader at: Single instance database, 10G SGA, 9G cache. >> Cold cache << Exadata V2 / Oracle / HP Half rack / 7 storage servers / 84 disks (15k rpm) Exadata X2 / Oracle / HC Quarter rack / 3 storage servers / 36 disks (7.2k rpm) 15

19 SLOB - 1 reader Response time V2 / Half rack X2 / Quarter 0 rack

20 SLOB - 1 reader Response time V2 / Half rack X2 / Quarter rack

21 SLOB - 1 reader Response time V2 / Half rack X2 / Quarter rack ODA 0 18

22 SLOB - 1 reader Response time V2 / Half rack X2 / Quarter rack ODA 19

23 SLOB - 1 reader V2 time: 5 sec - CPU: 84.3% PIO: (0.8%) -- IO time 0.8 sec LIO: X2 time: 4 sec - CPU: 75.7% PIO: (0.8%) -- IO time 0.9 sec LIO: ODA tm: 4 sec - CPU: 55.2% (20 disks 15k rpm) PIO: (0.8%) -- IO time 2.2 sec LIO:

24 SLOB - 1 reader - conclusion The time spend on PIO is 15% - 45% Majority of time spend on LIO/CPU time Because main portion is CPU, fastest CPU wins Actually: fastest CPU, memory bus and memory. 21

25 SLOB - 1 reader - LIO Let s do a pre-warmed cache run Pre-warmed means: no PIO, data already in BC This means ONLY LIO speed is measured 22

26 SLOB - 1 reader - LIO ODA: 1 sec X2: 2 sec V2: 3 sec 23

27 SLOB - 1 reader - LIO Reason: LIO essentially means Reading memory CPU processing Use dmidecode to look to the system s components! 24

28 V2 Intel Xeon 2.53GHz (2s8c16t) L1:128kB, L2:1MB, L3:8MB Memory: Type DDR3, speed 800 Mhz X2: Intel Xeon 2.93GHz (2s12c24t) L1:384kB, L2:1.5MB, L3:12MB Memory: Type DDR3, speed 1333 Mhz ODA Intel Xeon 3.07GHz (2s12c24t) L1:384kB, L2:1.5MB, L3:12MB Memory: Type DDR3, speed 1333 Mhz 25

29 SLOB - LIO - multiple readers Let s take the 1 reader figures, and scale up. What would ODA, Exadata V2 and Exadata X2 do? 26

30 SLOB - LIO - multiple readers 30.0 LIO read response time oda x2 v2 27

31 SLOB - LIO - multiple readers 30.0 LIO read response time oda x2 v2 28

32 SLOB - LIO - multiple readers 30.0 LIO read response time oda x2 v2 29

33 SLOB - LIO - multiple readers 30.0 LIO read response time oda x2 v2 30

34 SLOB - LIO - multiple readers 30.0 LIO read response time 22.5 Core difference and slower memory shows when # readers exceeds core count oda x2 v2 30

35 SLOB - LIO - multiple readers 30.0 LIO read response time 22.5 Core difference and slower memory shows when # readers exceeds core count Same memory speed: CPU speed matters less with more concurrency oda x2 v2 30

36 SLOB - LIO - multiple readers 30.0 LIO read response time oda x2 v2 31

37 SLOB - LIO - multiple readers 30.0 LIO read response time Lesser core s and slower memory make LIO processing increasingly slower with more concurrency oda x2 v2 31

38 SLOB - LIO - multiple readers 30.0 LIO read response time Lesser core s and slower memory make LIO processing increasingly slower with more concurrency For LIO processing ODA (non-exadata) and Exadata does not matter oda x2 v2 31

39 SLOB - LIO - multiple readers Conclusion: LIO performance is impacted by: CPU speed Number of sockets and core s L1/2/3 cache sizes Memory speed Exadata does not matter here! 32

40 SLOB - LIO - multiple readers When comparing entirely different systems also consider: Oracle version O/S and version (scheduling) Hyper threading / CPU architecture NUMA (Exadata/ODA: no NUMA!) 33

41 SLOB - PIO - 1 reader But how about physical IO? Lower the buffercache to 4M sga_max_size to 1g cpu_count to 1 db_cache_size to 1M (results in 4M) Slob run with 1 reader 34

42 110 SLOB - PIO - 1 reader PIO reader response time oda x2 v2 35

43 110 SLOB - PIO - 1 reader PIO reader response time Surprise! ODA is the fastest here with 73 seconds oda x2 v2 35

44 110 SLOB - PIO - 1 reader PIO reader response time 83 The X2 is only a little slower with 76 seconds. 55 Surprise! ODA is the fastest here with 73 seconds oda x2 v2 35

45 110 SLOB - PIO - 1 reader PIO reader response time The V2 is the slowest with 106 seconds. 83 The X2 is only a little slower with 76 seconds. 55 Surprise! ODA is the fastest here with 73 seconds oda x2 v2 35

46 SLOB - PIO - 1 reader Total time (s) CPU time (s) IO time (s) ODA X V IO ODA: 60/ = ms IO X2: 55/ = ms IO V2: 52/ = ms 36

47 SLOB - PIO - 1 reader This is not random disk IO! Average latency of random IO 15k rpm disk ~ 5ms Average latency of random IO 7.2k rpm disk ~ 8ms So this must come from a cache or is not random disk IO Exadata has flashcache. On ODA, data probably very nearby on disk. 37

48 SLOB - PIO - 1 reader Total time (s) CPU time (s) IO time (s) ODA X V Exadata IO takes (way) more CPU. Roughly the same time is spend on doing IO s. 38

49 10 readers 39

50 4000 SLOB - PIO - 10 readers PIO reader response time oda x2 v2 40

51 4000 SLOB - PIO - 10 readers PIO reader response time 3000 Now IO responsetime on ODA is way higher than Exadata (3008s) oda x2 v2 40

52 4000 SLOB - PIO - 10 readers PIO reader response time 3000 Now IO responsetime on ODA is way higher than Exadata (3008s) Both Exadata s perform alike: X2 581s, V2 588s oda x2 v2 40

53 SLOB - PIO - 10 readers Total time (s) CPU time (s) IO time (s) ODA X V IO ODA: 29428/ = ms IO X2: 5213/ = ms IO V2: 4866/ = ms 41

54 20 readers 42

55 5000 SLOB - PIO - 20 readers PIO reader response time oda x2 v2 43

56 SLOB - PIO - 20 readers Total time (s) CPU time (s) IO time (s) ODA X V IO ODA: 88756/ = = ms IO X2: 13010/ = = ms IO V2: 12405/ = = ms 44

57 6000 SLOB - PIO - 30 readers PIO reader response time oda x2 v2 45

58 6000 SLOB - PIO - 30 readers PIO reader response time 4500 ODA (20 x 15krpm HDD) disk capacity is saturated so response time increases with more readers oda x2 v2 45

59 6000 SLOB - PIO - 30 readers PIO reader response time 4500 ODA (20 x 15krpm HDD) disk capacity is saturated so response time increases with more readers Flashcache is not saturated, so response time of IO of readers increases very little oda x2 v2 45

60 ...up to 80 readers 46

61 10000 SLOB - PIO - 80 readers PIO reader response time oda x2 v2 47

62 10000 SLOB - PIO - 80 readers PIO reader response time ODA response time more or less increases linear oda x2 v2 47

63 10000 SLOB - PIO - 80 readers PIO reader response time ODA response time more or less increases linear X2 flashcache (3x96GB) is not saturated, so little increase in response time oda x2 v2 47

64 10000 SLOB - PIO - 80 readers PIO reader response time ODA response time more or less increases linear The V2 response time (with more flashcache!) starts increasing at 70 readers. A bottleneck is showing up! (7x96GB!!) 2500 X2 flashcache (3x96GB) is not saturated, so little increase in response time oda x2 v2 47

65 SLOB - PIO - 80 readers PIO readers IOPS IOPS view instead of responsetime oda x2 v2 48

66 SLOB - PIO - 80 readers PIO readers IOPS IOPS view instead of responsetime x96GB Flashcache and IB can serve > read IOPS! oda x2 v2 48

67 SLOB - PIO - 80 readers PIO readers IOPS IOPS view instead of responsetime x96GB Flashcache and IB can serve > read IOPS! This V2 has more flashcache, so decline in read IOPS probably due to something else! oda x2 v2 48

68 SLOB - PIO - 80 readers PIO readers IOPS IOPS view instead of responsetime x96GB Flashcache and IB can serve > read IOPS! This V2 has more flashcache, so decline in read IOPS probably due to something else! ODA maxed out at ~ read IOPS oda x2 v2 48

69 SLOB - PIO - 80 readers V2 top 5 timed events with 80 readers: Event Waits Time(s) (ms) time Wait Class cell single block physical rea 102,345,354 56, User I/O latch: cache buffers lru chain 27,187,317 33, Other latch: cache buffers chains 14,736,819 19, Concurrenc DB CPU 13, wait list latch free 932, Other X2 top 5 timed events with 80 readers: Event Waits Time(s) (ms) time Wait Class cell single block physical rea 102,899,953 68, User I/O DB CPU 9, latch: cache buffers lru chain 10,917,303 1, Other latch: cache buffers chains 2,048, Concurrenc cell list of blocks physical r 368, User I/O 49

70 SLOB - PIO - 80 readers V2 top 5 timed events with 80 readers: Event Waits Time(s) (ms) time Wait Class cell single block physical rea 102,345,354 56, User I/O latch: cache buffers lru chain 27,187,317 33, Other latch: cache buffers chains 14,736,819 19, Concurrenc DB CPU 13, wait list latch free 932, Other X2 top 5 timed events with 80 readers: 44.1% Event Waits Time(s) (ms) time Wait Class cell single block physical rea 102,899,953 68, User I/O DB CPU 9, latch: cache buffers lru chain 10,917,303 1, Other latch: cache buffers chains 2,048, Concurrenc cell list of blocks physical r 368, User I/O 49

71 SLOB - PIO - 80 readers V2 top 5 timed events with 80 readers: Event Waits Time(s) (ms) time Wait Class cell single block physical rea 102,345,354 56, User I/O latch: cache buffers lru chain 27,187,317 33, Other latch: cache buffers chains 14,736,819 19, Concurrenc DB CPU 13, wait list latch free 932, Other X2 top 5 timed events with 80 readers: 44.1% Event Waits Time(s) (ms) time Wait Class cell single block physical rea 102,899,953 68, User I/O DB CPU 9, latch: cache buffers lru chain 10,917,303 1, Other2.9% latch: cache buffers chains 2,048, Concurrenc cell list of blocks physical r 368, User I/O 49

72 SLOB - PIO - 80 readers On the V2, cache concurrency control throttles throughput On the X2, this happens only very minimal - V2: CPU: Intel Xeon 2.53GHz (2s8c16t) - X2: CPU: Intel Xeon 2.93GHz (2s12c24t) V2 Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s latch: cache buffers chain 14.7M latch: cache buffers lru c 27.2M X2 latch: cache buffers chain latch: cache buffers lru c 10.9M

73 SLOB - Read IO 1 LIO 80 LIO 1 PIO 80 PIO ODA X2 (HC disks) V2 (HP disks)

74 SLOB - Read IO 1 LIO 80 LIO 1 PIO 80 PIO ODA X2 (HC disks) V2 (HP disks) PIO w/o flashcache 80 PIO w/o flashcache ODA X2 167? (> 18000) V

75 SLOB - Read IO For scalability, OLTP needs buffered IO (LIO) Flashcache is EXTREMELY important physial IO scalability Probably should not let flash be used for something else Unless you can always keep all your small reads in cache 52

76 SLOB - Read IO Flashcache mimics a SAN/NAS cache So nothing groundbreaking here, it does what current, normal infra should do too... The bandwidth needed to deliver the data to the database is provided by Infiniband 1 Gb ethernet = 120MB/s, 4 Gb fiber = 400MB/s Infiniband is generally available outside of Oracle 53

77 SLOB - Read IO How much IOPS can a single cell do? According to entry/inside_the_sun_oracle_database A single cell can do IOPS from flash (8kB) Personal calculation: IOPS with 8kB Flashcache cache Caches small reads* (8kB and less) mostly Large multiblock reads are not cached, unless segment property cell_flash_cache is set to keep. 54

78 SLOB - Read IO Is Exadata a good idea for OLTP? From a strictly technical point of view, there is no benefit. But... Exadata gives you IORM Exadata gives you reasonably up to date hardware Exadata gives a system engineered for performance Exadata gives you dedicated disks Exadata gives a validated combination of database, clusterware, operating system, hardware, firmware. 55

79 Writing and Exadata Exadata storage servers provide NO redundancy for data That s a function of ASM Exadata is configured with either Normal redundancy (mirroring) or High redundancy (triple mirroring) to provide data redundancy. 56

80 Writing and Exadata Reading has no problem with normal/high redundancy. During writes, all two or three AU s need to be written. This means when you calculate write throughput, you need to double all physical writes if using normal redundancy. 57

81 Writing on Exadata But we got flash! Right? Yes, you got flash. But it probably doesn t do what you think it does: 58

82 Writing on Exadata This is on the half rack V2 HP: [] stuff]$ dcli -l celladmin -g cell_group cellcli -e "list metriccurrent where name like \'FL_.*_FIRST\'" dm01cel01: FL_DISK_FIRST dm01cel01: FL_FLASH_FIRST dm01cel02: FL_DISK_FIRST dm01cel02: FL_FLASH_FIRST dm01cel03: FL_DISK_FIRST dm01cel03: FL_FLASH_FIRST dm01cel04: FL_DISK_FIRST dm01cel04: FL_FLASH_FIRST dm01cel05: FL_DISK_FIRST dm01cel05: FL_FLASH_FIRST dm01cel06: FL_DISK_FIRST dm01cel06: FL_FLASH_FIRST dm01cel07: FL_DISK_FIRST dm01cel07: FL_FLASH_FIRST FLASHLOG 316,563 IO requests FLASHLOG 9,143 IO requests FLASHLOG 305,891 IO requests FLASHLOG 7,435 IO requests FLASHLOG 307,634 IO requests FLASHLOG 10,577 IO requests FLASHLOG 299,547 IO requests FLASHLOG 10,381 IO requests FLASHLOG 311,978 IO requests FLASHLOG 10,888 IO requests FLASHLOG 315,084 IO requests FLASHLOG 10,022 IO requests FLASHLOG 323,454 IO requests FLASHLOG 8,807 IO requests 59

83 Writing on Exadata This is on the quarter rack X2 HC: ~]# dcli -l root -g cell_group cellcli -e "list metriccurrent where name like \'FL_.*_FIRST\'" xxxxcel01: FL_DISK_FIRST xxxxcel01: FL_FLASH_FIRST xxxxcel02: FL_DISK_FIRST xxxxcel02: FL_FLASH_FIRST xxxxcel03: FL_DISK_FIRST xxxxcel03: FL_FLASH_FIRST FLASHLOG 68,475,141 IO requests FLASHLOG 9,109,142 IO requests FLASHLOG 68,640,951 IO requests FLASHLOG 9,229,226 IO requests FLASHLOG 68,388,238 IO requests FLASHLOG 9,072,660 IO requests 60

84 Writing on Exadata Please mind these are cumulative numbers! The half-rack is a POC machine, no heavy usage between POC s. The quarter-rack has had some load, but definately not heavy OLTP. 61

85 Writing on Exadata I can imagine flashlog can prevent long write times if disk IO s queue. A normal configured database on Exadata has online redo in DATA and in RECO diskgroup Normal redundancy means every log write must be done 4 times Log writer wait times: V2 min: 16ms (1 writer), max: 41ms (20 writers) X2 min: 39ms (10 writers), max: 110ms (40 writers) 62

86 Writing on Exadata: conclusion Log file write response time on Exadata is not in the same range as reads. There s the flashlog feature, but it might work different than the whitepaper explains Be careful with heavy writing on Exadata. There s no Exadata specific improvement for writes*. 63

87 Thank you for attending! Questions? 64

88 Thanks, Links, etc. VX Company Klaas-Jan Jongsma Martin Bach Kevin Closson 65

Running Oracle on a 32 socket server with 24T of memory

Running Oracle on a 32 socket server with 24T of memory Running Oracle on a 32 socket server with 24T of memory Frits Hoogland 2013 Enkitec 1 `whoami` Frits Hoogland Working with Oracle products since 1996 Blog: hhp://fritshoogland.wordpress.com TwiHer: @fritshoogland

More information

Exadata. Presented by: Kerry Osborne. February 23, 2012

Exadata. Presented by: Kerry Osborne. February 23, 2012 Exadata Presented by: Kerry Osborne February 23, 2012 whoami Worked with Oracle Since 1982 (V2) Working with Exadata since early 2010 Work for Enkitec (www.enkitec.com) (Enkitec owns a Half Rack V2/X2)

More information

The Oracle Database Appliance I/O and Performance Architecture

The Oracle Database Appliance I/O and Performance Architecture Simple Reliable Affordable The Oracle Database Appliance I/O and Performance Architecture Tammy Bednar, Sr. Principal Product Manager, ODA 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

More information

Under the Hood of Oracle Database Appliance. Alex Gorbachev

Under the Hood of Oracle Database Appliance. Alex Gorbachev Under the Hood of Oracle Database Appliance Alex Gorbachev Mountain View, CA 9-Nov-2011 http://bit.ly/pythianasmwebinar 2 Alex Gorbachev CTO, The Pythian Group Blogger OakTable Network member Oracle ACE

More information

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer Oracle Exadata X7 Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer 05.12.2017 Oracle Engineered Systems ZFS Backup Appliance Zero Data Loss Recovery Appliance Exadata Database

More information

What Really Sets Apart Exadata from the Rest

What Really Sets Apart Exadata from the Rest 1 What Really Sets Apart Exadata from the Rest Presented By: Zahid Anwar, Principal Oracle DBA Consultant 3 rd December 2018 Company Classification: Public A bit about myself Principal Oracle DBA Consultant

More information

Maximize Database Join and Sort Performance Utilizing Exadata Flash

Maximize Database Join and Sort Performance Utilizing Exadata Flash Managed Services Cloud Services Consulting Services Licensing Maximize Database Join and Sort Performance Utilizing Exadata Flash Kasey Parker Sr. Enterprise Architect Kasey.Parker@centroid.com Centroid

More information

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration.

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration. Volume: 71 Questions Question No : 1 Which two statements are true about migrating your database to Exadata? A. Because Exadata uses InfiniBand, in order to migrate your database to Exadata, you must have

More information

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant Exadata X3 in action: Measuring Smart Scan efficiency with AWR Franck Pachot Senior Consultant 16 March 2013 1 Exadata X3 in action: Measuring Smart Scan efficiency with AWR Exadata comes with new statistics

More information

Hello, and welcome to this online, self-paced course module covering Exadata Smart Flash Log. My name is Peter Fusek. I am a curriculum developer at

Hello, and welcome to this online, self-paced course module covering Exadata Smart Flash Log. My name is Peter Fusek. I am a curriculum developer at Hello, and welcome to this online, self-paced course module covering Exadata Smart Flash Log. My name is Peter Fusek. I am a curriculum developer at Oracle, and in various roles I have helped customers

More information

Oracle Performance on M5000 with F20 Flash Cache. Benchmark Report September 2011

Oracle Performance on M5000 with F20 Flash Cache. Benchmark Report September 2011 Oracle Performance on M5000 with F20 Flash Cache Benchmark Report September 2011 Contents 1 About Benchware 2 Flash Cache Technology 3 Storage Performance Tests 4 Conclusion copyright 2011 by benchware.ch

More information

Software Defined Storage at the Speed of Flash. PRESENTATION TITLE GOES HERE Carlos Carrero Rajagopal Vaideeswaran Symantec

Software Defined Storage at the Speed of Flash. PRESENTATION TITLE GOES HERE Carlos Carrero Rajagopal Vaideeswaran Symantec Software Defined Storage at the Speed of Flash PRESENTATION TITLE GOES HERE Carlos Carrero Rajagopal Vaideeswaran Symantec Agenda Introduction Software Technology Architecture Review Oracle Configuration

More information

Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c

Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c White Paper Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c What You Will Learn This document demonstrates the benefits

More information

<Insert Picture Here> Boost Linux Performance with Enhancements from Oracle

<Insert Picture Here> Boost Linux Performance with Enhancements from Oracle Boost Linux Performance with Enhancements from Oracle Chris Mason Director of Linux Kernel Engineering Linux Performance on Large Systems Exadata Hardware How large systems are different

More information

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Exadata Security Flash Cache and Log Storage Indexes Parallel Execution Agenda Exadata Security Flash Cache and Log Storage

More information

Exadata Resource Management: Achieve Mind- blowing Performance, Consistently

Exadata Resource Management: Achieve Mind- blowing Performance, Consistently Managed Services Cloud Services Consul3ng Services Licensing Exadata Resource Management: Achieve Mind- blowing Performance, Consistently UTOUG Fall Symposium 2015 Kasey Parker Enterprise Architect Kasey.Parker@centroid.com

More information

Oracle Platform Performance Baseline Oracle 12c on Hitachi VSP G1000. Benchmark Report December 2014

Oracle Platform Performance Baseline Oracle 12c on Hitachi VSP G1000. Benchmark Report December 2014 Oracle Platform Performance Baseline Oracle 12c on Hitachi VSP G1000 Benchmark Report December 2014 Contents 1 System Configuration 2 Introduction into Oracle Platform Performance Tests 3 Storage Benchmark

More information

Solaris Engineered Systems

Solaris Engineered Systems Solaris Engineered Systems SPARC SuperCluster Introduction Andy Harrison andy.harrison@oracle.com Engineered Systems, Revenue Product Engineering The following is intended to outline

More information

Infrastructure at your Service. DOAG Webinar. ODA 12c new features. ODA 12c new features

Infrastructure at your Service. DOAG Webinar. ODA 12c new features. ODA 12c new features Infrastructure at your Service. DOAG Webinar Infrastructure at your Service. About us David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david-.hueber@dbi-services.com www.dbi-services.com Page

More information

<Insert Picture Here> Exadata Hardware Configurations and Environmental Information

<Insert Picture Here> Exadata Hardware Configurations and Environmental Information Exadata Hardware Configurations and Environmental Information Revised July 1, 2011 Agenda Exadata Hardware Overview Environmental Information Power InfiniBand Network Ethernet Network

More information

Evaluation Report: Improving SQL Server Database Performance with Dot Hill AssuredSAN 4824 Flash Upgrades

Evaluation Report: Improving SQL Server Database Performance with Dot Hill AssuredSAN 4824 Flash Upgrades Evaluation Report: Improving SQL Server Database Performance with Dot Hill AssuredSAN 4824 Flash Upgrades Evaluation report prepared under contract with Dot Hill August 2015 Executive Summary Solid state

More information

Identifying Performance Bottlenecks with Real- World Applications and Flash-Based Storage

Identifying Performance Bottlenecks with Real- World Applications and Flash-Based Storage Identifying Performance Bottlenecks with Real- World Applications and Flash-Based Storage TechTarget Dennis Martin 1 Agenda About Demartek Enterprise Data Center Environments Storage Performance Metrics

More information

High Performance SSD & Benefit for Server Application

High Performance SSD & Benefit for Server Application High Performance SSD & Benefit for Server Application AUG 12 th, 2008 Tony Park Marketing INDILINX Co., Ltd. 2008-08-20 1 HDD SATA 3Gbps Memory PCI-e 10G Eth 120MB/s 300MB/s 8GB/s 2GB/s 1GB/s SSD SATA

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Oracle Exam 1z0-027 Oracle Exadata Database Machine X3 Administration Version: 6.13 [ Total Questions: 72 ]

Oracle Exam 1z0-027 Oracle Exadata Database Machine X3 Administration Version: 6.13 [ Total Questions: 72 ] s@lm@n Oracle Exam 1z0-027 Oracle Exadata Database Machine X3 Administration Version: 6.13 [ Total Questions: 72 ] Question No : 1 Which two are Oracle recommendations for media based backups performed

More information

HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads

HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads Gen9 server blades give more performance per dollar for your investment. Executive Summary Information Technology (IT)

More information

Oracle EXAM - 1Z Oracle Exadata Database Machine Administration, Software Release 11.x Exam. Buy Full Product

Oracle EXAM - 1Z Oracle Exadata Database Machine Administration, Software Release 11.x Exam. Buy Full Product Oracle EXAM - 1Z0-027 Oracle Exadata Database Machine Administration, Software Release 11.x Exam Buy Full Product http://www.examskey.com/1z0-027.html Examskey Oracle 1Z0-027 exam demo product is here

More information

International Journal of Computer Engineering and Applications,

International Journal of Computer Engineering and Applications, EXADATA DATABASE MACHINE: CLOUD IMPLEMENTATION- IN A BOX: Lecturer, Dept of Information technology Ranchi Women s College, Ranchi-834001, Jharkhand. dollyviv@gmail.com ABSTRACT: After remaining happy with

More information

Architecting For Availability, Performance & Networking With ScaleIO

Architecting For Availability, Performance & Networking With ScaleIO Architecting For Availability, Performance & Networking With ScaleIO Performance is a set of bottlenecks Performance related components:, Operating Systems Network Drives Performance features: Caching

More information

Storage Optimization with Oracle Database 11g

Storage Optimization with Oracle Database 11g Storage Optimization with Oracle Database 11g Terabytes of Data Reduce Storage Costs by Factor of 10x Data Growth Continues to Outpace Budget Growth Rate of Database Growth 1000 800 600 400 200 1998 2000

More information

Exadata Monitoring and Management Best Practices

Exadata Monitoring and Management Best Practices Exadata Monitoring and Management Best Practices Mughees A. Minhas Oracle Redwood Shores, CA, USA Keywords: Oracle, Exadata, monitoring, management, database, performance, monitor, Enterprise Manager,

More information

Dell Reference Configuration for Large Oracle Database Deployments on Dell EqualLogic Storage

Dell Reference Configuration for Large Oracle Database Deployments on Dell EqualLogic Storage Dell Reference Configuration for Large Oracle Database Deployments on Dell EqualLogic Storage Database Solutions Engineering By Raghunatha M, Ravi Ramappa Dell Product Group October 2009 Executive Summary

More information

<Insert Picture Here> Oracle Exadata Database Machine Introduction and hardware

<Insert Picture Here> Oracle Exadata Database Machine Introduction and hardware Oracle Exadata Database Machine Introduction and hardware Disclaimer This PTS workshop/briefing is intended to provide training and guidance in the latest Oracle products specifically

More information

Experience the GRID Today with Oracle9i RAC

Experience the GRID Today with Oracle9i RAC 1 Experience the GRID Today with Oracle9i RAC Shig Hiura Pre-Sales Engineer Shig_Hiura@etagon.com 2 Agenda Introduction What is the Grid The Database Grid Oracle9i RAC Technology 10g vs. 9iR2 Comparison

More information

Oracle Exadata Performance

Oracle Exadata Performance Yes. You still need to tune. By Kathy Gibbs, Product Manager Presentation to NYOUG Winter General Meeting 12/2011 Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Introduction

More information

FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC

FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC white paper FlashGrid Software Intel SSD DC P3700/P3600/P3500 Topic: Hyper-converged Database/Storage FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC Abstract FlashGrid

More information

88X + PERFORMANCE GAINS USING IBM DB2 WITH BLU ACCELERATION ON INTEL TECHNOLOGY

88X + PERFORMANCE GAINS USING IBM DB2 WITH BLU ACCELERATION ON INTEL TECHNOLOGY 05.11.2013 Thomas Kalb 88X + PERFORMANCE GAINS USING IBM DB2 WITH BLU ACCELERATION ON INTEL TECHNOLOGY Copyright 2013 ITGAIN GmbH 1 About ITGAIN Founded as a DB2 Consulting Company into 2001 DB2 Monitor

More information

ASN Configuration Best Practices

ASN Configuration Best Practices ASN Configuration Best Practices Managed machine Generally used CPUs and RAM amounts are enough for the managed machine: CPU still allows us to read and write data faster than real IO subsystem allows.

More information

The Role of Database Aware Flash Technologies in Accelerating Mission- Critical Databases

The Role of Database Aware Flash Technologies in Accelerating Mission- Critical Databases The Role of Database Aware Flash Technologies in Accelerating Mission- Critical Databases Gurmeet Goindi Principal Product Manager Oracle Flash Memory Summit 2013 Santa Clara, CA 1 Agenda Relational Database

More information

Hyper-converged storage for Oracle RAC based on NVMe SSDs and standard x86 servers

Hyper-converged storage for Oracle RAC based on NVMe SSDs and standard x86 servers Hyper-converged storage for Oracle RAC based on NVMe SSDs and standard x86 servers White Paper rev. 2016-05-18 2015-2016 FlashGrid Inc. 1 www.flashgrid.io Abstract Oracle Real Application Clusters (RAC)

More information

A Flexible Data Warehouse Architecture

A Flexible Data Warehouse Architecture A Flexible Data Warehouse Architecture Building the Ideal Data Warehouse Platform Mike Ault Oracle Guru Texas Memory Systems NYOUG Dec 2010 Michael R. Ault Oracle Guru - Nuclear Navy 6 years - Nuclear

More information

HP SAS benchmark performance tests

HP SAS benchmark performance tests HP SAS benchmark performance tests technology brief Abstract... 2 Introduction... 2 Test hardware... 2 HP ProLiant DL585 server... 2 HP ProLiant DL380 G4 and G4 SAS servers... 3 HP Smart Array P600 SAS

More information

Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions

Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions Providing Superior Server and Storage Performance, Efficiency and Return on Investment As Announced and Demonstrated at

More information

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata combines the best database with the best cloud platform. Exadata is the culmination of more

More information

Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE

Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE Digital transformation is taking place in businesses of all sizes Big Data and Analytics Mobility Internet of Things

More information

Consolidate with Oracle Exadata

Consolidate with Oracle Exadata Consolidate with Oracle Exadata Manage Resources and Availability - CON7770 Sue K. Lee, Director of Development René Kundersma, Consulting Member of Tech. Staff Oracle Server Technologies Oct 1, 2014 Safe

More information

HP visoko-performantna OLTP rješenja

HP visoko-performantna OLTP rješenja HP visoko-performantna OLTP rješenja Tomislav Alpeza Presales Consultant, BCS/SD 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Performance

More information

Independent consultant. (Ex-) Oracle ACE Director. Member of OakTable Network. Performance Troubleshooting In-house workshops

Independent consultant. (Ex-) Oracle ACE Director. Member of OakTable Network. Performance Troubleshooting In-house workshops Independent consultant Performance Troubleshooting In-house workshops Cost-Based Optimizer Performance By Design (Ex-) Oracle ACE Director 2009-2016 Alumni Member of OakTable Network http://oracle-randolf.blogspot.com

More information

Hammerdb Test for OracleRAC with Memblaze PBlaze SSD

Hammerdb Test for OracleRAC with Memblaze PBlaze SSD Hammerdb Test for OracleRAC with Memblaze PBlaze SSD Executive Summary Accompany with the Oracle Engineered Systems portfolio evolution, the NVMe SSD stepped into enterprise application total solution

More information

Referring to Fig 1, suppose the user wants to select the rows of all the customers who are angry. The following query would make it happen:

Referring to Fig 1, suppose the user wants to select the rows of all the customers who are angry. The following query would make it happen: Exadata for Oracle DBAs By Arup Nanda If you are an Oracle DBA familiar with Oracle 11gR2 RAC, clusterware and ASM and about to become a Database Machine Administrator (DMA) the folks who manage an Exadata

More information

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2012, Oracle and/or its affiliates. All rights The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

W H I T E P A P E R. Comparison of Storage Protocol Performance in VMware vsphere 4

W H I T E P A P E R. Comparison of Storage Protocol Performance in VMware vsphere 4 W H I T E P A P E R Comparison of Storage Protocol Performance in VMware vsphere 4 Table of Contents Introduction................................................................... 3 Executive Summary............................................................

More information

E-BUSINESS APPLICATIONS R12 (RUP 3) RECEIVABLES ONLINE PROCESSING: Using Oracle10g on an IBM System P5 595

E-BUSINESS APPLICATIONS R12 (RUP 3) RECEIVABLES ONLINE PROCESSING: Using Oracle10g on an IBM System P5 595 P ERFORMANCE R EPORT O RACLE E-BUSINESS B ENCHMARK R EV. 1.1 E-BUSINESS APPLICATIONS R12 (RUP 3) RECEIVABLES ONLINE PROCESSING: Using Oracle10g on an IBM System P5 595 As a global leader in e-business

More information

Database Solutions Engineering. Best Practices for Deploying SSDs in an Oracle OLTP Environment using Dell TM EqualLogic TM PS Series

Database Solutions Engineering. Best Practices for Deploying SSDs in an Oracle OLTP Environment using Dell TM EqualLogic TM PS Series Best Practices for Deploying SSDs in an Oracle OLTP Environment using Dell TM EqualLogic TM PS Series A Dell Technical White Paper Database Solutions Engineering Dell Product Group April 2009 THIS WHITE

More information

Oracle #1 for Data Warehousing. Data Warehouses Growing Rapidly Tripling In Size Every Two Years

Oracle #1 for Data Warehousing. Data Warehouses Growing Rapidly Tripling In Size Every Two Years Extreme Performance HP Oracle Machine & Exadata Storage Server October 16, 2008 Robert Stackowiak Vice President, EPM & Data Warehousing Solutions, Oracle ESG Oracle #1 for Data Warehousing Microsoft 14.8%

More information

Emulex LPe16000B 16Gb Fibre Channel HBA Evaluation

Emulex LPe16000B 16Gb Fibre Channel HBA Evaluation Demartek Emulex LPe16000B 16Gb Fibre Channel HBA Evaluation Evaluation report prepared under contract with Emulex Executive Summary The computing industry is experiencing an increasing demand for storage

More information

<Insert Picture Here> South Fla Oracle Users Group Oracle/Sun Exadata Database Machine June 3, 2010

<Insert Picture Here> South Fla Oracle Users Group Oracle/Sun Exadata Database Machine June 3, 2010 South Fla Oracle Users Group Oracle/Sun Exadata Database Machine June 3, 2010 Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

PERFORMANCE STUDY OCTOBER 2017 ORACLE MONSTER VIRTUAL MACHINE PERFORMANCE. VMware vsphere 6.5

PERFORMANCE STUDY OCTOBER 2017 ORACLE MONSTER VIRTUAL MACHINE PERFORMANCE. VMware vsphere 6.5 PERFORMANCE STUDY OCTOBER 2017 ORACLE MONSTER VIRTUAL MACHINE PERFORMANCE VMware vsphere 6.5 Table of Contents Executive Summary...3 Introduction...3 Test Environment... 4 Test Workload... 5 Virtual Machine

More information

An Oracle White Paper September Optimizing Oracle Database Performance on Oracle Linux with Flash

An Oracle White Paper September Optimizing Oracle Database Performance on Oracle Linux with Flash An Oracle White Paper September 2014 Optimizing Oracle Database Performance on Oracle Linux with Flash Introduction... 1 Advantages of Using Flash-based Caching / Storage with an Oracle Database and Oracle

More information

VMware VMmark V1.1 Results

VMware VMmark V1.1 Results VMware VMmark V1.1 Results Vendor and Hardware Platform: HP ProLiant DL370 G6 Virtualization Platform: VMware ESX 4.0 build 148783 VMmark V1.1 Score = 23.96 @ 16 Tiles Performance Section Performance Tested

More information

IaaS Vendor Comparison

IaaS Vendor Comparison IaaS Vendor Comparison Analysis of competitor products Tobias Deml Senior Systemberater BU Cloud & Core Technologies February 01, 2018 2 Tobias Deml Senior Systemberater BU Cloud & Core Technologies Topics

More information

JapanCert 専門 IT 認証試験問題集提供者

JapanCert 専門 IT 認証試験問題集提供者 JapanCert 専門 IT 認証試験問題集提供者 http://www.japancert.com 1 年で無料進級することに提供する Exam : 1z0-485 Title : Exadata Database Machine Models X3-2 and X3-8 Implementation Essentials Vendor : Oracle Version : DEMO 1 / 5

More information

<Insert Picture Here> Introducing Exadata X3

<Insert Picture Here> Introducing Exadata X3 Introducing Exadata X3 Exadata X3 Hardware Overview Overall Exadata Architecture remains the same - Working great, no need for change - DB Machine names change from X2 to X3 (e.g.

More information

Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2017

Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2017 Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2017 Disclaimer The following is intended to outline our general product direction. It is intended for

More information

Oracle Database Appliance

Oracle Database Appliance Oracle Database Appliance Robert van Espelo EMEA Lead for Oracle Database Appliance Hardware Business Development Oracle Database Appliance Simple. Reliable. Affordable. Available

More information

Mass-Storage Structure

Mass-Storage Structure Operating Systems (Fall/Winter 2018) Mass-Storage Structure Yajin Zhou (http://yajin.org) Zhejiang University Acknowledgement: some pages are based on the slides from Zhi Wang(fsu). Review On-disk structure

More information

System Design for a Million TPS

System Design for a Million TPS System Design for a Million TPS Hüsnü Sensoy Global Maksimum Data & Information Technologies Global Maksimum Data & Information Technologies Focused just on large scale data and information problems. Complex

More information

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : 1z1-070 Title : Oracle Exadata X5 Administration Vendor : Oracle Version : DEMO Get

More information

Achieving Memory Level Performance: Secrets Beyond Shared Flash

Achieving Memory Level Performance: Secrets Beyond Shared Flash Achieving Memory Level Performance: Secrets Beyond Shared Flash Kothanda (Kodi) Umamageswaran Vice President, Exadata Development Gurmeet Goindi Exadata Product Management Safe Harbor Statement The following

More information

Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help

Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help Presented at Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help Jacco H. Landlust Platform Architect Director Oracle Consulting NL, Core Technology December, 2014

More information

Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2018

Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2018 Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2018 Disclaimer The following is intended to outline our general product direction. It is intended for

More information

Making Storage Smarter Jim Williams Martin K. Petersen

Making Storage Smarter Jim Williams Martin K. Petersen Making Storage Smarter Jim Williams Martin K. Petersen Agenda r Background r Examples r Current Work r Future 2 Definition r Storage is made smarter by exchanging information between the application and

More information

Arup Nanda Longtime Oracle DBA (and now DMA)

Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA)

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

DISCLAIMER 2 PURPOSE 3

DISCLAIMER 2 PURPOSE 3 SLOB 2 DISCLAIMER 2 PURPOSE 3 SLOB 2 FUNCTIONALITY IN COMMON WITH PRIOR VERSIONS 3 TABLESPACE REQUIREMENT 3 SYS V IPC SEMAPHORES 3 DATABASE CREATION KIT 3 THE RUNIT.SH SCRIPT 3 CATCHING UP ON THE PAST

More information

BENEFITS AND BEST PRACTICES FOR DEPLOYING SSDS IN AN OLTP ENVIRONMENT USING DELL EQUALLOGIC PS SERIES

BENEFITS AND BEST PRACTICES FOR DEPLOYING SSDS IN AN OLTP ENVIRONMENT USING DELL EQUALLOGIC PS SERIES WHITE PAPER BENEFITS AND BEST PRACTICES FOR DEPLOYING SSDS IN AN OLTP ENVIRONMENT USING DELL EQUALLOGIC PS SERIES Using Solid State Disks (SSDs) in enterprise storage arrays is one of today s hottest storage

More information

Oracle Enterprise Architecture. Software. Hardware. Complete. Oracle Exalogic.

Oracle Enterprise Architecture. Software. Hardware. Complete. Oracle Exalogic. Oracle Enterprise Architecture Software. Hardware. Complete Oracle Exalogic edward.zhang@oracle.com Exalogic Exalogic Exalogic -- Exalogic Design Center Exalogic - Sun Oracle - - - CPU/Memory/Networking/Storage

More information

Oracle Database 11g Direct NFS Client Oracle Open World - November 2007

Oracle Database 11g Direct NFS Client Oracle Open World - November 2007 Oracle Database 11g Client Oracle Open World - November 2007 Bill Hodak Sr. Product Manager Oracle Corporation Kevin Closson Performance Architect Oracle Corporation Introduction

More information

RIGHTNOW A C E

RIGHTNOW A C E RIGHTNOW A C E 2 0 1 4 2014 Aras 1 A C E 2 0 1 4 Scalability Test Projects Understanding the results 2014 Aras Overview Original Use Case Scalability vs Performance Scale to? Scaling the Database Server

More information

Building blocks for high performance DWH Computing

Building blocks for high performance DWH Computing Building blocks for high performance DWH Computing Wolfgang Höfer, Nuremberg, 18 st November 2010 Copyright 2010 Fujitsu Technology Solutions Current trends (1) Intel/AMD CPU performance is growing fast

More information

REQUEST FOR PROPOSAL FOR PROCUREMENT OF

REQUEST FOR PROPOSAL FOR PROCUREMENT OF REQUEST FOR PROPOSAL FOR PROCUREMENT OF Upgrade of department RFP No.: SBI/GITC/ATM/2018-19/481 : 18/05/2018 Corrigendum II dated 30/05/2018 to Ref: SBI/GITC/ATM/2018-19/481 : 18/05/2018 State Bank of

More information

Extremely Fast Distributed Storage for Cloud Service Providers

Extremely Fast Distributed Storage for Cloud Service Providers Solution brief Intel Storage Builders StorPool Storage Intel SSD DC S3510 Series Intel Xeon Processor E3 and E5 Families Intel Ethernet Converged Network Adapter X710 Family Extremely Fast Distributed

More information

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic

An Oracle White Paper September Oracle Utilities Meter Data Management Demonstrates Extreme Performance on Oracle Exadata/Exalogic An Oracle White Paper September 2011 Oracle Utilities Meter Data Management 2.0.1 Demonstrates Extreme Performance on Oracle Exadata/Exalogic Introduction New utilities technologies are bringing with them

More information

YOUR machine and MY database a performing relationship!? (#141)

YOUR machine and MY database a performing relationship!? (#141) YOUR machine and MY database a performing relationship!? (#141) Martin Klier Senior / Lead DBA Klug GmbH integrierte Systeme Las Vegas, April 10th, 2014 Agenda Introduction NUMA + Huge Pages Disk IO Concurrency

More information

EMC VFCache. Performance. Intelligence. Protection. #VFCache. Copyright 2012 EMC Corporation. All rights reserved.

EMC VFCache. Performance. Intelligence. Protection. #VFCache. Copyright 2012 EMC Corporation. All rights reserved. EMC VFCache Performance. Intelligence. Protection. #VFCache Brian Sorby Director, Business Development EMC Corporation The Performance Gap Xeon E7-4800 CPU Performance Increases 100x Every Decade Pentium

More information

Choosing Hardware and Operating Systems for MySQL. Apr 15, 2009 O'Reilly MySQL Conference and Expo Santa Clara,CA by Peter Zaitsev, Percona Inc

Choosing Hardware and Operating Systems for MySQL. Apr 15, 2009 O'Reilly MySQL Conference and Expo Santa Clara,CA by Peter Zaitsev, Percona Inc Choosing Hardware and Operating Systems for MySQL Apr 15, 2009 O'Reilly MySQL Conference and Expo Santa Clara,CA by Peter Zaitsev, Percona Inc -2- We will speak about Choosing Hardware Choosing Operating

More information

Avaya IQ 5.1 Database Server Configuration Recommendations And Oracle Guidelines

Avaya IQ 5.1 Database Server Configuration Recommendations And Oracle Guidelines Avaya IQ 5.1 Database Server Configuration Recommendations Avaya IQ Database Server Page 2 of 11 Issue 4.0 1. INTRODUCTION... 3 1.1 Purpose...3 1.2 BACKGROUND...3 1.3 Terminology...3 2. CONFIGURING IQ

More information

Persistent Memory. High Speed and Low Latency. White Paper M-WP006

Persistent Memory. High Speed and Low Latency. White Paper M-WP006 Persistent Memory High Speed and Low Latency White Paper M-WP6 Corporate Headquarters: 3987 Eureka Dr., Newark, CA 9456, USA Tel: (51) 623-1231 Fax: (51) 623-1434 E-mail: info@smartm.com Customer Service:

More information

IBM FlashSystem. IBM FLiP Tool Wie viel schneller kann Ihr IBM i Power Server mit IBM FlashSystem 900 / V9000 Storage sein?

IBM FlashSystem. IBM FLiP Tool Wie viel schneller kann Ihr IBM i Power Server mit IBM FlashSystem 900 / V9000 Storage sein? FlashSystem Family 2015 IBM FlashSystem IBM FLiP Tool Wie viel schneller kann Ihr IBM i Power Server mit IBM FlashSystem 900 / V9000 Storage sein? PiRT - Power i Round Table 17 Sep. 2015 Daniel Gysin IBM

More information

Consolidating Microsoft SQL Server databases on PowerEdge R930 server

Consolidating Microsoft SQL Server databases on PowerEdge R930 server Consolidating Microsoft SQL Server databases on PowerEdge R930 server This white paper showcases PowerEdge R930 computing capabilities in consolidating SQL Server OLTP databases in a virtual environment.

More information

HP ProLiant DL380 Gen8 and HP PCle LE Workload Accelerator 28TB/45TB Data Warehouse Fast Track Reference Architecture

HP ProLiant DL380 Gen8 and HP PCle LE Workload Accelerator 28TB/45TB Data Warehouse Fast Track Reference Architecture HP ProLiant DL380 Gen8 and HP PCle LE Workload Accelerator 28TB/45TB Data Warehouse Fast Track Reference Architecture Based on Microsoft SQL Server 2014 Data Warehouse Fast Track (DWFT) Reference Architecture

More information

Running E-Business Suite on Exadata: Technical Details. April 25, 2017

Running E-Business Suite on Exadata: Technical Details. April 25, 2017 Running E-Business Suite on Exadata: Technical Details April 25, 2017 Gary Gordhamer Principal Technologist ERP Infrastructure Power & Water Technology GE Power & Water 25 years of IT experience 24 years

More information

ORACLE EXADATA DATABASE MACHINE X2-2

ORACLE EXADATA DATABASE MACHINE X2-2 ORACLE EXADATA DATABASE MACHINE X2-2 FEATURES AND FACTS FEATURES Up to 96 CPU cores and 768 GB memory for database processing Up to 168 CPU cores for storage processing From 2 to 8 database servers From

More information

IBM FlashSystems with IBM i

IBM FlashSystems with IBM i IBM FlashSystems with IBM i Proof of Concept & Performance Testing Fabian Michel Client Technical Architect 1 2012 IBM Corporation Abstract This document summarizes the results of a first Proof of Concept

More information

Arrow Oracle Authorized Solution Center

Arrow Oracle Authorized Solution Center Arrow Oracle Authorized Solution Center EXADATA Oracle Exadata X4-2 1/8 HC 2 x Database Servers: The Oracle Exadata Database Machine is engineered to be the highest performing and most available platform

More information

Technical White paper Certification of ETERNUS DX in Milestone video surveillance environment

Technical White paper Certification of ETERNUS DX in Milestone video surveillance environment Technical White paper Certification of ETERNUS DX in Milestone video surveillance environment This white paper describes the certification tasks for Milestone video surveillance solutions with ETERNUS

More information

TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage

TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage Performance Study of Microsoft SQL Server 2016 Dell Engineering February 2017 Table of contents

More information

Reducing CPU and network overhead for small I/O requests in network storage protocols over raw Ethernet

Reducing CPU and network overhead for small I/O requests in network storage protocols over raw Ethernet Reducing CPU and network overhead for small I/O requests in network storage protocols over raw Ethernet Pilar González-Férez and Angelos Bilas 31 th International Conference on Massive Storage Systems

More information

Hard Disk Drives (HDDs)

Hard Disk Drives (HDDs) Hard Disk Drives (HDDs) Jinkyu Jeong (jinkyu@skku.edu) Computer Systems Laboratory Sungkyunkwan University http://csl.skku.edu EEE3052: Introduction to Operating Systems, Fall 2017, Jinkyu Jeong (jinkyu@skku.edu)

More information

Meltdown and Spectre Interconnect Performance Evaluation Jan Mellanox Technologies

Meltdown and Spectre Interconnect Performance Evaluation Jan Mellanox Technologies Meltdown and Spectre Interconnect Evaluation Jan 2018 1 Meltdown and Spectre - Background Most modern processors perform speculative execution This speculation can be measured, disclosing information about

More information