@@ -77,7 +77,6 @@ type Database struct {
77
77
commitCountMeter metrics.Meter
78
78
commitTotalDurationMeter metrics.Meter
79
79
commitSemaphoreWaitMeter metrics.Meter
80
- commitWALQueueWaitMeter metrics.Meter
81
80
commitMemTableWriteStallMeter metrics.Meter
82
81
commitL0ReadAmpWriteStallMeter metrics.Meter
83
82
commitWALRotationMeter metrics.Meter
@@ -86,7 +85,6 @@ type Database struct {
86
85
commitCount atomic.Int64
87
86
commitTotalDuration atomic.Int64
88
87
commitSemaphoreWait atomic.Int64
89
- commitWALQueueWait atomic.Int64
90
88
commitMemTableWriteStall atomic.Int64
91
89
commitL0ReadAmpWriteStall atomic.Int64
92
90
commitWALRotation atomic.Int64
@@ -320,7 +318,6 @@ func New(file string, cache int, handles int, namespace string, readonly bool, e
320
318
db .commitCountMeter = metrics .NewRegisteredMeter (namespace + "commit/counter" , nil )
321
319
db .commitTotalDurationMeter = metrics .NewRegisteredMeter (namespace + "commit/duration/total" , nil )
322
320
db .commitSemaphoreWaitMeter = metrics .NewRegisteredMeter (namespace + "commit/duration/semaphorewait" , nil )
323
- db .commitWALQueueWaitMeter = metrics .NewRegisteredMeter (namespace + "commit/duration/walqueuewait" , nil )
324
321
db .commitMemTableWriteStallMeter = metrics .NewRegisteredMeter (namespace + "commit/duration/memtablewritestall" , nil )
325
322
db .commitL0ReadAmpWriteStallMeter = metrics .NewRegisteredMeter (namespace + "commit/duration/l0readampwritestall" , nil )
326
323
db .commitWALRotationMeter = metrics .NewRegisteredMeter (namespace + "commit/duration/walrotation" , nil )
@@ -542,7 +539,6 @@ func (d *Database) meter(refresh time.Duration, namespace string) {
542
539
commitCounts [2 ]int64
543
540
commitTotalDurations [2 ]int64
544
541
commitSemaphoreWaits [2 ]int64
545
- commitWALQueueWaits [2 ]int64
546
542
commitMemTableWriteStalls [2 ]int64
547
543
commitL0ReadAmpWriteStalls [2 ]int64
548
544
commitWALRotations [2 ]int64
@@ -566,7 +562,6 @@ func (d *Database) meter(refresh time.Duration, namespace string) {
566
562
commitCount = d .commitCount .Load ()
567
563
commitTotalDuration = d .commitTotalDuration .Load ()
568
564
commitSemaphoreWait = d .commitSemaphoreWait .Load ()
569
- commitWALQueueWait = d .commitWALQueueWait .Load ()
570
565
commitMemTableWriteStall = d .commitMemTableWriteStall .Load ()
571
566
commitL0ReadAmpWriteStall = d .commitL0ReadAmpWriteStall .Load ()
572
567
commitWALRotation = d .commitWALRotation .Load ()
@@ -624,7 +619,6 @@ func (d *Database) meter(refresh time.Duration, namespace string) {
624
619
commitCounts [i % 2 ] = commitCount
625
620
commitTotalDurations [i % 2 ] = commitTotalDuration
626
621
commitSemaphoreWaits [i % 2 ] = commitSemaphoreWait
627
- commitWALQueueWaits [i % 2 ] = commitWALQueueWait
628
622
commitMemTableWriteStalls [i % 2 ] = commitMemTableWriteStall
629
623
commitL0ReadAmpWriteStalls [i % 2 ] = commitL0ReadAmpWriteStall
630
624
commitWALRotations [i % 2 ] = commitWALRotation
@@ -633,7 +627,6 @@ func (d *Database) meter(refresh time.Duration, namespace string) {
633
627
d .commitCountMeter .Mark (commitCounts [i % 2 ] - commitCounts [(i - 1 )% 2 ])
634
628
d .commitTotalDurationMeter .Mark (commitTotalDurations [i % 2 ] - commitTotalDurations [(i - 1 )% 2 ])
635
629
d .commitSemaphoreWaitMeter .Mark (commitSemaphoreWaits [i % 2 ] - commitSemaphoreWaits [(i - 1 )% 2 ])
636
- d .commitWALQueueWaitMeter .Mark (commitWALQueueWaits [i % 2 ] - commitWALQueueWaits [(i - 1 )% 2 ])
637
630
d .commitMemTableWriteStallMeter .Mark (commitMemTableWriteStalls [i % 2 ] - commitMemTableWriteStalls [(i - 1 )% 2 ])
638
631
d .commitL0ReadAmpWriteStallMeter .Mark (commitL0ReadAmpWriteStalls [i % 2 ] - commitL0ReadAmpWriteStalls [(i - 1 )% 2 ])
639
632
d .commitWALRotationMeter .Mark (commitWALRotations [i % 2 ] - commitWALRotations [(i - 1 )% 2 ])
@@ -704,11 +697,11 @@ func (b *batch) Write() error {
704
697
b .db .commitCount .Add (1 )
705
698
b .db .commitTotalDuration .Add (int64 (stats .TotalDuration ))
706
699
b .db .commitSemaphoreWait .Add (int64 (stats .SemaphoreWaitDuration ))
707
- b .db .commitWALQueueWait .Add (int64 (stats .WALQueueWaitDuration ))
708
700
b .db .commitMemTableWriteStall .Add (int64 (stats .MemTableWriteStallDuration ))
709
701
b .db .commitL0ReadAmpWriteStall .Add (int64 (stats .L0ReadAmpWriteStallDuration ))
710
702
b .db .commitWALRotation .Add (int64 (stats .WALRotationDuration ))
711
703
b .db .commitWait .Add (int64 (stats .CommitWaitDuration ))
704
+ // TODO add metric for stats.WALQueueWaitDuration when it will be used by pebble (currently it is always 0)
712
705
return nil
713
706
}
714
707
0 commit comments