diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-11-13 11:44:09 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-11-13 11:44:09 -0500 |
| commit | 90bb0614fc1d8f1a185a778e31aaf9027c01aeb8 (patch) | |
| tree | 22a865978e398cef2fdcef763ab893c2da769a4a /include/framework/scheduling/Task.h | |
| parent | 83486744600e8be338c75c2e3d2339452a392a9d (diff) | |
| download | dynamic-extension-90bb0614fc1d8f1a185a778e31aaf9027c01aeb8.tar.gz | |
Tombstone Compaction: re-enabled tombstone compaction
Currently, proactive buffer tombstone compaction is disabled by forcing
the buffer tombstone capacity to match its record capacity. It isn't
clear how to best handle proactive buffer compactions in an environment
where new buffers are spawned anyway.
Diffstat (limited to 'include/framework/scheduling/Task.h')
| -rw-r--r-- | include/framework/scheduling/Task.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/framework/scheduling/Task.h b/include/framework/scheduling/Task.h index d211fb5..c10ed8b 100644 --- a/include/framework/scheduling/Task.h +++ b/include/framework/scheduling/Task.h @@ -21,6 +21,7 @@ struct MergeArgs { Epoch<R, S, Q, L> *epoch; std::vector<MergeTask> merges; std::promise<bool> result; + bool compaction; void *extension; }; |