surrealpatch/lib/benches
2023-11-21 21:25:00 +00:00
..
sdb_benches [bench] New benchmarks against different datastores (#2956) 2023-11-18 13:55:01 +00:00
executor.rs Add live query API (#2919) 2023-11-13 17:19:47 +00:00
index_btree.rs Add live query API (#2919) 2023-11-13 17:19:47 +00:00
index_mtree.rs MTree fully tested with Euclidean and Manhattan distances (#3006) 2023-11-21 21:25:00 +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 Testing - Add CPU profiling to microbenchmarks (#2000) 2023-05-16 23:31:30 +01: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.