summaryrefslogtreecommitdiffstats
path: root/benchmarks
Commit message (Collapse)AuthorAgeFilesLines
* Query Preemption: still has one or two bugs, but mostly worksDouglas Rumbaugh2025-02-243-4/+189
|
* Added uniform data generator as file optionDouglas Rumbaugh2025-02-201-215/+240
|
* Average version of mixed-workload benchDouglas Rumbaugh2025-02-172-8/+186
|
* Thread count sweepDouglas Rumbaugh2025-02-171-7/+14
|
* Fixed a few benchmark bugsDouglas Rumbaugh2025-02-171-0/+4
|
* Multi-threaded mixed workload benchmarkDouglas Rumbaugh2025-02-171-0/+150
|
* Fixed legacy tiering policyDouglas Rumbaugh2025-02-171-3/+3
|
* BTree insertion latency benchmarksDouglas Rumbaugh2025-02-171-0/+77
|
* Retooled dist benchmark to actually print dist infoDouglas Rumbaugh2025-02-141-8/+7
|
* Parallel background reconstructions appear to be working!Douglas Rumbaugh2025-02-141-13/+0
|
* progress towards resolving asynch structure mergesDouglas Rumbaugh2025-02-131-0/+12
|
* more updatesDouglas Rumbaugh2025-02-111-0/+1
|
* Progress: began adding parallel merging and locking of levelsDouglas Rumbaugh2025-02-111-1/+0
|
* Migrated remaining tail latency benchmarks to new interfaceDouglas Rumbaugh2025-02-102-10/+10
|
* Background compaction stuffDouglas Rumbaugh2025-02-063-2/+231
|
* Additional layout policies + more flexibility in buffer flushingDouglas Rumbaugh2025-01-164-29/+128
|
* Tail latency parm sweepDouglas Rumbaugh2025-01-081-0/+114
|
* Ajusted progress bar in insert benchmarkDouglas Rumbaugh2025-01-071-1/+0
|
* Fixed the reversed scale factor and buffer size on benchmarksDouglas B. Rumbaugh2024-12-239-8/+9
|
* Began migrating benchmarks over to new interfaceDouglas Rumbaugh2024-12-2314-30/+61
|
* Adjusted query result interfacesHEADmasterDouglas B. Rumbaugh2024-12-062-5/+3
| | | | | | | 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 fixesDouglas B. Rumbaugh2024-12-063-15/+20
|
* Interface update (#5)Douglas B. Rumbaugh2024-12-0622-226/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 benchmarkDouglas Rumbaugh2024-05-141-10/+10
|
* Moved thread scalability bench to vldb folderDouglas Rumbaugh2024-05-141-1/+1
|
* Removed patricia trie stuffDouglas Rumbaugh2024-05-141-112/+0
|
* Poplar Trie: updated benchmark to standard formatDouglas Rumbaugh2024-05-142-31/+30
|
* Added program to sample the binary knn filesDouglas Rumbaugh2024-05-111-0/+55
|
* MTree structure sizeDouglas Rumbaugh2024-05-102-2/+6
|
* Added benchmarks for BigANNDouglas Rumbaugh2024-05-098-7/+379
|
* TSParmsweep: enabled forcing a full buffer scanDouglas Rumbaugh2024-05-081-1/+1
|
* VPTree BSM: Added extra tab to keep numbers from running togetherDouglas Rumbaugh2024-05-081-1/+1
|
* FST benchmarksDouglas Rumbaugh2024-05-033-1/+244
|
* Switched to using framework-BSM mode for Bentley-Saxe benchmarksDouglas Rumbaugh2024-05-032-28/+70
|
* Adjusted selectivity for range benches down to .0001Douglas Rumbaugh2024-05-017-8/+9
|
* TS BSM AdjustmentsDouglas Rumbaugh2024-05-013-11/+78
|
* File Util: fixed the reading in of undesired queriesDouglas Rumbaugh2024-05-011-1/+1
|
* Added error checks to file opening, and generalized key typesDouglas Rumbaugh2024-05-011-4/+36
|
* VPTree BSM BenchmarkDouglas Rumbaugh2024-04-301-0/+74
|
* Added VPTree BSM benchmarkDouglas Rumbaugh2024-04-305-5/+362
|
* Alex benchmarkDouglas Rumbaugh2024-04-291-146/+85
|
* Updated dynamic PGM benchmark to use index sizeDouglas Rumbaugh2024-04-291-1/+1
|
* Added vptree parmsweep benchmark and fixed some CMake issuesDouglas Rumbaugh2024-04-231-0/+129
|
* BSMTriespline: updated to use a rangecount queryDouglas Rumbaugh2024-04-231-4/+6
|
* benchmarks/file_util: removed dependency on framework in prep for ALEXDouglas Rumbaugh2024-04-231-4/+1
|
* Fixed usage printf() in benchmarksDouglas Rumbaugh2024-04-228-8/+8
|
* TS Parameter sweep benchmarkDouglas Rumbaugh2024-04-221-0/+124
|
* Benchmark update+reorganizationDouglas Rumbaugh2024-04-2213-50/+536
| | | | The Alex benchmark isn't updated yet.
* Added plain BSM and MDSP BSM benchmarkDouglas Rumbaugh2024-04-225-2/+311
|
* Properly implemented support for iteratively decomposable problemsDouglas Rumbaugh2024-04-191-6/+0
|