| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Updates for dynamic rate limitingnew-concurrency | Douglas Rumbaugh | 7 days | 1 | -0/+5 |
| | | |||||
| * | Merge branch 'new-concurrency' of ↵ | Douglas Rumbaugh | 2025-09-17 | 1 | -0/+5 |
| |\ | | | | | | | github.com:dbrumbaugh/dynamic-extension-working into new-concurrency | ||||
| | * | Per record cost estimation progress | Douglas B. Rumbaugh | 2025-08-14 | 1 | -0/+5 |
| | | | |||||
| * | | Last updates for dissertation | Douglas Rumbaugh | 2025-09-17 | 1 | -0/+5 |
| | | | |||||
| * | | updates | Douglas Rumbaugh | 2025-06-02 | 1 | -0/+15 |
| |/ | |||||
| * | Merge branch 'new-concurrency' of ↵ | Douglas Rumbaugh | 2025-06-02 | 1 | -0/+5 |
| |\ | | | | | | | github.com:dbrumbaugh/dynamic-extension-working into new-concurrency | ||||
| | * | Merge branch 'new-concurrency' of ↵ | Douglas Rumbaugh | 2025-05-29 | 1 | -1/+5 |
| | |\ | | | | | | | | | | github.com:dbrumbaugh/dynamic-extension-working into new-concurrency | ||||
| | * | | Stall rate benchmarking | Douglas Rumbaugh | 2025-05-29 | 1 | -0/+6 |
| | | | | |||||
| * | | | KNN sweep | Douglas Rumbaugh | 2025-06-02 | 1 | -0/+4 |
| | |/ |/| | |||||
| * | | Added selectivity sweep benchmark | Douglas Rumbaugh | 2025-05-25 | 1 | -0/+5 |
| |/ | |||||
| * | Updates for tail latency stall testing | Douglas Rumbaugh | 2025-05-25 | 1 | -0/+5 |
| | | |||||
| * | Stats tweaks and KNN benchmark | Douglas Rumbaugh | 2025-04-30 | 1 | -0/+5 |
| | | |||||
| * | Missed cmakelists in last commit | Douglas Rumbaugh | 2025-04-09 | 1 | -0/+11 |
| | | |||||
| * | Implemented the legacy policies and fixed a few bugs | Douglas Rumbaugh | 2025-04-07 | 1 | -1/+1 |
| | | |||||
| * | working commit (temporary progress, doesn't build) | Douglas Rumbaugh | 2025-04-05 | 1 | -1/+1 |
| | | |||||
| * | Query Preemption: still has one or two bugs, but mostly works | Douglas Rumbaugh | 2025-02-24 | 1 | -0/+6 |
| | | |||||
| * | Average version of mixed-workload bench | Douglas Rumbaugh | 2025-02-17 | 1 | -0/+6 |
| | | |||||
| * | Multi-threaded mixed workload benchmark | Douglas Rumbaugh | 2025-02-17 | 1 | -0/+6 |
| | | |||||
| * | BTree insertion latency benchmarks | Douglas Rumbaugh | 2025-02-17 | 1 | -0/+5 |
| | | |||||
| * | Parallel background reconstructions appear to be working! | Douglas Rumbaugh | 2025-02-14 | 1 | -1/+1 |
| | | |||||
| * | Progress: began adding parallel merging and locking of levels | Douglas Rumbaugh | 2025-02-11 | 1 | -1/+1 |
| | | |||||
| * | Migrated remaining tail latency benchmarks to new interface | Douglas Rumbaugh | 2025-02-10 | 1 | -9/+9 |
| | | |||||
| * | CMakeLists update | Douglas Rumbaugh | 2025-02-06 | 1 | -0/+1 |
| | | |||||
| * | Background compaction stuff | Douglas Rumbaugh | 2025-02-06 | 1 | -11/+16 |
| | | |||||
| * | More updates | Douglas Rumbaugh | 2025-01-31 | 1 | -4/+4 |
| | | |||||
| * | progress | Douglas Rumbaugh | 2025-01-27 | 1 | -38/+38 |
| | | |||||
| * | Progress | Douglas Rumbaugh | 2025-01-17 | 1 | -2/+2 |
| | | |||||
| * | Additional layout policies + more flexibility in buffer flushing | Douglas Rumbaugh | 2025-01-16 | 1 | -2/+7 |
| | | |||||
| * | Tail latency parm sweep | Douglas Rumbaugh | 2025-01-08 | 1 | -1/+7 |
| | | |||||
| * | Fixed the reversed scale factor and buffer size on benchmarks | Douglas B. Rumbaugh | 2024-12-23 | 1 | -1/+1 |
| | | |||||
| * | Began migrating benchmarks over to new interface | Douglas Rumbaugh | 2024-12-23 | 1 | -19/+19 |
| | | |||||
| * | Continued development | Douglas B. Rumbaugh | 2024-12-22 | 1 | -7/+2 |
| | | |||||
| * | Adjusted query result interfacesHEADmaster | Douglas B. Rumbaugh | 2024-12-06 | 1 | -18/+16 |
| | | | | | | | | 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). | ||||
| * | Interface update (#5) | Douglas B. Rumbaugh | 2024-12-06 | 1 | -46/+54 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 | ||||
| * | Added btree thread scaling benchmark | Douglas Rumbaugh | 2024-05-14 | 1 | -4/+9 |
| | | |||||
| * | Moved thread scalability bench to vldb folder | Douglas Rumbaugh | 2024-05-14 | 1 | -5/+6 |
| | | |||||
| * | Removed patricia trie stuff | Douglas Rumbaugh | 2024-05-14 | 1 | -12/+1 |
| | | |||||
| * | Added program to sample the binary knn files | Douglas Rumbaugh | 2024-05-11 | 1 | -0/+6 |
| | | |||||
| * | MTree structure size | Douglas Rumbaugh | 2024-05-10 | 1 | -0/+6 |
| | | |||||
| * | Added benchmarks for BigANN | Douglas Rumbaugh | 2024-05-09 | 1 | -5/+19 |
| | | |||||
| * | FST benchmarks | Douglas Rumbaugh | 2024-05-03 | 1 | -9/+21 |
| | | |||||
| * | Added a Bentley-Saxe layout policy | Douglas Rumbaugh | 2024-05-01 | 1 | -0/+5 |
| | | |||||
| * | Added VPTree BSM benchmark | Douglas Rumbaugh | 2024-04-30 | 1 | -0/+6 |
| | | |||||
| * | Alex benchmark | Douglas Rumbaugh | 2024-04-29 | 1 | -6/+6 |
| | | |||||
| * | Added vptree parmsweep benchmark and fixed some CMake issues | Douglas Rumbaugh | 2024-04-23 | 1 | -0/+12 |
| | | |||||
| * | TS Parameter sweep benchmark | Douglas Rumbaugh | 2024-04-22 | 1 | -0/+5 |
| | | |||||
| * | Benchmark update+reorganization | Douglas Rumbaugh | 2024-04-22 | 1 | -35/+76 |
| | | | | | The Alex benchmark isn't updated yet. | ||||
| * | More trie baseline tests | Douglas Rumbaugh | 2024-04-19 | 1 | -16/+36 |
| | | |||||
| * | Updated FSTrie to use const char * instead of std::string | Douglas Rumbaugh | 2024-04-15 | 1 | -1/+1 |
| | | | | | Note: this requires the caller to manage the memory of the strings | ||||
| * | Added a dynamic trie benchmark | Douglas Rumbaugh | 2024-04-15 | 1 | -0/+4 |
| | | |||||