SlideShare a Scribd company logo
1 of 35
Firebird ppeerrffoorrmmaannccee ccoouunntteerrss 
iinn ddeettaaiillss 
Dmitry Yemanov 
mailto:dimitr@firebirdsql.org 
Firebird Project 
http://www.firebirdsql.org/
TThhaannkk yyoouu 
FIREBIRD INTERNATIONAL CONFERENCE '2014 2
AAnnaallyyssiinngg bboottttlleenneecckkss 
Disk 
Database 
Temporary files 
FIREBIRD INTERNATIONAL CONFERENCE '2014 3
AAnnaallyyssiinngg bboottttlleenneecckkss 
Disk 
Database 
Temporary files 
Memory 
Static (cache) 
Dynamic (pools) 
Shared 
FIREBIRD INTERNATIONAL CONFERENCE '2014 4
AAnnaallyyssiinngg bboottttlleenneecckkss 
CPU, waits, etc 
Real execution time 
User/kernel time 
Was time spent for work or waiting? 
What operations were performed? 
FIREBIRD INTERNATIONAL CONFERENCE '2014 5
LLeeggaaccyy ppeerrffoorrmmaannccee ccoouunntteerrss 
Page level 
Fetches, reads, marks, writes 
Shared in SS, per connection in CS 
Available via API 
FIREBIRD INTERNATIONAL CONFERENCE '2014 6
LLeeggaaccyy ppeerrffoorrmmaannccee ccoouunntteerrss 
Page level 
Fetches, reads, marks, writes 
Shared in SS, per connection in CS 
Available via API 
Record level 
Selected (seq/idx), inserted, updated, deleted etc 
Per connection and per table 
Available via API 
FIREBIRD INTERNATIONAL CONFERENCE '2014 7
IImmpprroovveemmeennttss iinn FFiirreebbiirrdd 22..xx 
Multi-level aggregated counters 
Database (SS only) 
Connection 
Transaction 
Statement 
Nested PSQL call (procedure / trigger) 
FIREBIRD INTERNATIONAL CONFERENCE '2014 8
IImmpprroovveemmeennttss iinn FFiirreebbiirrdd 22..xx 
Multi-level aggregated counters 
Database 
Connection 1 Connection 2 
Transaction 1 Transaction 2 
Statement 1 Statement 1 
FIREBIRD INTERNATIONAL CONFERENCE '2014 9
IImmpprroovveemmeennttss iinn FFiirreebbiirrdd 22..xx 
New interfaces 
Monitoring tables 
Trace/audit 
FIREBIRD INTERNATIONAL CONFERENCE '2014 10
PPaaggee lleevveell ccoouunntteerrss 
Page reads 
From disk to the page cache (physical reads) 
Usually means a cache miss 
FIREBIRD INTERNATIONAL CONFERENCE '2014 11
PPaaggee lleevveell ccoouunntteerrss 
Page reads 
From disk to the page cache (physical reads) 
Usually means a cache miss 
Page fetches 
Access page in cache (logical reads) 
Includes both cache hits and cache misses 
Corresponds to a shared page lock / latch 
FIREBIRD INTERNATIONAL CONFERENCE '2014 12
PPaaggee lleevveell ccoouunntteerrss 
Page reads 
From disk to the page cache (physical reads) 
Usually means a cache miss 
Page fetches 
Access page in cache (logical reads) 
Includes both cache hits and cache misses 
Corresponds to a shared page lock / latch 
Cache hit ratio = 1 - reads / fetches ??? 
FIREBIRD INTERNATIONAL CONFERENCE '2014 13
PPaaggee lleevveell ccoouunntteerrss 
Page writes 
From the page cache to disk (physical writes) 
At transaction commit/rollback 
Cache is full of dirty pages 
Asynchronous notification is received (CS/SC) 
Immediately after modification 
FIREBIRD INTERNATIONAL CONFERENCE '2014 14
PPaaggee lleevveell ccoouunntteerrss 
Page writes 
From the page cache to disk (physical writes) 
At transaction commit/rollback 
Cache is full of dirty pages 
Asynchronous notification is received (CS/SC) 
Immediately after modification 
Page marks 
Access page in cache (logical writes) 
Corresponds to an exclusive page lock / latch 
FIREBIRD INTERNATIONAL CONFERENCE '2014 15
RReeccoorrdd lleevveell ccoouunntteerrss 
Sequential record reads 
Records retrieved through a full table scan 
Includes sweep 
Indexed record reads 
Records retrieved positionally 
Includes bitmap index scans, index navigational 
walks, DBKEY based retrievals 
FIREBIRD INTERNATIONAL CONFERENCE '2014 16
RReeccoorrdd lleevveell ccoouunntteerrss 
Record inserts, updates, deletes 
Pretty obvious, huh? 
FIREBIRD INTERNATIONAL CONFERENCE '2014 17
RReeccoorrdd lleevveell ccoouunntteerrss 
Record inserts, updates, deletes 
Pretty obvious, huh? 
Record backouts 
Latest (uncommitted) version removed 
Happens after savepoint rollback, explicit or implicit 
May happen after transaction rollback 
FIREBIRD INTERNATIONAL CONFERENCE '2014 18
RReeccoorrdd lleevveell ccoouunntteerrss 
Record purges 
Old versions removed while keeping the primary 
version in place 
Outdated versions found while chasing 
FIREBIRD INTERNATIONAL CONFERENCE '2014 19
RReeccoorrdd lleevveell ccoouunntteerrss 
Record purges 
Old versions removed while keeping the primary 
version in place 
Outdated versions found while chasing 
Record expunges 
Whole version chains removed, along with the 
primary version 
Record is deleted and nobody is interested 
FIREBIRD INTERNATIONAL CONFERENCE '2014 20
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
Record repeated reads 
Record is retrieved multiple times 
BEFORE triggers 
Sort-based updates/deletes 
FIREBIRD INTERNATIONAL CONFERENCE '2014 21
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
Record repeated reads 
Record is retrieved multiple times 
BEFORE triggers 
Sort-based updates/deletes 
Record locks 
Record is selected usng WITH LOCK clause 
FIREBIRD INTERNATIONAL CONFERENCE '2014 22
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
Record waits 
Attempts to update/delete/lock record 
owned by a concurrent active transaction 
Transaction is in the WAIT mode 
FIREBIRD INTERNATIONAL CONFERENCE '2014 23
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
Record waits 
Attempts to update/delete/lock record 
owned by a concurrent active transaction 
Transaction is in the WAIT mode 
Record conflicts 
Unsuccessful attempts to update/delete/lock record 
owned by a concurrent active transaction 
UPDATE CONFLICT is reported 
FIREBIRD INTERNATIONAL CONFERENCE '2014 24
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
Backversion reads 
Versions chased while finding a visible one 
Means old snapshots 
FIREBIRD INTERNATIONAL CONFERENCE '2014 25
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
Backversion reads 
Versions chased while finding a visible one 
Means old snapshots 
Fragment reads 
Fragmented records 
Means extra page fetches/reads 
FIREBIRD INTERNATIONAL CONFERENCE '2014 26
NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx 
MON$TABLE_STATS MON$RECORD_STATS 
MON$STATS_ID 
MON$STATS_GROUP 
MON$TABLE_NAME 
MON$RECORD_STATS_ID 
MON$STATS_ID 
MON$STATS_GROUP 
MON$RECORD_SEQ_READS 
MON$RECORD_IDX_READS 
etc 
FIREBIRD INTERNATIONAL CONFERENCE '2014 27
TTOODDOO:: ppaaggee lleevveell ccoouunntteerrss 
Page writes (expanded) 
Regular writes (immediate / commit / rollback) 
Overflow writes 
Asynchronous writes 
FIREBIRD INTERNATIONAL CONFERENCE '2014 28
TTOODDOO:: ppaaggee lleevveell ccoouunntteerrss 
Page writes (expanded) 
Regular writes (immediate / commit / rollback) 
Overflow writes 
Asynchronous writes 
Page waits 
How many times page requests waited 
Shows contention inside the page cache 
FIREBIRD INTERNATIONAL CONFERENCE '2014 29
TTOODDOO:: iinnddeexx ccoouunntteerrss 
Possible metrics 
Index scans 
Node inserts / deletes 
Bucket splits / merges 
Keys scanned / compared while searching 
Reported per index 
MON$INDEX_STATS 
FIREBIRD INTERNATIONAL CONFERENCE '2014 30
TTOODDOO:: tteemmppoorraarryy ssppaaccee ccoouunntteerrss 
Operation metrics 
Reads / writes resolved through the cache 
Reads / writes redirected to temp files 
I/O amount metrics 
Bytes read / written through the cache 
Bytes read / written from/to temp files 
FIREBIRD INTERNATIONAL CONFERENCE '2014 31
TTOODDOO:: ttiimmee ssttaattiissttiiccss 
Elapsed time 
Total inside the engine 
Spent in the user space 
Spent in the system / kernel space 
FIREBIRD INTERNATIONAL CONFERENCE '2014 32
TTOODDOO:: ttiimmee ssttaattiissttiiccss 
Elapsed time 
Total inside the engine 
Spent in the user space 
Spent in the system / kernel space 
Wait time 
Database (and maybe temp files) I/O 
Page cache waits 
Transaction waits 
FIREBIRD INTERNATIONAL CONFERENCE '2014 33
TTOODDOO:: iinntteeggrraattiioonn 
Collecting the statistics 
StatsD, CollectD 
Reporting / analyzing 
Graphite / Graphene 
Other tools 
Nagios, Cacti, Zabbix 
FIREBIRD INTERNATIONAL CONFERENCE '2014 34
QQuueessttiioonnss?? 
mailto:dimitr@firebirdsql.org 
FIREBIRD INTERNATIONAL CONFERENCE '2014 35

More Related Content

What's hot

OpenZFS data-driven performance
OpenZFS data-driven performanceOpenZFS data-driven performance
OpenZFS data-driven performanceahl0003
 
Putting Wings on the Elephant
Putting Wings on the ElephantPutting Wings on the Elephant
Putting Wings on the ElephantDataWorks Summit
 
Filesystem Showdown: What a Difference a Decade Makes
Filesystem Showdown: What a Difference a Decade MakesFilesystem Showdown: What a Difference a Decade Makes
Filesystem Showdown: What a Difference a Decade MakesPerforce
 
Lisa 2015-gluster fs-hands-on
Lisa 2015-gluster fs-hands-onLisa 2015-gluster fs-hands-on
Lisa 2015-gluster fs-hands-onGluster.org
 
Kernel Recipes 2016 - Kernel documentation: what we have and where it’s going
Kernel Recipes 2016 - Kernel documentation: what we have and where it’s goingKernel Recipes 2016 - Kernel documentation: what we have and where it’s going
Kernel Recipes 2016 - Kernel documentation: what we have and where it’s goingAnne Nicolas
 
Securing Apache Web Servers
Securing Apache Web ServersSecuring Apache Web Servers
Securing Apache Web Serverswebhostingguy
 
Journey to Stability: Petabyte Ceph Cluster in OpenStack Cloud
Journey to Stability: Petabyte Ceph Cluster in OpenStack CloudJourney to Stability: Petabyte Ceph Cluster in OpenStack Cloud
Journey to Stability: Petabyte Ceph Cluster in OpenStack CloudPatrick McGarry
 
EVCache: Lowering Costs for a Low Latency Cache with RocksDB
EVCache: Lowering Costs for a Low Latency Cache with RocksDBEVCache: Lowering Costs for a Low Latency Cache with RocksDB
EVCache: Lowering Costs for a Low Latency Cache with RocksDBScott Mansfield
 
Branch Management in Git Fusion
Branch Management in Git FusionBranch Management in Git Fusion
Branch Management in Git FusionPerforce
 
My Sql Performance In A Cloud
My Sql Performance In A CloudMy Sql Performance In A Cloud
My Sql Performance In A CloudSky Jian
 
Windows Server 2016 Webinar
Windows Server 2016 WebinarWindows Server 2016 Webinar
Windows Server 2016 WebinarMen and Mice
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture ForumChristopher Spring
 
Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...
Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...
Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...Anne Nicolas
 
Optimizing MongoDB: Lessons Learned at Localytics
Optimizing MongoDB: Lessons Learned at LocalyticsOptimizing MongoDB: Lessons Learned at Localytics
Optimizing MongoDB: Lessons Learned at Localyticsandrew311
 
Distributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentdDistributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentdSATOSHI TAGOMORI
 

What's hot (20)

OpenZFS data-driven performance
OpenZFS data-driven performanceOpenZFS data-driven performance
OpenZFS data-driven performance
 
Putting Wings on the Elephant
Putting Wings on the ElephantPutting Wings on the Elephant
Putting Wings on the Elephant
 
Filesystem Showdown: What a Difference a Decade Makes
Filesystem Showdown: What a Difference a Decade MakesFilesystem Showdown: What a Difference a Decade Makes
Filesystem Showdown: What a Difference a Decade Makes
 
Lisa 2015-gluster fs-hands-on
Lisa 2015-gluster fs-hands-onLisa 2015-gluster fs-hands-on
Lisa 2015-gluster fs-hands-on
 
Backups
BackupsBackups
Backups
 
Kernel Recipes 2016 - Kernel documentation: what we have and where it’s going
Kernel Recipes 2016 - Kernel documentation: what we have and where it’s goingKernel Recipes 2016 - Kernel documentation: what we have and where it’s going
Kernel Recipes 2016 - Kernel documentation: what we have and where it’s going
 
Securing Apache Web Servers
Securing Apache Web ServersSecuring Apache Web Servers
Securing Apache Web Servers
 
Redis 101
Redis 101Redis 101
Redis 101
 
Redis Persistence
Redis  PersistenceRedis  Persistence
Redis Persistence
 
Docker Intro
Docker IntroDocker Intro
Docker Intro
 
Journey to Stability: Petabyte Ceph Cluster in OpenStack Cloud
Journey to Stability: Petabyte Ceph Cluster in OpenStack CloudJourney to Stability: Petabyte Ceph Cluster in OpenStack Cloud
Journey to Stability: Petabyte Ceph Cluster in OpenStack Cloud
 
EVCache: Lowering Costs for a Low Latency Cache with RocksDB
EVCache: Lowering Costs for a Low Latency Cache with RocksDBEVCache: Lowering Costs for a Low Latency Cache with RocksDB
EVCache: Lowering Costs for a Low Latency Cache with RocksDB
 
Branch Management in Git Fusion
Branch Management in Git FusionBranch Management in Git Fusion
Branch Management in Git Fusion
 
My Sql Performance In A Cloud
My Sql Performance In A CloudMy Sql Performance In A Cloud
My Sql Performance In A Cloud
 
Windows Server 2016 Webinar
Windows Server 2016 WebinarWindows Server 2016 Webinar
Windows Server 2016 Webinar
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture Forum
 
Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...
Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...
Kernel Recipes 2016 - Would an ABI changes visualization tool be useful to Li...
 
Optimizing MongoDB: Lessons Learned at Localytics
Optimizing MongoDB: Lessons Learned at LocalyticsOptimizing MongoDB: Lessons Learned at Localytics
Optimizing MongoDB: Lessons Learned at Localytics
 
Distributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentdDistributed Stream Processing on Fluentd / #fluentd
Distributed Stream Processing on Fluentd / #fluentd
 
Tuning Solr & Pipeline for Logs
Tuning Solr & Pipeline for LogsTuning Solr & Pipeline for Logs
Tuning Solr & Pipeline for Logs
 

Viewers also liked

Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...
Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...
Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...artba
 
Resolving Firebird performance problems
Resolving Firebird performance problemsResolving Firebird performance problems
Resolving Firebird performance problemsAlexey Kovyazin
 
Orphans, Corruption, Careful Write, and Logging
Orphans, Corruption, Careful Write, and LoggingOrphans, Corruption, Careful Write, and Logging
Orphans, Corruption, Careful Write, and LoggingMind The Firebird
 
09/25/13: Senate EPW Highway Trust Fund Hearing
09/25/13: Senate EPW Highway Trust Fund Hearing09/25/13: Senate EPW Highway Trust Fund Hearing
09/25/13: Senate EPW Highway Trust Fund Hearingartba
 
Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...
Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...
Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...artba
 
Comments Objecting to ESA protections for the Long-Eared Bat
Comments Objecting to ESA protections for the Long-Eared BatComments Objecting to ESA protections for the Long-Eared Bat
Comments Objecting to ESA protections for the Long-Eared Batartba
 
Keeping Denial of Service and Financial Fraud out of Your Contact Center
Keeping Denial of Service and Financial Fraud out of Your Contact CenterKeeping Denial of Service and Financial Fraud out of Your Contact Center
Keeping Denial of Service and Financial Fraud out of Your Contact CenterCase IQ
 
02/12/14: Testimony to Senate Environment & Public Works Committee
02/12/14: Testimony to Senate Environment & Public Works Committee02/12/14: Testimony to Senate Environment & Public Works Committee
02/12/14: Testimony to Senate Environment & Public Works Committeeartba
 
Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...
Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...
Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...artba
 
Athfield house, Wellington, New Zealand (Architect: Ian Athfield)
Athfield house, Wellington, New Zealand (Architect: Ian Athfield)Athfield house, Wellington, New Zealand (Architect: Ian Athfield)
Athfield house, Wellington, New Zealand (Architect: Ian Athfield)Simon Devitt Photographer
 
Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...
Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...
Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...artba
 
How to translate patient information leaflets
How to translate patient information leafletsHow to translate patient information leaflets
How to translate patient information leafletsMaja Źróbecka, MITI
 
The Experience Comes First (STC New England - InterChange2016)
The Experience Comes First (STC New England - InterChange2016)The Experience Comes First (STC New England - InterChange2016)
The Experience Comes First (STC New England - InterChange2016)Deborah Sauer
 
04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency
04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency
04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvencyartba
 
Artba Senate Finance Committee May
Artba Senate Finance Committee MayArtba Senate Finance Committee May
Artba Senate Finance Committee Mayartba
 
FHWA MOU with the State of Alaska Regarding Delegation of CEs.
FHWA MOU with the State of Alaska Regarding Delegation of CEs.FHWA MOU with the State of Alaska Regarding Delegation of CEs.
FHWA MOU with the State of Alaska Regarding Delegation of CEs.artba
 

Viewers also liked (20)

Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...
Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...
Coalition Letter to House of Representatives on Failure to Advance S. 1140, t...
 
Measuring Firebird Disk I/O
Measuring Firebird Disk I/OMeasuring Firebird Disk I/O
Measuring Firebird Disk I/O
 
Resolving Firebird performance problems
Resolving Firebird performance problemsResolving Firebird performance problems
Resolving Firebird performance problems
 
Orphans, Corruption, Careful Write, and Logging
Orphans, Corruption, Careful Write, and LoggingOrphans, Corruption, Careful Write, and Logging
Orphans, Corruption, Careful Write, and Logging
 
09/25/13: Senate EPW Highway Trust Fund Hearing
09/25/13: Senate EPW Highway Trust Fund Hearing09/25/13: Senate EPW Highway Trust Fund Hearing
09/25/13: Senate EPW Highway Trust Fund Hearing
 
Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...
Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...
Coalition Letter to House Energy and Commerce Committee Leaders on Chemical S...
 
Comments Objecting to ESA protections for the Long-Eared Bat
Comments Objecting to ESA protections for the Long-Eared BatComments Objecting to ESA protections for the Long-Eared Bat
Comments Objecting to ESA protections for the Long-Eared Bat
 
Git Going With DVCS v1.1
Git Going With DVCS v1.1Git Going With DVCS v1.1
Git Going With DVCS v1.1
 
Matapouri beach house
Matapouri beach houseMatapouri beach house
Matapouri beach house
 
Keeping Denial of Service and Financial Fraud out of Your Contact Center
Keeping Denial of Service and Financial Fraud out of Your Contact CenterKeeping Denial of Service and Financial Fraud out of Your Contact Center
Keeping Denial of Service and Financial Fraud out of Your Contact Center
 
02/12/14: Testimony to Senate Environment & Public Works Committee
02/12/14: Testimony to Senate Environment & Public Works Committee02/12/14: Testimony to Senate Environment & Public Works Committee
02/12/14: Testimony to Senate Environment & Public Works Committee
 
Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...
Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...
Coalition Comments on OSHA Clarification to Workplace Injury and Illness Regu...
 
Athfield house, Wellington, New Zealand (Architect: Ian Athfield)
Athfield house, Wellington, New Zealand (Architect: Ian Athfield)Athfield house, Wellington, New Zealand (Architect: Ian Athfield)
Athfield house, Wellington, New Zealand (Architect: Ian Athfield)
 
Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...
Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...
Coalition Letter to Senate Majority Leader McConnell (R-Ky) on Chemical Safet...
 
How to translate patient information leaflets
How to translate patient information leafletsHow to translate patient information leaflets
How to translate patient information leaflets
 
The Experience Comes First (STC New England - InterChange2016)
The Experience Comes First (STC New England - InterChange2016)The Experience Comes First (STC New England - InterChange2016)
The Experience Comes First (STC New England - InterChange2016)
 
Harvey house
Harvey houseHarvey house
Harvey house
 
04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency
04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency
04/24/13: State of the Highway Trust Fund: Long-Term Solutions for Solvency
 
Artba Senate Finance Committee May
Artba Senate Finance Committee MayArtba Senate Finance Committee May
Artba Senate Finance Committee May
 
FHWA MOU with the State of Alaska Regarding Delegation of CEs.
FHWA MOU with the State of Alaska Regarding Delegation of CEs.FHWA MOU with the State of Alaska Regarding Delegation of CEs.
FHWA MOU with the State of Alaska Regarding Delegation of CEs.
 

Similar to Firebird Performance counters in details

Rendering Large Models in the Browser in Real-Time
Rendering Large Models in the Browser in Real-TimeRendering Large Models in the Browser in Real-Time
Rendering Large Models in the Browser in Real-TimeC4Media
 
Experiences building a distributed shared log on RADOS - Noah Watkins
Experiences building a distributed shared log on RADOS - Noah WatkinsExperiences building a distributed shared log on RADOS - Noah Watkins
Experiences building a distributed shared log on RADOS - Noah WatkinsCeph Community
 
QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?Pradeep Kumar
 
Linaro Connect 2017 - Presentation - Kynetics
Linaro Connect 2017 - Presentation - KyneticsLinaro Connect 2017 - Presentation - Kynetics
Linaro Connect 2017 - Presentation - KyneticsKynetics
 
FreeBSD Document Project
FreeBSD Document ProjectFreeBSD Document Project
FreeBSD Document ProjectChinsan Huang
 
Modern Release Engineering in a Nutshell - Why Researchers should Care!
Modern Release Engineering in a Nutshell - Why Researchers should Care!Modern Release Engineering in a Nutshell - Why Researchers should Care!
Modern Release Engineering in a Nutshell - Why Researchers should Care!Bram Adams
 
Online MySQL Backups with Percona XtraBackup
Online MySQL Backups with Percona XtraBackupOnline MySQL Backups with Percona XtraBackup
Online MySQL Backups with Percona XtraBackupKenny Gryp
 
Building collaborative workflows for scientific data
Building collaborative workflows for scientific dataBuilding collaborative workflows for scientific data
Building collaborative workflows for scientific dataBruno Vieira
 
Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)
Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)
Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)Alessandro Nadalin
 
Don't screw it up: how to build durable web apis
Don't screw it up: how to build durable web apisDon't screw it up: how to build durable web apis
Don't screw it up: how to build durable web apisAlessandro Cinelli (cirpo)
 
Loophole: Timing Attacks on Shared Event Loops in Chrome
Loophole: Timing Attacks on Shared Event Loops in ChromeLoophole: Timing Attacks on Shared Event Loops in Chrome
Loophole: Timing Attacks on Shared Event Loops in Chromecgvwzq
 
Greyhound - Powerful Functional Kafka Library - Devtalks reimagined
Greyhound - Powerful Functional Kafka Library - Devtalks reimaginedGreyhound - Powerful Functional Kafka Library - Devtalks reimagined
Greyhound - Powerful Functional Kafka Library - Devtalks reimaginedNatan Silnitsky
 
It's Time to Debloat the Cloud with Unikraft
It's Time to Debloat the Cloud with UnikraftIt's Time to Debloat the Cloud with Unikraft
It's Time to Debloat the Cloud with UnikraftScyllaDB
 
Juggling Chainsaws: Perl and MongoDB
Juggling Chainsaws: Perl and MongoDBJuggling Chainsaws: Perl and MongoDB
Juggling Chainsaws: Perl and MongoDBDavid Golden
 
Caching with Varnish
Caching with VarnishCaching with Varnish
Caching with Varnishschoefmax
 
The Unofficial VCAP / VCP VMware Study Guide
The Unofficial VCAP / VCP VMware Study GuideThe Unofficial VCAP / VCP VMware Study Guide
The Unofficial VCAP / VCP VMware Study GuideVeeam Software
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudSalesforce Developers
 
Java File I/O Performance Analysis - Part I - JCConf 2018
Java File I/O Performance Analysis - Part I - JCConf 2018Java File I/O Performance Analysis - Part I - JCConf 2018
Java File I/O Performance Analysis - Part I - JCConf 2018Michael Fong
 

Similar to Firebird Performance counters in details (20)

Rendering Large Models in the Browser in Real-Time
Rendering Large Models in the Browser in Real-TimeRendering Large Models in the Browser in Real-Time
Rendering Large Models in the Browser in Real-Time
 
Experiences building a distributed shared log on RADOS - Noah Watkins
Experiences building a distributed shared log on RADOS - Noah WatkinsExperiences building a distributed shared log on RADOS - Noah Watkins
Experiences building a distributed shared log on RADOS - Noah Watkins
 
QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?QEMU Disk IO Which performs Better: Native or threads?
QEMU Disk IO Which performs Better: Native or threads?
 
Linaro Connect 2017 - Presentation - Kynetics
Linaro Connect 2017 - Presentation - KyneticsLinaro Connect 2017 - Presentation - Kynetics
Linaro Connect 2017 - Presentation - Kynetics
 
FreeBSD Document Project
FreeBSD Document ProjectFreeBSD Document Project
FreeBSD Document Project
 
Don't screw it up! How to build durable API
Don't screw it up! How to build durable API Don't screw it up! How to build durable API
Don't screw it up! How to build durable API
 
Subversion howto
Subversion howtoSubversion howto
Subversion howto
 
Modern Release Engineering in a Nutshell - Why Researchers should Care!
Modern Release Engineering in a Nutshell - Why Researchers should Care!Modern Release Engineering in a Nutshell - Why Researchers should Care!
Modern Release Engineering in a Nutshell - Why Researchers should Care!
 
Online MySQL Backups with Percona XtraBackup
Online MySQL Backups with Percona XtraBackupOnline MySQL Backups with Percona XtraBackup
Online MySQL Backups with Percona XtraBackup
 
Building collaborative workflows for scientific data
Building collaborative workflows for scientific dataBuilding collaborative workflows for scientific data
Building collaborative workflows for scientific data
 
Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)
Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)
Don't screw it up: how to build durable web apis @ PHPDay 2014 in Verona (ITA)
 
Don't screw it up: how to build durable web apis
Don't screw it up: how to build durable web apisDon't screw it up: how to build durable web apis
Don't screw it up: how to build durable web apis
 
Loophole: Timing Attacks on Shared Event Loops in Chrome
Loophole: Timing Attacks on Shared Event Loops in ChromeLoophole: Timing Attacks on Shared Event Loops in Chrome
Loophole: Timing Attacks on Shared Event Loops in Chrome
 
Greyhound - Powerful Functional Kafka Library - Devtalks reimagined
Greyhound - Powerful Functional Kafka Library - Devtalks reimaginedGreyhound - Powerful Functional Kafka Library - Devtalks reimagined
Greyhound - Powerful Functional Kafka Library - Devtalks reimagined
 
It's Time to Debloat the Cloud with Unikraft
It's Time to Debloat the Cloud with UnikraftIt's Time to Debloat the Cloud with Unikraft
It's Time to Debloat the Cloud with Unikraft
 
Juggling Chainsaws: Perl and MongoDB
Juggling Chainsaws: Perl and MongoDBJuggling Chainsaws: Perl and MongoDB
Juggling Chainsaws: Perl and MongoDB
 
Caching with Varnish
Caching with VarnishCaching with Varnish
Caching with Varnish
 
The Unofficial VCAP / VCP VMware Study Guide
The Unofficial VCAP / VCP VMware Study GuideThe Unofficial VCAP / VCP VMware Study Guide
The Unofficial VCAP / VCP VMware Study Guide
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the Cloud
 
Java File I/O Performance Analysis - Part I - JCConf 2018
Java File I/O Performance Analysis - Part I - JCConf 2018Java File I/O Performance Analysis - Part I - JCConf 2018
Java File I/O Performance Analysis - Part I - JCConf 2018
 

More from Mind The Firebird

Tips for using Firebird system tables
Tips for using Firebird system tablesTips for using Firebird system tables
Tips for using Firebird system tablesMind The Firebird
 
Using Azure cloud and Firebird to develop applications easily
Using Azure cloud and Firebird to develop applications easilyUsing Azure cloud and Firebird to develop applications easily
Using Azure cloud and Firebird to develop applications easilyMind The Firebird
 
A year in the life of Firebird .Net provider
A year in the life of Firebird .Net providerA year in the life of Firebird .Net provider
A year in the life of Firebird .Net providerMind The Firebird
 
How Firebird transactions work
How Firebird transactions workHow Firebird transactions work
How Firebird transactions workMind The Firebird
 
Using ТРСС to study Firebird performance
Using ТРСС to study Firebird performanceUsing ТРСС to study Firebird performance
Using ТРСС to study Firebird performanceMind The Firebird
 
Creating logs for data auditing in FirebirdSQL
Creating logs for data auditing in FirebirdSQLCreating logs for data auditing in FirebirdSQL
Creating logs for data auditing in FirebirdSQLMind The Firebird
 
Understanding Numbers in Firebird SQL
Understanding Numbers in Firebird SQLUnderstanding Numbers in Firebird SQL
Understanding Numbers in Firebird SQLMind The Firebird
 
Threading through InterBase, Firebird, and beyond
Threading through InterBase, Firebird, and beyondThreading through InterBase, Firebird, and beyond
Threading through InterBase, Firebird, and beyondMind The Firebird
 
New SQL Features in Firebird 3, by Vlad Khorsun
New SQL Features in Firebird 3, by Vlad KhorsunNew SQL Features in Firebird 3, by Vlad Khorsun
New SQL Features in Firebird 3, by Vlad KhorsunMind The Firebird
 
Firebird release strategy and roadmap for 2015/2016
Firebird release strategy and roadmap for 2015/2016Firebird release strategy and roadmap for 2015/2016
Firebird release strategy and roadmap for 2015/2016Mind The Firebird
 
Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...
Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...
Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...Mind The Firebird
 
Working with Large Firebird databases
Working with Large Firebird databasesWorking with Large Firebird databases
Working with Large Firebird databasesMind The Firebird
 
Stored procedures in Firebird
Stored procedures in FirebirdStored procedures in Firebird
Stored procedures in FirebirdMind The Firebird
 
Superchaging big production systems on Firebird: transactions, garbage, maint...
Superchaging big production systems on Firebird: transactions, garbage, maint...Superchaging big production systems on Firebird: transactions, garbage, maint...
Superchaging big production systems on Firebird: transactions, garbage, maint...Mind The Firebird
 
Continuous Database Monitoring with the Trace API
Continuous Database Monitoring with the Trace APIContinuous Database Monitoring with the Trace API
Continuous Database Monitoring with the Trace APIMind The Firebird
 
Firebird 3 Windows Functions
Firebird 3 Windows  FunctionsFirebird 3 Windows  Functions
Firebird 3 Windows FunctionsMind The Firebird
 

More from Mind The Firebird (20)

Tips for using Firebird system tables
Tips for using Firebird system tablesTips for using Firebird system tables
Tips for using Firebird system tables
 
Using Azure cloud and Firebird to develop applications easily
Using Azure cloud and Firebird to develop applications easilyUsing Azure cloud and Firebird to develop applications easily
Using Azure cloud and Firebird to develop applications easily
 
A year in the life of Firebird .Net provider
A year in the life of Firebird .Net providerA year in the life of Firebird .Net provider
A year in the life of Firebird .Net provider
 
How Firebird transactions work
How Firebird transactions workHow Firebird transactions work
How Firebird transactions work
 
Copycat presentation
Copycat presentationCopycat presentation
Copycat presentation
 
Using ТРСС to study Firebird performance
Using ТРСС to study Firebird performanceUsing ТРСС to study Firebird performance
Using ТРСС to study Firebird performance
 
Overview of RedDatabase 2.5
Overview of RedDatabase 2.5Overview of RedDatabase 2.5
Overview of RedDatabase 2.5
 
Creating logs for data auditing in FirebirdSQL
Creating logs for data auditing in FirebirdSQLCreating logs for data auditing in FirebirdSQL
Creating logs for data auditing in FirebirdSQL
 
Understanding Numbers in Firebird SQL
Understanding Numbers in Firebird SQLUnderstanding Numbers in Firebird SQL
Understanding Numbers in Firebird SQL
 
Threading through InterBase, Firebird, and beyond
Threading through InterBase, Firebird, and beyondThreading through InterBase, Firebird, and beyond
Threading through InterBase, Firebird, and beyond
 
New SQL Features in Firebird 3, by Vlad Khorsun
New SQL Features in Firebird 3, by Vlad KhorsunNew SQL Features in Firebird 3, by Vlad Khorsun
New SQL Features in Firebird 3, by Vlad Khorsun
 
Firebird release strategy and roadmap for 2015/2016
Firebird release strategy and roadmap for 2015/2016Firebird release strategy and roadmap for 2015/2016
Firebird release strategy and roadmap for 2015/2016
 
Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...
Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...
Nbackup and Backup: Internals, Usage strategy and Pitfalls, by Dmitry Kuzmenk...
 
Working with Large Firebird databases
Working with Large Firebird databasesWorking with Large Firebird databases
Working with Large Firebird databases
 
Stored procedures in Firebird
Stored procedures in FirebirdStored procedures in Firebird
Stored procedures in Firebird
 
Firebird on Linux
Firebird on LinuxFirebird on Linux
Firebird on Linux
 
Superchaging big production systems on Firebird: transactions, garbage, maint...
Superchaging big production systems on Firebird: transactions, garbage, maint...Superchaging big production systems on Firebird: transactions, garbage, maint...
Superchaging big production systems on Firebird: transactions, garbage, maint...
 
Firebird meets NoSQL
Firebird meets NoSQLFirebird meets NoSQL
Firebird meets NoSQL
 
Continuous Database Monitoring with the Trace API
Continuous Database Monitoring with the Trace APIContinuous Database Monitoring with the Trace API
Continuous Database Monitoring with the Trace API
 
Firebird 3 Windows Functions
Firebird 3 Windows  FunctionsFirebird 3 Windows  Functions
Firebird 3 Windows Functions
 

Recently uploaded

CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odishasmiwainfosol
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxRTS corp
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfMarharyta Nedzelska
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonApplitools
 
Strategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsStrategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsJean Silva
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLionel Briand
 
2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shardsChristopher Curtin
 
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...OnePlan Solutions
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingShane Coughlan
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxAndreas Kunz
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profileakrivarotava
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024Anthony Dahanne
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesKrzysztofKkol1
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 

Recently uploaded (20)

CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
 
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptxThe Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
The Role of IoT and Sensor Technology in Cargo Cloud Solutions.pptx
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdf
 
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + KobitonLeveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
Leveraging AI for Mobile App Testing on Real Devices | Applitools + Kobiton
 
Strategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsStrategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero results
 
Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and Repair
 
2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards2024 DevNexus Patterns for Resiliency: Shuffle shards
2024 DevNexus Patterns for Resiliency: Shuffle shards
 
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
Revolutionizing the Digital Transformation Office - Leveraging OnePlan’s AI a...
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profile
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024Not a Kubernetes fan? The state of PaaS in 2024
Not a Kubernetes fan? The state of PaaS in 2024
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 

Firebird Performance counters in details

  • 1. Firebird ppeerrffoorrmmaannccee ccoouunntteerrss iinn ddeettaaiillss Dmitry Yemanov mailto:dimitr@firebirdsql.org Firebird Project http://www.firebirdsql.org/
  • 2. TThhaannkk yyoouu FIREBIRD INTERNATIONAL CONFERENCE '2014 2
  • 3. AAnnaallyyssiinngg bboottttlleenneecckkss Disk Database Temporary files FIREBIRD INTERNATIONAL CONFERENCE '2014 3
  • 4. AAnnaallyyssiinngg bboottttlleenneecckkss Disk Database Temporary files Memory Static (cache) Dynamic (pools) Shared FIREBIRD INTERNATIONAL CONFERENCE '2014 4
  • 5. AAnnaallyyssiinngg bboottttlleenneecckkss CPU, waits, etc Real execution time User/kernel time Was time spent for work or waiting? What operations were performed? FIREBIRD INTERNATIONAL CONFERENCE '2014 5
  • 6. LLeeggaaccyy ppeerrffoorrmmaannccee ccoouunntteerrss Page level Fetches, reads, marks, writes Shared in SS, per connection in CS Available via API FIREBIRD INTERNATIONAL CONFERENCE '2014 6
  • 7. LLeeggaaccyy ppeerrffoorrmmaannccee ccoouunntteerrss Page level Fetches, reads, marks, writes Shared in SS, per connection in CS Available via API Record level Selected (seq/idx), inserted, updated, deleted etc Per connection and per table Available via API FIREBIRD INTERNATIONAL CONFERENCE '2014 7
  • 8. IImmpprroovveemmeennttss iinn FFiirreebbiirrdd 22..xx Multi-level aggregated counters Database (SS only) Connection Transaction Statement Nested PSQL call (procedure / trigger) FIREBIRD INTERNATIONAL CONFERENCE '2014 8
  • 9. IImmpprroovveemmeennttss iinn FFiirreebbiirrdd 22..xx Multi-level aggregated counters Database Connection 1 Connection 2 Transaction 1 Transaction 2 Statement 1 Statement 1 FIREBIRD INTERNATIONAL CONFERENCE '2014 9
  • 10. IImmpprroovveemmeennttss iinn FFiirreebbiirrdd 22..xx New interfaces Monitoring tables Trace/audit FIREBIRD INTERNATIONAL CONFERENCE '2014 10
  • 11. PPaaggee lleevveell ccoouunntteerrss Page reads From disk to the page cache (physical reads) Usually means a cache miss FIREBIRD INTERNATIONAL CONFERENCE '2014 11
  • 12. PPaaggee lleevveell ccoouunntteerrss Page reads From disk to the page cache (physical reads) Usually means a cache miss Page fetches Access page in cache (logical reads) Includes both cache hits and cache misses Corresponds to a shared page lock / latch FIREBIRD INTERNATIONAL CONFERENCE '2014 12
  • 13. PPaaggee lleevveell ccoouunntteerrss Page reads From disk to the page cache (physical reads) Usually means a cache miss Page fetches Access page in cache (logical reads) Includes both cache hits and cache misses Corresponds to a shared page lock / latch Cache hit ratio = 1 - reads / fetches ??? FIREBIRD INTERNATIONAL CONFERENCE '2014 13
  • 14. PPaaggee lleevveell ccoouunntteerrss Page writes From the page cache to disk (physical writes) At transaction commit/rollback Cache is full of dirty pages Asynchronous notification is received (CS/SC) Immediately after modification FIREBIRD INTERNATIONAL CONFERENCE '2014 14
  • 15. PPaaggee lleevveell ccoouunntteerrss Page writes From the page cache to disk (physical writes) At transaction commit/rollback Cache is full of dirty pages Asynchronous notification is received (CS/SC) Immediately after modification Page marks Access page in cache (logical writes) Corresponds to an exclusive page lock / latch FIREBIRD INTERNATIONAL CONFERENCE '2014 15
  • 16. RReeccoorrdd lleevveell ccoouunntteerrss Sequential record reads Records retrieved through a full table scan Includes sweep Indexed record reads Records retrieved positionally Includes bitmap index scans, index navigational walks, DBKEY based retrievals FIREBIRD INTERNATIONAL CONFERENCE '2014 16
  • 17. RReeccoorrdd lleevveell ccoouunntteerrss Record inserts, updates, deletes Pretty obvious, huh? FIREBIRD INTERNATIONAL CONFERENCE '2014 17
  • 18. RReeccoorrdd lleevveell ccoouunntteerrss Record inserts, updates, deletes Pretty obvious, huh? Record backouts Latest (uncommitted) version removed Happens after savepoint rollback, explicit or implicit May happen after transaction rollback FIREBIRD INTERNATIONAL CONFERENCE '2014 18
  • 19. RReeccoorrdd lleevveell ccoouunntteerrss Record purges Old versions removed while keeping the primary version in place Outdated versions found while chasing FIREBIRD INTERNATIONAL CONFERENCE '2014 19
  • 20. RReeccoorrdd lleevveell ccoouunntteerrss Record purges Old versions removed while keeping the primary version in place Outdated versions found while chasing Record expunges Whole version chains removed, along with the primary version Record is deleted and nobody is interested FIREBIRD INTERNATIONAL CONFERENCE '2014 20
  • 21. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx Record repeated reads Record is retrieved multiple times BEFORE triggers Sort-based updates/deletes FIREBIRD INTERNATIONAL CONFERENCE '2014 21
  • 22. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx Record repeated reads Record is retrieved multiple times BEFORE triggers Sort-based updates/deletes Record locks Record is selected usng WITH LOCK clause FIREBIRD INTERNATIONAL CONFERENCE '2014 22
  • 23. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx Record waits Attempts to update/delete/lock record owned by a concurrent active transaction Transaction is in the WAIT mode FIREBIRD INTERNATIONAL CONFERENCE '2014 23
  • 24. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx Record waits Attempts to update/delete/lock record owned by a concurrent active transaction Transaction is in the WAIT mode Record conflicts Unsuccessful attempts to update/delete/lock record owned by a concurrent active transaction UPDATE CONFLICT is reported FIREBIRD INTERNATIONAL CONFERENCE '2014 24
  • 25. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx Backversion reads Versions chased while finding a visible one Means old snapshots FIREBIRD INTERNATIONAL CONFERENCE '2014 25
  • 26. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx Backversion reads Versions chased while finding a visible one Means old snapshots Fragment reads Fragmented records Means extra page fetches/reads FIREBIRD INTERNATIONAL CONFERENCE '2014 26
  • 27. NNeeww rreeccoorrdd lleevveell ccoouunntteerrss iinn vv33..xx MON$TABLE_STATS MON$RECORD_STATS MON$STATS_ID MON$STATS_GROUP MON$TABLE_NAME MON$RECORD_STATS_ID MON$STATS_ID MON$STATS_GROUP MON$RECORD_SEQ_READS MON$RECORD_IDX_READS etc FIREBIRD INTERNATIONAL CONFERENCE '2014 27
  • 28. TTOODDOO:: ppaaggee lleevveell ccoouunntteerrss Page writes (expanded) Regular writes (immediate / commit / rollback) Overflow writes Asynchronous writes FIREBIRD INTERNATIONAL CONFERENCE '2014 28
  • 29. TTOODDOO:: ppaaggee lleevveell ccoouunntteerrss Page writes (expanded) Regular writes (immediate / commit / rollback) Overflow writes Asynchronous writes Page waits How many times page requests waited Shows contention inside the page cache FIREBIRD INTERNATIONAL CONFERENCE '2014 29
  • 30. TTOODDOO:: iinnddeexx ccoouunntteerrss Possible metrics Index scans Node inserts / deletes Bucket splits / merges Keys scanned / compared while searching Reported per index MON$INDEX_STATS FIREBIRD INTERNATIONAL CONFERENCE '2014 30
  • 31. TTOODDOO:: tteemmppoorraarryy ssppaaccee ccoouunntteerrss Operation metrics Reads / writes resolved through the cache Reads / writes redirected to temp files I/O amount metrics Bytes read / written through the cache Bytes read / written from/to temp files FIREBIRD INTERNATIONAL CONFERENCE '2014 31
  • 32. TTOODDOO:: ttiimmee ssttaattiissttiiccss Elapsed time Total inside the engine Spent in the user space Spent in the system / kernel space FIREBIRD INTERNATIONAL CONFERENCE '2014 32
  • 33. TTOODDOO:: ttiimmee ssttaattiissttiiccss Elapsed time Total inside the engine Spent in the user space Spent in the system / kernel space Wait time Database (and maybe temp files) I/O Page cache waits Transaction waits FIREBIRD INTERNATIONAL CONFERENCE '2014 33
  • 34. TTOODDOO:: iinntteeggrraattiioonn Collecting the statistics StatsD, CollectD Reporting / analyzing Graphite / Graphene Other tools Nagios, Cacti, Zabbix FIREBIRD INTERNATIONAL CONFERENCE '2014 34