AWR – Instance Efficiency Percentages

AWR Instance Efficiency Percentages

In AWR, the ‘Instance Efficiency Percentages’ table comes under the ‘Report Summary’ section. Refer to the below figure: The following metrics are available in the ‘Instance Efficiency Percentages’ table of an AWR report: Buffer Nowait % (Buffer Nowait Ratio) This metric provides the percentage of availability of the data buffers. This ratio gives an idea … Read more

AWR – Load Profile

In AWR, the Load Profile table comes under the ‘Report Summary’ section. Refer to the below figure: The following metrics are available in the Load Profile table of an AWR report: DB Time(s) DB Time(s) is the number of average active sessions during the given period. The active sessions are calculated by dividing the ‘DB … Read more

Performance Engineering Interview Questions #12

Performance Engineering Interview Question 12

Following are the Performance Engineering Interview Questions Set #12. Q. 56 What role does the buffer cache play in database performance? Ans: The buffer cache stores copies of data blocks read from the disk. A properly sized buffer cache reduces physical I/O by satisfying requests from memory, thus improving performance. Q. 57 How can you … Read more

Parallel Garbage Collector (GC)

The Parallel Garbage Collector (GC) or Throughput Collector is the default garbage collector used by JVM. The parallel garbage collector works the same as the serial garbage collector. The only difference between serial and parallel garbage collectors is that serial garbage collector uses a single thread for the garbage collection process while parallel garbage collector uses multiple threads for … Read more

Serial Garbage Collector (GC)

The Serial Garbage Collector (GC) is the simplest and oldest garbage collector in Java. It derives its name from performing all its work on a single thread. Main Operation Single thread to perform Garbage Collection (GC) How does Serial GC work? Used For: Advantage: Disadvantage: Implementation: -XX: +UseSerialGC Tuning serial GC: Conclusion A straightforward and … Read more