c39a2278ae
Summary: A simple benchmark that starts a HA cluster with 3 machines. The benchmark issues only `CREATE (:Node)` queries. Local results (debug build), for this raft config, are: ``` duration 4.26899 executed_writes 300 write_per_second 70.2743 ``` Reviewers: ipaljak, mferencevic Reviewed By: ipaljak Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1798
7 lines
313 B
CMake
7 lines
313 B
CMake
set(target_name memgraph__feature_benchmark__ha)
|
|
|
|
set(benchmark_target_name ${target_name}__benchmark)
|
|
add_executable(${benchmark_target_name} benchmark.cpp)
|
|
set_target_properties(${benchmark_target_name} PROPERTIES OUTPUT_NAME benchmark)
|
|
target_link_libraries(${benchmark_target_name} mg-utils mg-communication)
|