Remove hot lineage modification

This commit is contained in:
Lukas Joswiak 2021-08-01 20:21:15 -07:00
parent d606392c68
commit 78b5635d9f
1 changed files with 2 additions and 1 deletions

View File

@ -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;