Remove hot lineage modification
This commit is contained in:
parent
d606392c68
commit
78b5635d9f
|
@ -1218,7 +1218,8 @@ ACTOR Future<Void> getValueQ(StorageServer* data, GetValueRequest req) {
|
||||||
state int64_t resultSize = 0;
|
state int64_t resultSize = 0;
|
||||||
Span span("SS:getValue"_loc, { req.spanContext });
|
Span span("SS:getValue"_loc, { req.spanContext });
|
||||||
span.addTag("key"_sr, req.key);
|
span.addTag("key"_sr, req.key);
|
||||||
getCurrentLineage()->modify(&TransactionLineage::txID) = req.spanContext.first();
|
// Temporarily disabled -- this path is hit a lot
|
||||||
|
// getCurrentLineage()->modify(&TransactionLineage::txID) = req.spanContext.first();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
++data->counters.getValueQueries;
|
++data->counters.getValueQueries;
|
||||||
|
|
Loading…
Reference in New Issue