surrealpatch/lib/benches
2024-07-05 09:34:43 +00:00
..
sdb_benches Fix benchmarks (#3864) 2024-04-15 10:28:08 +00:00
executor.rs Add live query API (#2919) 2023-11-13 17:19:47 +00:00
hash_trie_btree.rs Refactor Cargo features to use separate core library versions (#3688) 2024-03-15 11:21:32 +00:00
hashset_vs_vector.rs Feature: Initial Hnsw implementation (#3353) 2024-05-08 14:26:41 +00:00
index_btree.rs TreeCache is currently inefficient on writes (#3954) 2024-04-30 18:09:54 +00:00
index_hnsw.rs Fix clippy tests, eliminate globals, remove unused function return variant. (#4303) 2024-07-05 09:34:43 +00:00
index_mtree.rs Fix clippy tests, eliminate globals, remove unused function return variant. (#4303) 2024-07-05 09:34:43 +00:00
move_vs_clone.rs Feature: Initial Hnsw implementation (#3353) 2024-05-08 14:26:41 +00:00
parser.rs Extract core lib into a standalone crate (#3423) 2024-02-02 22:10:47 +00:00
processor.rs Factor out the parser into its own module. (#2979) 2023-11-18 13:56:13 +00:00
README.md [bench] New benchmarks against different datastores (#2956) 2023-11-18 13:55:01 +00:00
sdb.rs [bench] New benchmarks against different datastores (#2956) 2023-11-18 13:55:01 +00:00

Benchmarks

This directory contains some micro-benchmarks that can help objectively establish the performance implications of a change, and also benchmarks that test the performance of different datastores using both the library and the SDK

Manual usage

Common

Execute the following command at the top level of the repository:

$ cargo make bench

Specific datastore

Execute the following commands at the top level of the repository:

  • Memory datastore using the lib or the SDK
$ cargo make bench-lib-mem
$ cargo make bench-sdk-mem
  • RocksDB datastore using the lib or the SDK
$ cargo make bench-lib-rocksdb
$ cargo make bench-sdk-rocksdb
  • FoundationDB datastore using the lib or the SDK

    • Start FoundationDB
    $ docker run -ti -e FDB_NETWORKING_MODE=host --net=host foundationdb/foundationdb:7.1.30
    
    • Run the benchmarks
    $ cargo make bench-lib-rocksdb
    $ cargo make bench-sdk-rocksdb
    
  • WebSocket remote server using the SDK

    • Start SurrealDB server
    $ cargo make build
    $ ./target/release/surreal start
    
    • Run the benchmarks
    $ cargo make bench-sdk-ws
    

Profiling

Some of the benchmarks support CPU profiling:

cargo make bench --profile-time=5

Once complete, check the target/criterion/**/profile/flamegraph.svg files.