surrealpatch/lib/benches
2024-03-08 10:58:07 +00:00
..
sdb_benches Add SurrealKV as an experimental backend store (#3451) 2024-02-15 20:47:10 +00:00
executor.rs Add live query API (#2919) 2023-11-13 17:19:47 +00:00
hash_trie_btree.rs Fix warnings (#3634) 2024-03-08 10:58:07 +00:00
index_btree.rs Feat: In Memory index store (#3020) 2023-12-13 13:37:24 +00:00
index_mtree.rs Fix warnings (#3634) 2024-03-08 10:58:07 +00:00
move_vs_clone.rs Factor out the parser into its own module. (#2979) 2023-11-18 13:56:13 +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.