4
4
* - Total time to flush
5
5
* - Time to flush the OS file handle
6
6
* - Time to re-read the file from disk to re-hash (may be removed later)
7
- * - Time to insert new hashes into sqlite DB
8
7
*/
9
8
10
9
@@ -33,11 +32,6 @@ crucible_downstairs*:::extent-flush-collect-hashes-start
33
32
extent_flush_collect_hashes_start [pid ,arg0 ,arg1 ] = timestamp ;
34
33
}
35
34
36
- crucible_downstairs * :::extent - flush - sqlite - insert - start
37
- {
38
- extent_flush_sqlite_insert_start [pid ,arg0 ,arg1 ] = timestamp ;
39
- }
40
-
41
35
42
36
/* and collections */
43
37
crucible_downstairs * :::extent - flush - done
@@ -61,13 +55,6 @@ crucible_downstairs*:::extent-flush-collect-hashes-done
61
55
extent_flush_collect_hashes_start [pid ,arg0 ,arg1 ] = 0 ;
62
56
}
63
57
64
- crucible_downstairs * :::extent - flush - sqlite - insert - done
65
- /extent_flush_sqlite_insert_start [pid ,arg0 ,arg1 ]/
66
- {
67
- @time ["flush_sqlite_insert" ] = quantize ((timestamp - extent_flush_sqlite_insert_start [pid ,arg0 ,arg1 ]) / arg2 );
68
- extent_flush_sqlite_insert_start [pid ,arg0 ,arg1 ] = 0 ;
69
- }
70
-
71
58
72
59
/*
73
60
* writes
@@ -87,11 +74,6 @@ crucible_downstairs*:::extent-write-get-hashes-start
87
74
extent_write_get_hashes_start [pid ,arg0 ,arg1 ] = timestamp ;
88
75
}
89
76
90
- crucible_downstairs * :::extent - write - sqlite - insert - start
91
- {
92
- extent_write_sqlite_insert_start [pid ,arg0 ,arg1 ] = timestamp ;
93
- }
94
-
95
77
96
78
/* and collections */
97
79
crucible_downstairs * :::extent - write - done
@@ -115,15 +97,6 @@ crucible_downstairs*:::extent-write-get-hashes-done
115
97
extent_write_get_hashes_start [pid ,arg0 ,arg1 ] = 0 ;
116
98
}
117
99
118
- crucible_downstairs * :::extent - write - sqlite - insert - done
119
- /extent_write_sqlite_insert_start [pid ,arg0 ,arg1 ]/
120
- {
121
- @time ["write_sqlite_insert" ] = quantize ((timestamp - extent_write_sqlite_insert_start [pid ,arg0 ,arg1 ]) / arg2 );
122
- extent_write_sqlite_insert_start [pid ,arg0 ,arg1 ] = 0 ;
123
- }
124
-
125
-
126
-
127
100
128
101
/*
129
102
* reads
0 commit comments