Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Commit

Permalink
Remove microbenchmarks (#1442)
Browse files Browse the repository at this point in the history
* This is one of those commits that you just dream about for years. And yet here we are! Removing the microbenchmarks!
No longer will we get TPC-C numbers by running embedded logic. We will keep everything real over JDBC.
I would like to give a shout out to KB for sticking with me all this time. I am sitting in a German hotel waiting for her to fly in from Pittsburgh tomorrow.
  • Loading branch information
lmwnshn authored and tli2 committed Jun 29, 2018
1 parent 2b67714 commit 6cc5559
Show file tree
Hide file tree
Showing 46 changed files with 1 addition and 13,136 deletions.
29 changes: 1 addition & 28 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,28 +62,6 @@ set_target_properties(peloton-bin PROPERTIES OUTPUT_NAME peloton)

##################################################################################

# --[ Benchmarks

# --[ tpcc
file(GLOB_RECURSE tpcc_srcs ${PROJECT_SOURCE_DIR}/src/main/tpcc/*.cpp)
add_executable(tpcc EXCLUDE_FROM_ALL ${tpcc_srcs})
target_link_libraries(tpcc peloton)

# --[ ycsb
file(GLOB_RECURSE ycsb_srcs ${PROJECT_SOURCE_DIR}/src/main/ycsb/*.cpp)
add_executable(ycsb EXCLUDE_FROM_ALL ${ycsb_srcs})
target_link_libraries(ycsb peloton)

# --[ sdbench
file(GLOB_RECURSE sdbench_srcs ${PROJECT_SOURCE_DIR}/src/main/sdbench/*.cpp)
add_executable(sdbench EXCLUDE_FROM_ALL ${sdbench_srcs})
target_link_libraries(sdbench peloton)

# --[ tpch
file(GLOB_RECURSE tpch_srcs ${PROJECT_SOURCE_DIR}/src/main/tpch/*.cpp)
add_executable(tpch EXCLUDE_FROM_ALL ${tpch_srcs})
target_link_libraries(tpch peloton)

# --[ logger
#file(GLOB_RECURSE logger_srcs ${PROJECT_SOURCE_DIR}/src/main/logger/*.cpp)
#list(APPEND logger_srcs ${ycsb_srcs})
Expand All @@ -96,16 +74,11 @@ target_link_libraries(tpch peloton)
# --[ link to jemalloc
set(EXE_LINK_LIBRARIES ${JEMALLOC_LIBRARIES})
set(EXE_LINK_FLAGS "-Wl,--no-as-needed")
set(EXE_LIST peloton-bin ycsb tpcc sdbench tpch)
set(EXE_LIST peloton-bin)
foreach(exe_name ${EXE_LIST})
target_link_libraries(${exe_name} ${EXE_LINK_LIBRARIES})
if (LINUX)
set_target_properties(${exe_name} PROPERTIES LINK_FLAGS ${EXE_LINK_FLAGS})
endif ()
endforeach()

# --[ benchmark

add_custom_target(benchmark)
add_dependencies(benchmark tpcc ycsb sdbench)

124 changes: 0 additions & 124 deletions src/include/benchmark/benchmark_common.h

This file was deleted.

95 changes: 0 additions & 95 deletions src/include/benchmark/logger/logger_configuration.h

This file was deleted.

61 changes: 0 additions & 61 deletions src/include/benchmark/logger/logger_workload.h

This file was deleted.

32 changes: 0 additions & 32 deletions src/include/benchmark/peloton/main.h

This file was deleted.

Loading

0 comments on commit 6cc5559

Please sign in to comment.