| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | progress towards resolving asynch structure merges | Douglas Rumbaugh | 2025-02-13 | 6 | -138/+131 |
| | | |||||
| * | more updates | Douglas Rumbaugh | 2025-02-11 | 3 | -16/+29 |
| | | |||||
| * | Progress: began adding parallel merging and locking of levels | Douglas Rumbaugh | 2025-02-11 | 16 | -87/+180 |
| | | |||||
| * | Migrated remaining tail latency benchmarks to new interface | Douglas Rumbaugh | 2025-02-10 | 3 | -19/+19 |
| | | |||||
| * | Tiering: adjusted layout policy to properly handle L0 | Douglas Rumbaugh | 2025-02-06 | 1 | -1/+1 |
| | | |||||
| * | CMakeLists update | Douglas Rumbaugh | 2025-02-06 | 1 | -0/+1 |
| | | |||||
| * | Background compaction stuff | Douglas Rumbaugh | 2025-02-06 | 15 | -98/+587 |
| | | |||||
| * | Bug fixes | Douglas Rumbaugh | 2025-02-04 | 3 | -3/+8 |
| | | |||||
| * | PSUDB update | Douglas Rumbaugh | 2025-02-03 | 1 | -0/+0 |
| | | |||||
| * | More updates | Douglas Rumbaugh | 2025-01-31 | 11 | -62/+124 |
| | | |||||
| * | progress | Douglas Rumbaugh | 2025-01-27 | 14 | -275/+273 |
| | | |||||
| * | some progress | Douglas Rumbaugh | 2025-01-24 | 3 | -74/+33 |
| | | |||||
| * | Finished rename of Epoch to Version + imported changes to psudb-common | Douglas Rumbaugh | 2025-01-22 | 5 | -7/+176 |
| | | |||||
| * | Progress | Douglas Rumbaugh | 2025-01-17 | 12 | -347/+256 |
| | | |||||
| * | Additional layout policies + more flexibility in buffer flushing | Douglas Rumbaugh | 2025-01-16 | 10 | -60/+364 |
| | | |||||
| * | Tail latency parm sweep | Douglas Rumbaugh | 2025-01-08 | 2 | -1/+121 |
| | | |||||
| * | Ajusted progress bar in insert benchmark | Douglas Rumbaugh | 2025-01-07 | 1 | -1/+0 |
| | | |||||
| * | Triespline: minor tweak to buffer query | Douglas Rumbaugh | 2025-01-07 | 1 | -1/+2 |
| | | | | | A change that should have been in the last commit | ||||
| * | Merge branch 'generalized-merging' of ↵ | Douglas Rumbaugh | 2025-01-07 | 11 | -9/+13 |
| |\ | | | | | | | github.com:dbrumbaugh/dynamic-extension-working into generalized-merging | ||||
| | * | Fixed the reversed scale factor and buffer size on benchmarks | Douglas B. Rumbaugh | 2024-12-23 | 11 | -9/+13 |
| | | | |||||
| * | | Fixed a few Triespline related bugs | Douglas Rumbaugh | 2025-01-07 | 2 | -31/+21 |
| |/ | |||||
| * | Began migrating benchmarks over to new interface | Douglas Rumbaugh | 2024-12-23 | 16 | -51/+82 |
| | | |||||
| * | More updates | Douglas B. Rumbaugh | 2024-12-22 | 3 | -6/+6 |
| | | | | | | | | BSM is currently broken--I'll need to think a bit about how best to actually implement this in the current framework (if I even want to port it over) because it doesn't use the same flushing mechanism as most other approaches. | ||||
| * | Continued development | Douglas B. Rumbaugh | 2024-12-22 | 33 | -377/+261 |
| | | |||||
| * | Began overhauling reconstruction mechanism | Douglas B. Rumbaugh | 2024-12-22 | 11 | -755/+469 |
| | | |||||
| * | Adjusted query result interfacesHEADmaster | Douglas B. Rumbaugh | 2024-12-06 | 20 | -468/+459 |
| | | | | | | | | Now, the vector<> is part of the user-defined type, not required by the framework. This should allow for more flexibility in either using alternative containers, or for more sensible implementations of queries with single value results (like range count). | ||||
| * | Warning fixes | Douglas B. Rumbaugh | 2024-12-06 | 10 | -23/+34 |
| | | |||||
| * | Interface update (#5) | Douglas B. Rumbaugh | 2024-12-06 | 82 | -4964/+4414 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Query Interface Adjustments/Refactoring Began the process of adjusting the query interface (and also the shard interface, to a lesser degree) to better accommodate the user. In particular the following changes have been made, 1. The number of necessary template arguments for the query type has been drastically reduced, while also removing the void pointers and manual delete functions from the interface. This was accomplished by requiring many of the sub-types associated with a query (parameters, etc.) to be nested inside the main query class, and by forcing the SHARD type to expose its associated record type. 2. User-defined query return types are now supported. Queries no longer are required to return strictly sets of records. Instead, the query now has LocalResultType and ResultType template parameters (which can be defaulted using a typedef in the Query type itself), allowing much more flexibility. Note that, at least for the short term, the LocalResultType must still expose the same is_deleted/is_tombstone interface as a Wrapped<R> used to, as this is currently needed for delete filtering. A better approach to this is, hopefully, forthcoming. 3. Updated the ISAMTree.h shard and rangequery.h query to use the new interfaces, and adjusted the associated unit tests as well. 4. Dropped the unnecessary "get_data()" function from the ShardInterface concept. 5. Dropped the need to specify a record type in the ShardInterface concept. This is now handled using a required Shard::RECORD member of the Shard class itself, which should expose the name of the record type. * Updates to framework to support new Query/Shard interfaces Pretty extensive adjustments to the framework, particularly to the templates themselves, along with some type-renaming work, to support the new query and shard interfaces. Adjusted the external query interface to take an rvalue reference, rather than a pointer, to the query parameters. * Removed framework-level delete filtering This was causing some issues with the new query interface, and should probably be reworked anyway, so I'm temporarily (TM) removing the feature. * Updated benchmarks + remaining code for new interface | ||||
| * | Merge pull request #4 from dbrumbaugh/master | Douglas B. Rumbaugh | 2024-05-14 | 93 | -949/+66134 |
| |\ | | | | | Updates for VLDB revision | ||||
| | * | Added btree thread scaling benchmark | Douglas Rumbaugh | 2024-05-14 | 2 | -14/+19 |
| | | | |||||
| | * | Merge branch 'master' of github.com:dbrumbaugh/dynamic-extension | Douglas Rumbaugh | 2024-05-14 | 1 | -0/+78 |
| | |\ | |||||
| | | * | Benchmark helper script | Douglas Rumbaugh | 2024-05-14 | 1 | -0/+78 |
| | | | | |||||
| | * | | README update | Douglas Rumbaugh | 2024-05-14 | 1 | -9/+22 |
| | | | | |||||
| | * | | Moved thread scalability bench to vldb folder | Douglas Rumbaugh | 2024-05-14 | 2 | -6/+7 |
| | |/ | |||||
| | * | Removed patricia trie stuff | Douglas Rumbaugh | 2024-05-14 | 4 | -127/+1 |
| | | | |||||
| | * | Updated psudb-common | Douglas Rumbaugh | 2024-05-14 | 1 | -0/+0 |
| | | | |||||
| | * | Poplar Trie: updated benchmark to standard format | Douglas Rumbaugh | 2024-05-14 | 2 | -31/+30 |
| | | | |||||
| | * | Added program to sample the binary knn files | Douglas Rumbaugh | 2024-05-11 | 2 | -0/+61 |
| | | | |||||
| | * | MTree structure size | Douglas Rumbaugh | 2024-05-10 | 5 | -3/+13 |
| | | | |||||
| | * | Merge branch 'master' of github.com:dbrumbaugh/dynamic-extension | Douglas Rumbaugh | 2024-05-09 | 0 | -0/+0 |
| | |\ | |||||
| | | * | Merge branch 'master' of github.com:dbrumbaugh/dynamic-extension | Douglas Rumbaugh | 2024-05-09 | 7 | -10/+396 |
| | | |\ | |||||
| | | * | | Restored IRS warmup to 10% | Douglas Rumbaugh | 2024-05-09 | 2 | -2/+2 |
| | | | | | |||||
| | * | | | Fixed arithmetic bug | Douglas Rumbaugh | 2024-05-09 | 1 | -1/+1 |
| | | |/ | |/| | |||||
| | * | | Added benchmarks for BigANN | Douglas Rumbaugh | 2024-05-09 | 9 | -12/+398 |
| | |/ | |||||
| | * | TSParmsweep: enabled forcing a full buffer scan | Douglas Rumbaugh | 2024-05-08 | 3 | -3/+15 |
| | | | |||||
| | * | VPTree BSM: Added extra tab to keep numbers from running together | Douglas Rumbaugh | 2024-05-08 | 1 | -1/+1 |
| | | | |||||
| | * | Missing file from last commit | Douglas Rumbaugh | 2024-05-06 | 1 | -2/+14 |
| | | | |||||
| | * | FST benchmarks | Douglas Rumbaugh | 2024-05-03 | 4 | -10/+265 |
| | | | |||||
| | * | Switched to using framework-BSM mode for Bentley-Saxe benchmarks | Douglas Rumbaugh | 2024-05-03 | 2 | -28/+70 |
| | | | |||||
| | * | Added a Bentley-Saxe layout policy | Douglas Rumbaugh | 2024-05-01 | 7 | -11/+167 |
| | | | |||||