14f92b4a0f
Fixes root cause of a cascade of failures in replication code: - Replica handling of deleting an edge is now corrected. Now tolerant of multiple edges of the same relationship type. - Improved robustness: correct exception handling around failed stream of current WAL file. This now means a REPLICA failure will no longer prevent transactions on MAIN from performing WAL writes. - Slightly better diagnostic messages, not user friendly but helps get developer to correct root cause quicker. - Proactively remove vertex+edges during Abort rather than defer to GC to do that work, this included fixing constraints and indexes to be safe. Co-authored-by: Andreja Tonev <andreja.tonev@memgraph.io>
20 lines
1.1 KiB
CMake
20 lines
1.1 KiB
CMake
find_package(gflags REQUIRED)
|
|
|
|
add_executable(memgraph__e2e__replication__constraints constraints.cpp)
|
|
target_link_libraries(memgraph__e2e__replication__constraints gflags mgclient mg-utils mg-io Threads::Threads)
|
|
|
|
add_executable(memgraph__e2e__replication__indices indices.cpp)
|
|
target_link_libraries(memgraph__e2e__replication__indices gflags mgclient mg-utils mg-io Threads::Threads)
|
|
|
|
add_executable(memgraph__e2e__replication__read_write_benchmark read_write_benchmark.cpp)
|
|
target_link_libraries(memgraph__e2e__replication__read_write_benchmark gflags json mgclient mg-utils mg-io Threads::Threads)
|
|
|
|
copy_e2e_python_files(replication_show common.py)
|
|
copy_e2e_python_files(replication_show conftest.py)
|
|
copy_e2e_python_files(replication_show show.py)
|
|
copy_e2e_python_files(replication_show show_while_creating_invalid_state.py)
|
|
copy_e2e_python_files(replication_show edge_delete.py)
|
|
copy_e2e_python_files_from_parent_folder(replication_show ".." memgraph.py)
|
|
copy_e2e_python_files_from_parent_folder(replication_show ".." interactive_mg_runner.py)
|
|
copy_e2e_python_files_from_parent_folder(replication_show ".." mg_utils.py)
|