2017-01-20 22:16:22 +01:00
|
|
|
# Prerequisites for Windows:
|
|
|
|
# This cmake build is for Windows 64-bit only.
|
2015-07-02 01:13:49 +02:00
|
|
|
#
|
|
|
|
# Prerequisites:
|
2016-10-12 22:40:20 +02:00
|
|
|
# You must have at least Visual Studio 2015 Update 3. Start the Developer Command Prompt window that is a part of Visual Studio installation.
|
2015-07-02 01:13:49 +02:00
|
|
|
# Run the build commands from within the Developer Command Prompt window to have paths to the compiler and runtime libraries set.
|
2015-07-09 23:42:41 +02:00
|
|
|
# You must have git.exe in your %PATH% environment variable.
|
2015-07-02 01:13:49 +02:00
|
|
|
#
|
|
|
|
# To build Rocksdb for Windows is as easy as 1-2-3-4-5:
|
2015-07-15 23:51:51 +02:00
|
|
|
#
|
2015-07-09 23:42:41 +02:00
|
|
|
# 1. Update paths to third-party libraries in thirdparty.inc file
|
2015-07-02 01:13:49 +02:00
|
|
|
# 2. Create a new directory for build artifacts
|
|
|
|
# mkdir build
|
|
|
|
# cd build
|
2015-07-09 23:42:41 +02:00
|
|
|
# 3. Run cmake to generate project files for Windows, add more options to enable required third-party libraries.
|
|
|
|
# See thirdparty.inc for more information.
|
2016-10-12 22:40:20 +02:00
|
|
|
# sample command: cmake -G "Visual Studio 14 Win64" -DGFLAGS=1 -DSNAPPY=1 -DJEMALLOC=1 -DJNI=1 ..
|
2015-10-20 22:35:08 +02:00
|
|
|
# 4. Then build the project in debug mode (you may want to add /m[:<N>] flag to run msbuild in <N> parallel threads
|
|
|
|
# or simply /m ot use all avail cores)
|
|
|
|
# msbuild rocksdb.sln
|
|
|
|
#
|
|
|
|
# rocksdb.sln build features exclusions of test only code in Release. If you build ALL_BUILD then everything
|
|
|
|
# will be attempted but test only code does not build in Release mode.
|
|
|
|
#
|
2015-09-30 20:20:23 +02:00
|
|
|
# 5. And release mode (/m[:<N>] is also supported)
|
2015-10-20 22:35:08 +02:00
|
|
|
# msbuild rocksdb.sln /p:Configuration=Release
|
2015-07-02 01:13:49 +02:00
|
|
|
#
|
2017-01-20 22:16:22 +01:00
|
|
|
# Linux:
|
|
|
|
#
|
|
|
|
# 1. Install a recent toolchain such as devtoolset-3 if you're on a older distro. C++11 required.
|
|
|
|
# 2. mkdir build; cd build
|
|
|
|
# 3. cmake ..
|
|
|
|
# 4. make -j
|
2015-07-02 01:13:49 +02:00
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
project(rocksdb)
|
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
if(POLICY CMP0042)
|
|
|
|
cmake_policy(SET CMP0042 NEW)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules/")
|
|
|
|
|
2017-04-06 22:54:49 +02:00
|
|
|
if(MSVC)
|
2016-09-28 20:53:15 +02:00
|
|
|
include(${CMAKE_CURRENT_SOURCE_DIR}/thirdparty.inc)
|
|
|
|
else()
|
|
|
|
option(WITH_JEMALLOC "build with JeMalloc" OFF)
|
2017-04-06 22:54:49 +02:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
|
|
# FreeBSD has jemaloc as default malloc
|
2017-04-09 20:15:35 +02:00
|
|
|
# but it does not have all the jemalloc files in include/...
|
2017-04-06 22:54:49 +02:00
|
|
|
set(WITH_JEMALLOC ON)
|
2017-04-09 20:15:35 +02:00
|
|
|
else()
|
|
|
|
if(WITH_JEMALLOC)
|
|
|
|
find_package(JeMalloc REQUIRED)
|
|
|
|
add_definitions(-DROCKSDB_JEMALLOC -DJEMALLOC_NO_DEMANGLE)
|
|
|
|
include_directories(${JEMALLOC_INCLUDE_DIR})
|
|
|
|
endif()
|
2017-04-16 20:41:12 +02:00
|
|
|
endif()
|
2016-09-28 20:53:15 +02:00
|
|
|
option(WITH_SNAPPY "build with SNAPPY" OFF)
|
|
|
|
if(WITH_SNAPPY)
|
|
|
|
find_package(snappy REQUIRED)
|
|
|
|
add_definitions(-DSNAPPY)
|
|
|
|
include_directories(${SNAPPY_INCLUDE_DIR})
|
|
|
|
list(APPEND THIRDPARTY_LIBS ${SNAPPY_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
execute_process(COMMAND powershell -Command "Get-Date -format MM_dd_yyyy" OUTPUT_VARIABLE DATE)
|
|
|
|
execute_process(COMMAND powershell -Command "Get-Date -format HH:mm:ss" OUTPUT_VARIABLE TIME)
|
|
|
|
string(REGEX REPLACE "(..)_(..)_..(..).*" "\\1/\\2/\\3" DATE "${DATE}")
|
|
|
|
string(REGEX REPLACE "(..):(.....).*" " \\1:\\2" TIME "${TIME}")
|
2016-10-11 02:32:04 +02:00
|
|
|
set(GIT_DATE_TIME "${DATE} ${TIME}")
|
2016-09-28 20:53:15 +02:00
|
|
|
else()
|
|
|
|
execute_process(COMMAND date "+%Y/%m/%d %H:%M:%S" OUTPUT_VARIABLE DATETIME)
|
|
|
|
string(REGEX REPLACE "\n" "" DATETIME ${DATETIME})
|
2016-10-11 02:32:04 +02:00
|
|
|
set(GIT_DATE_TIME "${DATETIME}")
|
2016-09-28 20:53:15 +02:00
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2015-10-20 20:27:48 +02:00
|
|
|
find_package(Git)
|
|
|
|
|
2017-04-03 18:58:35 +02:00
|
|
|
if(GIT_FOUND AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")
|
2016-09-28 20:53:15 +02:00
|
|
|
if(WIN32)
|
2015-10-20 20:27:48 +02:00
|
|
|
execute_process(COMMAND $ENV{COMSPEC} /C ${GIT_EXECUTABLE} -C ${CMAKE_CURRENT_SOURCE_DIR} rev-parse HEAD OUTPUT_VARIABLE GIT_SHA)
|
2016-09-28 20:53:15 +02:00
|
|
|
else()
|
|
|
|
execute_process(COMMAND ${GIT_EXECUTABLE} -C ${CMAKE_CURRENT_SOURCE_DIR} rev-parse HEAD OUTPUT_VARIABLE GIT_SHA)
|
|
|
|
endif()
|
2015-10-20 20:27:48 +02:00
|
|
|
else()
|
2016-09-28 20:53:15 +02:00
|
|
|
set(GIT_SHA 0)
|
2015-10-20 20:27:48 +02:00
|
|
|
endif()
|
|
|
|
|
2016-07-27 05:29:02 +02:00
|
|
|
string(REGEX REPLACE "[^0-9a-f]+" "" GIT_SHA "${GIT_SHA}")
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2017-04-03 18:58:35 +02:00
|
|
|
if(NOT WIN32)
|
2017-01-24 19:48:55 +01:00
|
|
|
execute_process(COMMAND
|
|
|
|
"./build_tools/version.sh" "full"
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE ROCKSDB_VERSION
|
|
|
|
)
|
|
|
|
string(STRIP "${ROCKSDB_VERSION}" ROCKSDB_VERSION)
|
|
|
|
execute_process(COMMAND
|
|
|
|
"./build_tools/version.sh" "major"
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE ROCKSDB_VERSION_MAJOR
|
|
|
|
)
|
|
|
|
string(STRIP "${ROCKSDB_VERSION_MAJOR}" ROCKSDB_VERSION_MAJOR)
|
|
|
|
endif()
|
|
|
|
|
2017-04-03 18:58:35 +02:00
|
|
|
if(WIN32)
|
|
|
|
option(WITH_AVX2 "build with AVX2" ON)
|
|
|
|
if(WITH_AVX2)
|
|
|
|
if(MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:AVX2")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx2")
|
|
|
|
endif()
|
|
|
|
endif()
|
2017-04-16 20:41:12 +02:00
|
|
|
else()
|
|
|
|
option(WITH_SSE42 "build with SSE4.2" ON)
|
|
|
|
if(WITH_SSE42)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse4.2")
|
|
|
|
endif()
|
2017-04-03 18:58:35 +02:00
|
|
|
endif()
|
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
set(BUILD_VERSION_CC ${CMAKE_BINARY_DIR}/build_version.cc)
|
2016-10-25 20:31:39 +02:00
|
|
|
configure_file(util/build_version.cc.in ${BUILD_VERSION_CC} @ONLY)
|
2016-09-28 20:53:15 +02:00
|
|
|
add_library(build_version OBJECT ${BUILD_VERSION_CC})
|
|
|
|
target_include_directories(build_version PRIVATE
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/util)
|
2017-03-31 01:47:19 +02:00
|
|
|
if(MSVC)
|
2017-04-03 18:58:35 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zi /nologo /EHsc /GS /Gd /GR /GF /fp:precise /Zc:wchar_t /Zc:forScope /errorReport:queue")
|
2016-11-01 09:11:02 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /FC /d2Zi+ /W3 /wd4127 /wd4800 /wd4996 /wd4351")
|
2016-09-28 20:53:15 +02:00
|
|
|
else()
|
2016-11-01 09:11:02 +01:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wextra -Wall")
|
2016-09-28 20:53:15 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wsign-compare -Wshadow -Wno-unused-parameter -Wno-unused-variable -Woverloaded-virtual -Wnon-virtual-dtor -Wno-missing-field-initializers")
|
2017-03-31 01:47:19 +02:00
|
|
|
if(MINGW)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-format")
|
|
|
|
endif()
|
2016-09-28 20:53:15 +02:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
2017-01-20 22:02:58 +01:00
|
|
|
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-omit-frame-pointer")
|
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
CHECK_CXX_COMPILER_FLAG("-momit-leaf-frame-pointer" HAVE_OMIT_LEAF_FRAME_POINTER)
|
|
|
|
if(HAVE_OMIT_LEAF_FRAME_POINTER)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -momit-leaf-frame-pointer")
|
|
|
|
endif()
|
|
|
|
endif()
|
2016-09-28 20:53:15 +02:00
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2016-11-01 09:11:02 +01:00
|
|
|
option(FAIL_ON_WARNINGS "Treat compile warnings as errors" ON)
|
|
|
|
if(FAIL_ON_WARNINGS)
|
|
|
|
if(MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX")
|
|
|
|
else() # assume GCC
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
option(WITH_ASAN "build with ASAN" OFF)
|
|
|
|
if(WITH_ASAN)
|
|
|
|
add_definitions(-DROCKSDB_TSAN_RUN)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
|
|
|
|
if(WITH_JEMALLOC)
|
|
|
|
message(FATAL "ASAN does not work well with JeMalloc")
|
|
|
|
endif()
|
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
option(WITH_TSAN "build with TSAN" OFF)
|
|
|
|
if(WITH_TSAN)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=thread -pie")
|
|
|
|
add_definitions(-DROCKSDB_TSAN_RUN)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread -fPIC")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=thread -fPIC")
|
|
|
|
if(WITH_JEMALLOC)
|
|
|
|
message(FATAL "TSAN does not work well with JeMalloc")
|
|
|
|
endif()
|
|
|
|
endif()
|
2015-11-19 01:23:19 +01:00
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
option(WITH_UBSAN "build with UBSAN" OFF)
|
|
|
|
if(WITH_UBSAN)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=undefined")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=undefined")
|
|
|
|
if(WITH_JEMALLOC)
|
|
|
|
message(FATAL "UBSAN does not work well with JeMalloc")
|
|
|
|
endif()
|
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2015-09-29 21:22:48 +02:00
|
|
|
# Used to run CI build and tests so we can run faster
|
|
|
|
set(OPTIMIZE_DEBUG_DEFAULT 0) # Debug build is unoptimized by default use -DOPTDBG=1 to optimize
|
|
|
|
|
|
|
|
if(DEFINED OPTDBG)
|
|
|
|
set(OPTIMIZE_DEBUG ${OPTDBG})
|
|
|
|
else()
|
|
|
|
set(OPTIMIZE_DEBUG ${OPTIMIZE_DEBUG_DEFAULT})
|
|
|
|
endif()
|
|
|
|
|
2017-03-31 01:47:19 +02:00
|
|
|
if(MSVC)
|
2016-09-28 20:53:15 +02:00
|
|
|
if((${OPTIMIZE_DEBUG} EQUAL 1))
|
|
|
|
message(STATUS "Debug optimization is enabled")
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "/Oxt /MDd")
|
|
|
|
else()
|
|
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Od /RTC1 /Gm /MDd")
|
|
|
|
endif()
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Oxt /Zp8 /Gm- /Gy /MD")
|
|
|
|
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /DEBUG")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /DEBUG")
|
2015-09-29 21:22:48 +02:00
|
|
|
endif()
|
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-builtin-memcmp")
|
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
option(ROCKSDB_LITE "Build RocksDBLite version" OFF)
|
|
|
|
if(ROCKSDB_LITE)
|
|
|
|
add_definitions(-DROCKSDB_LITE)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions")
|
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Cygwin")
|
|
|
|
add_definitions(-fno-builtin-memcmp -DCYGWIN)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
|
|
add_definitions(-DOS_MACOSX)
|
|
|
|
if(CMAKE_SYSTEM_PROCESSOR MATCHES arm)
|
|
|
|
add_definitions(-DIOS_CROSS_COMPILE -DROCKSDB_LITE)
|
|
|
|
# no debug info for IOS, that will make our library big
|
|
|
|
add_definitions(-DNDEBUG)
|
|
|
|
endif()
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
|
|
add_definitions(-DOS_LINUX)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "SunOS")
|
|
|
|
add_definitions(-DOS_SOLARIS)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
|
|
add_definitions(-DOS_FREEBSD)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
|
|
add_definitions(-DOS_NETBSD)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
|
|
|
|
add_definitions(-DOS_OPENBSD)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "DragonFly")
|
|
|
|
add_definitions(-DOS_DRAGONFLYBSD)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Android")
|
|
|
|
add_definitions(-DOS_ANDROID)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
|
|
add_definitions(-DWIN32 -DOS_WIN -D_MBCS -DWIN64 -DNOMINMAX)
|
2017-03-31 01:47:19 +02:00
|
|
|
if(MINGW)
|
|
|
|
add_definitions(-D_WIN32_WINNT=_WIN32_WINNT_VISTA)
|
|
|
|
endif()
|
2016-09-28 20:53:15 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT WIN32)
|
|
|
|
add_definitions(-DROCKSDB_PLATFORM_POSIX -DROCKSDB_LIB_IO_POSIX)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
option(WITH_FALLOCATE "build with fallocate" ON)
|
|
|
|
|
|
|
|
if(WITH_FALLOCATE)
|
|
|
|
include(CheckCSourceCompiles)
|
|
|
|
CHECK_C_SOURCE_COMPILES("
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <linux/falloc.h>
|
|
|
|
int main() {
|
|
|
|
int fd = open(\"/dev/null\", 0);
|
|
|
|
fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE, 0, 1024);
|
|
|
|
}
|
|
|
|
" HAVE_FALLOCATE)
|
|
|
|
if(HAVE_FALLOCATE)
|
|
|
|
add_definitions(-DROCKSDB_FALLOCATE_PRESENT)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
CHECK_FUNCTION_EXISTS(malloc_usable_size HAVE_MALLOC_USABLE_SIZE)
|
|
|
|
if(HAVE_MALLOC_USABLE_SIZE)
|
|
|
|
add_definitions(-DROCKSDB_MALLOC_USABLE_SIZE)
|
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR})
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/include)
|
2016-09-28 20:53:15 +02:00
|
|
|
include_directories(SYSTEM ${PROJECT_SOURCE_DIR}/third-party/gtest-1.7.0/fused-src)
|
|
|
|
find_package(Threads REQUIRED)
|
2015-07-02 01:13:49 +02:00
|
|
|
|
|
|
|
add_subdirectory(third-party/gtest-1.7.0/fused-src/gtest)
|
|
|
|
|
2015-10-20 22:35:08 +02:00
|
|
|
# Main library source code
|
2016-09-28 20:53:15 +02:00
|
|
|
|
2015-07-02 01:13:49 +02:00
|
|
|
set(SOURCES
|
2017-04-06 04:02:00 +02:00
|
|
|
cache/clock_cache.cc
|
|
|
|
cache/lru_cache.cc
|
|
|
|
cache/sharded_cache.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/builder.cc
|
|
|
|
db/c.cc
|
|
|
|
db/column_family.cc
|
2015-07-16 21:10:16 +02:00
|
|
|
db/compacted_db_impl.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/compaction.cc
|
2015-09-10 23:35:25 +02:00
|
|
|
db/compaction_iterator.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/compaction_job.cc
|
|
|
|
db/compaction_picker.cc
|
2017-04-07 05:06:34 +02:00
|
|
|
db/compaction_picker_universal.cc
|
2015-07-15 23:51:51 +02:00
|
|
|
db/convenience.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/db_filesnapshot.cc
|
|
|
|
db/db_impl.cc
|
2017-04-06 02:14:05 +02:00
|
|
|
db/db_impl_write.cc
|
|
|
|
db/db_impl_compaction_flush.cc
|
|
|
|
db/db_impl_files.cc
|
|
|
|
db/db_impl_open.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/db_impl_debug.cc
|
|
|
|
db/db_impl_experimental.cc
|
|
|
|
db/db_impl_readonly.cc
|
2016-01-26 02:49:58 +01:00
|
|
|
db/db_info_dumper.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/db_iter.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/dbformat.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/event_helpers.cc
|
|
|
|
db/experimental.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/external_sst_file_ingestion_job.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/file_indexer.cc
|
|
|
|
db/flush_job.cc
|
|
|
|
db/flush_scheduler.cc
|
|
|
|
db/forward_iterator.cc
|
|
|
|
db/internal_stats.cc
|
|
|
|
db/log_reader.cc
|
|
|
|
db/log_writer.cc
|
|
|
|
db/managed_iterator.cc
|
|
|
|
db/memtable.cc
|
|
|
|
db/memtable_list.cc
|
|
|
|
db/merge_helper.cc
|
|
|
|
db/merge_operator.cc
|
Compaction Support for Range Deletion
Summary:
This diff introduces RangeDelAggregator, which takes ownership of iterators
provided to it via AddTombstones(). The tombstones are organized in a two-level
map (snapshot stripe -> begin key -> tombstone). Tombstone creation avoids data
copy by holding Slices returned by the iterator, which remain valid thanks to pinning.
For compaction, we create a hierarchical range tombstone iterator with structure
matching the iterator over compaction input data. An aggregator based on that
iterator is used by CompactionIterator to determine which keys are covered by
range tombstones. In case of merge operand, the same aggregator is used by
MergeHelper. Upon finishing each file in the compaction, relevant range tombstones
are added to the output file's range tombstone metablock and file boundaries are
updated accordingly.
To check whether a key is covered by range tombstone, RangeDelAggregator::ShouldDelete()
considers tombstones in the key's snapshot stripe. When this function is used outside of
compaction, it also checks newer stripes, which can contain covering tombstones. Currently
the intra-stripe check involves a linear scan; however, in the future we plan to collapse ranges
within a stripe such that binary search can be used.
RangeDelAggregator::AddToBuilder() adds all range tombstones in the table's key-range
to a new table's range tombstone meta-block. Since range tombstones may fall in the gap
between files, we may need to extend some files' key-ranges. The strategy is (1) first file
extends as far left as possible and other files do not extend left, (2) all files extend right
until either the start of the next file or the end of the last range tombstone in the gap,
whichever comes first.
One other notable change is adding release/move semantics to ScopedArenaIterator
such that it can be used to transfer ownership of an arena-allocated iterator, similar to
how unique_ptr is used for malloc'd data.
Depends on D61473
Test Plan: compaction_iterator_test, mock_table, end-to-end tests in D63927
Reviewers: sdong, IslamAbdelRahman, wanning, yhchiang, lightmark
Reviewed By: lightmark
Subscribers: andrewkr, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D62205
2016-10-18 21:04:56 +02:00
|
|
|
db/range_del_aggregator.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/repair.cc
|
2015-08-11 22:44:47 +02:00
|
|
|
db/snapshot_impl.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/table_cache.cc
|
|
|
|
db/table_properties_collector.cc
|
|
|
|
db/transaction_log_impl.cc
|
|
|
|
db/version_builder.cc
|
|
|
|
db/version_edit.cc
|
|
|
|
db/version_set.cc
|
|
|
|
db/wal_manager.cc
|
|
|
|
db/write_batch.cc
|
|
|
|
db/write_batch_base.cc
|
|
|
|
db/write_controller.cc
|
|
|
|
db/write_thread.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
env/env.cc
|
|
|
|
env/env_chroot.cc
|
|
|
|
env/env_hdfs.cc
|
|
|
|
env/memenv.cc
|
2015-10-16 23:10:33 +02:00
|
|
|
memtable/hash_cuckoo_rep.cc
|
|
|
|
memtable/hash_linklist_rep.cc
|
|
|
|
memtable/hash_skiplist_rep.cc
|
2017-04-06 22:59:31 +02:00
|
|
|
memtable/memtable_allocator.cc
|
2016-01-26 02:49:58 +01:00
|
|
|
memtable/skiplistrep.cc
|
|
|
|
memtable/vectorrep.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
monitoring/histogram.cc
|
|
|
|
monitoring/histogram_windowing.cc
|
|
|
|
monitoring/instrumented_mutex.cc
|
|
|
|
monitoring/iostats_context.cc
|
|
|
|
monitoring/perf_context.cc
|
|
|
|
monitoring/perf_level.cc
|
|
|
|
monitoring/statistics.cc
|
|
|
|
monitoring/thread_status_impl.cc
|
|
|
|
monitoring/thread_status_updater.cc
|
|
|
|
monitoring/thread_status_util.cc
|
|
|
|
monitoring/thread_status_util_debug.cc
|
|
|
|
options/cf_options.cc
|
|
|
|
options/db_options.cc
|
|
|
|
options/options.cc
|
|
|
|
options/options_helper.cc
|
|
|
|
options/options_parser.cc
|
|
|
|
options/options_sanity_check.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
port/stack_trace.cc
|
|
|
|
table/adaptive_table_factory.cc
|
|
|
|
table/block.cc
|
|
|
|
table/block_based_filter_block.cc
|
|
|
|
table/block_based_table_builder.cc
|
|
|
|
table/block_based_table_factory.cc
|
|
|
|
table/block_based_table_reader.cc
|
|
|
|
table/block_builder.cc
|
|
|
|
table/block_prefix_index.cc
|
|
|
|
table/bloom_block.cc
|
|
|
|
table/cuckoo_table_builder.cc
|
|
|
|
table/cuckoo_table_factory.cc
|
|
|
|
table/cuckoo_table_reader.cc
|
|
|
|
table/flush_block_policy.cc
|
|
|
|
table/format.cc
|
|
|
|
table/full_filter_block.cc
|
|
|
|
table/get_context.cc
|
2017-03-04 03:09:43 +01:00
|
|
|
table/index_builder.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
table/iterator.cc
|
2017-02-03 01:38:40 +01:00
|
|
|
table/merging_iterator.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
table/meta_blocks.cc
|
2017-03-04 03:09:43 +01:00
|
|
|
table/partitioned_filter_block.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
table/persistent_cache_helper.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
table/plain_table_builder.cc
|
|
|
|
table/plain_table_factory.cc
|
|
|
|
table/plain_table_index.cc
|
|
|
|
table/plain_table_key_coding.cc
|
|
|
|
table/plain_table_reader.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
table/sst_file_writer.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
table/table_properties.cc
|
|
|
|
table/two_level_iterator.cc
|
2016-02-17 20:49:52 +01:00
|
|
|
tools/db_bench_tool.cc
|
2015-10-07 00:52:09 +02:00
|
|
|
tools/dump/db_dump_tool.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
tools/ldb_cmd.cc
|
|
|
|
tools/ldb_tool.cc
|
|
|
|
tools/sst_dump_tool.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/arena.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
util/auto_roll_logger.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/bloom.cc
|
|
|
|
util/coding.cc
|
|
|
|
util/compaction_job_stats_impl.cc
|
|
|
|
util/comparator.cc
|
support for concurrent adds to memtable
Summary:
This diff adds support for concurrent adds to the skiplist memtable
implementations. Memory allocation is made thread-safe by the addition of
a spinlock, with small per-core buffers to avoid contention. Concurrent
memtable writes are made via an additional method and don't impose a
performance overhead on the non-concurrent case, so parallelism can be
selected on a per-batch basis.
Write thread synchronization is an increasing bottleneck for higher levels
of concurrency, so this diff adds --enable_write_thread_adaptive_yield
(default off). This feature causes threads joining a write batch
group to spin for a short time (default 100 usec) using sched_yield,
rather than going to sleep on a mutex. If the timing of the yield calls
indicates that another thread has actually run during the yield then
spinning is avoided. This option improves performance for concurrent
situations even without parallel adds, although it has the potential to
increase CPU usage (and the heuristic adaptation is not yet mature).
Parallel writes are not currently compatible with
inplace updates, update callbacks, or delete filtering.
Enable it with --allow_concurrent_memtable_write (and
--enable_write_thread_adaptive_yield). Parallel memtable writes
are performance neutral when there is no actual parallelism, and in
my experiments (SSD server-class Linux and varying contention and key
sizes for fillrandom) they are always a performance win when there is
more than one thread.
Statistics are updated earlier in the write path, dropping the number
of DB mutex acquisitions from 2 to 1 for almost all cases.
This diff was motivated and inspired by Yahoo's cLSM work. It is more
conservative than cLSM: RocksDB's write batch group leader role is
preserved (along with all of the existing flush and write throttling
logic) and concurrent writers are blocked until all memtable insertions
have completed and the sequence number has been advanced, to preserve
linearizability.
My test config is "db_bench -benchmarks=fillrandom -threads=$T
-batch_size=1 -memtablerep=skip_list -value_size=100 --num=1000000/$T
-level0_slowdown_writes_trigger=9999 -level0_stop_writes_trigger=9999
-disable_auto_compactions --max_write_buffer_number=8
-max_background_flushes=8 --disable_wal --write_buffer_size=160000000
--block_size=16384 --allow_concurrent_memtable_write" on a two-socket
Xeon E5-2660 @ 2.2Ghz with lots of memory and an SSD hard drive. With 1
thread I get ~440Kops/sec. Peak performance for 1 socket (numactl
-N1) is slightly more than 1Mops/sec, at 16 threads. Peak performance
across both sockets happens at 30 threads, and is ~900Kops/sec, although
with fewer threads there is less performance loss when the system has
background work.
Test Plan:
1. concurrent stress tests for InlineSkipList and DynamicBloom
2. make clean; make check
3. make clean; DISABLE_JEMALLOC=1 make valgrind_check; valgrind db_bench
4. make clean; COMPILE_WITH_TSAN=1 make all check; db_bench
5. make clean; COMPILE_WITH_ASAN=1 make all check; db_bench
6. make clean; OPT=-DROCKSDB_LITE make check
7. verify no perf regressions when disabled
Reviewers: igor, sdong
Reviewed By: sdong
Subscribers: MarkCallaghan, IslamAbdelRahman, anthony, yhchiang, rven, sdong, guyg8, kradhakrishnan, dhruba
Differential Revision: https://reviews.facebook.net/D50589
2015-08-15 01:59:07 +02:00
|
|
|
util/concurrent_arena.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/crc32c.cc
|
2016-01-29 03:35:01 +01:00
|
|
|
util/delete_scheduler.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/dynamic_bloom.cc
|
|
|
|
util/event_logger.cc
|
2015-07-22 02:20:57 +02:00
|
|
|
util/file_reader_writer.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
util/file_util.cc
|
2017-04-04 03:27:24 +02:00
|
|
|
util/filename.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/filter_policy.cc
|
|
|
|
util/hash.cc
|
|
|
|
util/log_buffer.cc
|
|
|
|
util/murmurhash.cc
|
2015-11-06 17:07:08 +01:00
|
|
|
util/random.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/rate_limiter.cc
|
|
|
|
util/slice.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
util/sst_file_manager_impl.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/status.cc
|
2015-08-15 01:45:05 +02:00
|
|
|
util/status_message.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/string_util.cc
|
|
|
|
util/sync_point.cc
|
|
|
|
util/testutil.cc
|
|
|
|
util/thread_local.cc
|
2016-08-26 19:41:35 +02:00
|
|
|
util/threadpool_imp.cc
|
2016-03-15 18:57:33 +01:00
|
|
|
util/transaction_test_util.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/xxhash.cc
|
|
|
|
utilities/backupable/backupable_db.cc
|
2016-08-09 19:16:32 +02:00
|
|
|
utilities/blob_db/blob_db.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/checkpoint/checkpoint.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/col_buf_decoder.cc
|
|
|
|
utilities/col_buf_encoder.cc
|
|
|
|
utilities/column_aware_encoding_util.cc
|
2016-01-28 15:44:31 +01:00
|
|
|
utilities/compaction_filters/remove_emptyvalue_compactionfilter.cc
|
2016-08-06 00:56:22 +02:00
|
|
|
utilities/date_tiered/date_tiered_db_impl.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/document/document_db.cc
|
|
|
|
utilities/document/json_document.cc
|
|
|
|
utilities/document/json_document_builder.cc
|
2015-11-19 20:47:12 +01:00
|
|
|
utilities/env_mirror.cc
|
2017-04-04 20:12:47 +02:00
|
|
|
utilities/env_timed.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/geodb/geodb_impl.cc
|
|
|
|
utilities/leveldb_options/leveldb_options.cc
|
2016-11-17 00:27:02 +01:00
|
|
|
utilities/lua/rocks_lua_compaction_filter.cc
|
2015-11-04 02:52:17 +01:00
|
|
|
utilities/memory/memory_util.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/merge_operators/max.cc
|
|
|
|
utilities/merge_operators/put.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/merge_operators/string_append/stringappend.cc
|
|
|
|
utilities/merge_operators/string_append/stringappend2.cc
|
|
|
|
utilities/merge_operators/uint64add.cc
|
2016-07-14 06:08:15 +02:00
|
|
|
utilities/option_change_migration/option_change_migration.cc
|
Add OptionsUtil::LoadOptionsFromFile() API
Summary:
This patch adds OptionsUtil::LoadOptionsFromFile() and
OptionsUtil::LoadLatestOptionsFromDB(), which allow developers
to construct DBOptions and ColumnFamilyOptions from a RocksDB
options file. Note that most pointer-typed options such as
merge_operator will not be constructed.
With this API, developers no longer need to remember all the
options in order to reopen an existing rocksdb instance like
the following:
DBOptions db_options;
std::vector<std::string> cf_names;
std::vector<ColumnFamilyOptions> cf_opts;
// Load primitive-typed options from an existing DB
OptionsUtil::LoadLatestOptionsFromDB(
dbname, &db_options, &cf_names, &cf_opts);
// Initialize necessary pointer-typed options
cf_opts[0].merge_operator.reset(new MyMergeOperator());
...
// Construct the vector of ColumnFamilyDescriptor
std::vector<ColumnFamilyDescriptor> cf_descs;
for (size_t i = 0; i < cf_opts.size(); ++i) {
cf_descs.emplace_back(cf_names[i], cf_opts[i]);
}
// Open the DB
DB* db = nullptr;
std::vector<ColumnFamilyHandle*> cf_handles;
auto s = DB::Open(db_options, dbname, cf_descs,
&handles, &db);
Test Plan:
Augment existing tests in column_family_test
options_test
db_test
Reviewers: igor, IslamAbdelRahman, sdong, anthony
Reviewed By: anthony
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D49095
2015-11-12 15:52:43 +01:00
|
|
|
utilities/options/options_util.cc
|
2016-08-03 02:15:18 +02:00
|
|
|
utilities/persistent_cache/block_cache_tier.cc
|
|
|
|
utilities/persistent_cache/block_cache_tier_file.cc
|
|
|
|
utilities/persistent_cache/block_cache_tier_metadata.cc
|
2016-04-21 21:20:05 +02:00
|
|
|
utilities/persistent_cache/persistent_cache_tier.cc
|
2016-06-08 01:07:30 +02:00
|
|
|
utilities/persistent_cache/volatile_tier_impl.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/redis/redis_lists.cc
|
2016-06-30 03:44:22 +02:00
|
|
|
utilities/simulator_cache/sim_cache.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/spatialdb/spatial_db.cc
|
2015-08-04 05:42:55 +02:00
|
|
|
utilities/table_properties_collectors/compact_on_deletion_collector.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/transactions/optimistic_transaction_db_impl.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/transactions/optimistic_transaction_impl.cc
|
2015-08-25 19:50:27 +02:00
|
|
|
utilities/transactions/transaction_base.cc
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
utilities/transactions/transaction_db_impl.cc
|
2015-09-08 21:36:48 +02:00
|
|
|
utilities/transactions/transaction_db_mutex_impl.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/transactions/transaction_impl.cc
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
utilities/transactions/transaction_lock_mgr.cc
|
|
|
|
utilities/transactions/transaction_util.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/ttl/db_ttl_impl.cc
|
|
|
|
utilities/write_batch_with_index/write_batch_with_index.cc
|
|
|
|
utilities/write_batch_with_index/write_batch_with_index_internal.cc
|
2016-09-28 20:53:15 +02:00
|
|
|
$<TARGET_OBJECTS:build_version>)
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
list(APPEND SOURCES
|
|
|
|
port/win/io_win.cc
|
|
|
|
port/win/env_win.cc
|
|
|
|
port/win/env_default.cc
|
|
|
|
port/win/port_win.cc
|
|
|
|
port/win/win_logger.cc
|
2017-02-06 23:43:55 +01:00
|
|
|
port/win/win_thread.cc
|
2016-09-28 20:53:15 +02:00
|
|
|
port/win/xpress_win.cc)
|
|
|
|
else()
|
|
|
|
list(APPEND SOURCES
|
|
|
|
port/port_posix.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
env/env_posix.cc
|
|
|
|
env/io_posix.cc)
|
2016-09-28 20:53:15 +02:00
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2017-01-20 22:16:22 +01:00
|
|
|
if(WIN32)
|
|
|
|
set(SYSTEM_LIBS ${SYSTEM_LIBS} Shlwapi.lib Rpcrt4.lib)
|
|
|
|
set(ROCKSDB_STATIC_LIB rocksdblib${ARTIFACT_SUFFIX})
|
|
|
|
set(ROCKSDB_IMPORT_LIB rocksdb${ARTIFACT_SUFFIX})
|
|
|
|
set(LIBS ${ROCKSDB_STATIC_LIB} ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
|
|
|
|
else()
|
|
|
|
set(SYSTEM_LIBS ${CMAKE_THREAD_LIBS_INIT} rt)
|
|
|
|
set(ROCKSDB_STATIC_LIB rocksdb${ARTIFACT_SUFFIX})
|
|
|
|
set(ROCKSDB_SHARED_LIB rocksdb-shared)
|
|
|
|
set(ROCKSDB_IMPORT_LIB ${ROCKSDB_SHARED_LIB})
|
|
|
|
set(LIBS ${ROCKSDB_SHARED_LIB} ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
|
|
|
|
|
|
|
|
add_library(${ROCKSDB_SHARED_LIB} SHARED ${SOURCES})
|
|
|
|
target_link_libraries(${ROCKSDB_SHARED_LIB}
|
|
|
|
${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
|
|
|
|
set_target_properties(${ROCKSDB_SHARED_LIB} PROPERTIES
|
|
|
|
LINKER_LANGUAGE CXX
|
2017-01-24 19:48:55 +01:00
|
|
|
VERSION ${ROCKSDB_VERSION}
|
|
|
|
SOVERSION ${ROCKSDB_VERSION_MAJOR}
|
2017-01-20 22:16:22 +01:00
|
|
|
CXX_STANDARD 11
|
|
|
|
OUTPUT_NAME "rocksdb")
|
|
|
|
endif()
|
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
option(WITH_LIBRADOS "Build with librados" OFF)
|
|
|
|
if(WITH_LIBRADOS)
|
|
|
|
list(APPEND SOURCES
|
|
|
|
utilities/env_librados.cc)
|
|
|
|
list(APPEND THIRDPARTY_LIBS rados)
|
|
|
|
endif()
|
2015-10-20 22:35:08 +02:00
|
|
|
|
2017-01-20 22:16:22 +01:00
|
|
|
add_library(${ROCKSDB_STATIC_LIB} STATIC ${SOURCES})
|
|
|
|
target_link_libraries(${ROCKSDB_STATIC_LIB}
|
2016-09-28 20:53:15 +02:00
|
|
|
${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
|
|
|
|
|
|
|
|
if(WIN32)
|
2017-01-20 22:16:22 +01:00
|
|
|
add_library(${ROCKSDB_IMPORT_LIB} SHARED ${SOURCES})
|
|
|
|
target_link_libraries(${ROCKSDB_IMPORT_LIB}
|
|
|
|
${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
|
|
|
|
set_target_properties(${ROCKSDB_IMPORT_LIB} PROPERTIES
|
2017-03-31 01:47:19 +02:00
|
|
|
COMPILE_DEFINITIONS "ROCKSDB_DLL;ROCKSDB_LIBRARY_EXPORTS")
|
|
|
|
if(MSVC)
|
|
|
|
set_target_properties(${ROCKSDB_STATIC_LIB} PROPERTIES
|
|
|
|
COMPILE_FLAGS "/Fd${CMAKE_CFG_INTDIR}/${ROCKSDB_STATIC_LIB}.pdb")
|
|
|
|
set_target_properties(${ROCKSDB_IMPORT_LIB} PROPERTIES
|
|
|
|
COMPILE_FLAGS "/Fd${CMAKE_CFG_INTDIR}/${ROCKSDB_IMPORT_LIB}.pdb")
|
|
|
|
endif()
|
2016-09-28 20:53:15 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
option(WITH_JNI "build with JNI" OFF)
|
|
|
|
if(WITH_JNI OR JNI)
|
|
|
|
message(STATUS "JNI library is enabled")
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/java)
|
2016-01-28 15:44:31 +01:00
|
|
|
else()
|
|
|
|
message(STATUS "JNI library is disabled")
|
|
|
|
endif()
|
|
|
|
|
2015-07-02 01:13:49 +02:00
|
|
|
set(TESTS
|
2017-04-06 04:02:00 +02:00
|
|
|
cache/cache_test.cc
|
|
|
|
cache/lru_cache_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/column_family_test.cc
|
|
|
|
db/compact_files_test.cc
|
2015-12-09 16:46:10 +01:00
|
|
|
db/compaction_iterator_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/compaction_job_stats_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/compaction_job_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/compaction_picker_test.cc
|
|
|
|
db/comparator_db_test.cc
|
|
|
|
db/corruption_test.cc
|
|
|
|
db/cuckoo_table_db_test.cc
|
2017-02-27 21:19:23 +01:00
|
|
|
db/db_basic_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/db_block_cache_test.cc
|
|
|
|
db/db_bloom_filter_test.cc
|
2015-07-15 01:03:47 +02:00
|
|
|
db/db_compaction_filter_test.cc
|
2015-07-21 12:05:57 +02:00
|
|
|
db/db_compaction_test.cc
|
2015-07-15 01:03:47 +02:00
|
|
|
db/db_dynamic_level_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/db_flush_test.cc
|
2015-07-21 01:05:28 +02:00
|
|
|
db/db_inplace_update_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/db_io_failure_test.cc
|
2016-01-21 00:17:52 +01:00
|
|
|
db/db_iter_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/db_iterator_test.cc
|
2015-07-21 00:51:33 +02:00
|
|
|
db/db_log_iter_test.cc
|
2016-11-14 03:58:17 +01:00
|
|
|
db/db_memtable_test.cc
|
2016-12-16 20:00:03 +01:00
|
|
|
db/db_merge_operator_test.cc
|
2016-07-13 00:30:38 +02:00
|
|
|
db/db_options_test.cc
|
2016-01-21 00:17:52 +01:00
|
|
|
db/db_properties_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/db_range_del_test.cc
|
|
|
|
db/db_sst_test.cc
|
2016-01-21 00:17:52 +01:00
|
|
|
db/db_table_properties_test.cc
|
|
|
|
db/db_tailing_iter_test.cc
|
|
|
|
db/db_test.cc
|
2016-03-01 03:38:03 +01:00
|
|
|
db/db_test2.cc
|
2015-07-15 03:24:45 +02:00
|
|
|
db/db_universal_compaction_test.cc
|
2015-08-05 20:56:19 +02:00
|
|
|
db/db_wal_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/dbformat_test.cc
|
|
|
|
db/deletefile_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/external_sst_file_basic_test.cc
|
|
|
|
db/external_sst_file_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/fault_injection_test.cc
|
|
|
|
db/file_indexer_test.cc
|
|
|
|
db/filename_test.cc
|
|
|
|
db/flush_job_test.cc
|
|
|
|
db/listener_test.cc
|
|
|
|
db/log_test.cc
|
2015-10-14 20:06:27 +02:00
|
|
|
db/manual_compaction_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/memtable_list_test.cc
|
2015-07-22 03:04:28 +02:00
|
|
|
db/merge_helper_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
db/merge_test.cc
|
2015-11-11 07:58:01 +01:00
|
|
|
db/options_file_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/perf_context_test.cc
|
|
|
|
db/plain_table_db_test.cc
|
|
|
|
db/prefix_test.cc
|
2016-03-18 23:18:42 +01:00
|
|
|
db/repair_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
db/table_properties_collector_test.cc
|
|
|
|
db/version_builder_test.cc
|
|
|
|
db/version_edit_test.cc
|
|
|
|
db/version_set_test.cc
|
|
|
|
db/wal_manager_test.cc
|
|
|
|
db/write_batch_test.cc
|
|
|
|
db/write_callback_test.cc
|
|
|
|
db/write_controller_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
env/env_basic_test.cc
|
|
|
|
env/env_test.cc
|
|
|
|
env/mock_env_test.cc
|
2017-04-06 22:59:31 +02:00
|
|
|
memtable/inlineskiplist_test.cc
|
|
|
|
memtable/skiplist_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
monitoring/histogram_test.cc
|
|
|
|
monitoring/iostats_context_test.cc
|
|
|
|
monitoring/statistics_test.cc
|
|
|
|
options/options_settable_test.cc
|
|
|
|
options/options_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
table/block_based_filter_block_test.cc
|
|
|
|
table/block_test.cc
|
|
|
|
table/cuckoo_table_builder_test.cc
|
|
|
|
table/cuckoo_table_reader_test.cc
|
|
|
|
table/full_filter_block_test.cc
|
|
|
|
table/merger_test.cc
|
|
|
|
table/table_test.cc
|
2015-10-15 02:08:28 +02:00
|
|
|
tools/ldb_cmd_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
tools/reduce_levels_test.cc
|
2015-10-15 02:08:28 +02:00
|
|
|
tools/sst_dump_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/arena_test.cc
|
2017-04-04 03:27:24 +02:00
|
|
|
util/auto_roll_logger_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/autovector_test.cc
|
|
|
|
util/bloom_test.cc
|
|
|
|
util/coding_test.cc
|
|
|
|
util/crc32c_test.cc
|
2015-12-09 16:46:10 +01:00
|
|
|
util/delete_scheduler_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/dynamic_bloom_test.cc
|
|
|
|
util/event_logger_test.cc
|
RangeSync not to sync last 1MB of the file
Summary:
From other ones' investigation:
"sync_file_range() behavior highly depends on kernel version and filesystem.
xfs does neighbor page flushing outside of the specified ranges. For example, sync_file_range(fd, 8192, 16384) does not only trigger flushing page #3 to #4, but also flushing many more dirty pages (i.e. up to page#16)... Ranges of the sync_file_range() should be far enough from write() offset (at least 1MB)."
Test Plan: make all check
Reviewers: igor, rven, kradhakrishnan, yhchiang, IslamAbdelRahman, anthony
Reviewed By: anthony
Subscribers: yoshinorim, MarkCallaghan, sumeet, domas, dhruba, leveldb, ljin
Differential Revision: https://reviews.facebook.net/D15807
2015-07-20 23:46:15 +02:00
|
|
|
util/file_reader_writer_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
util/filelock_test.cc
|
2015-07-22 03:04:28 +02:00
|
|
|
util/heap_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
util/rate_limiter_test.cc
|
|
|
|
util/slice_transform_test.cc
|
|
|
|
util/thread_list_test.cc
|
|
|
|
util/thread_local_test.cc
|
|
|
|
utilities/backupable/backupable_db_test.cc
|
2016-08-09 19:16:32 +02:00
|
|
|
utilities/blob_db/blob_db_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/checkpoint/checkpoint_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/column_aware_encoding_test.cc
|
2016-08-06 00:56:22 +02:00
|
|
|
utilities/date_tiered/date_tiered_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/document/document_db_test.cc
|
|
|
|
utilities/document/json_document_test.cc
|
|
|
|
utilities/geodb/geodb_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/lua/rocks_lua_test.cc
|
2015-11-04 02:52:17 +01:00
|
|
|
utilities/memory/memory_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/merge_operators/string_append/stringappend_test.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
utilities/object_registry_test.cc
|
2016-07-14 06:08:15 +02:00
|
|
|
utilities/option_change_migration/option_change_migration_test.cc
|
2015-11-12 23:53:19 +01:00
|
|
|
utilities/options/options_util_test.cc
|
2016-06-02 22:42:41 +02:00
|
|
|
utilities/persistent_cache/hash_table_test.cc
|
2016-06-08 01:07:30 +02:00
|
|
|
utilities/persistent_cache/persistent_cache_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/redis/redis_lists_test.cc
|
|
|
|
utilities/spatialdb/spatial_db_test.cc
|
2015-08-04 05:42:55 +02:00
|
|
|
utilities/table_properties_collectors/compact_on_deletion_collector_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/transactions/optimistic_transaction_test.cc
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +02:00
|
|
|
utilities/transactions/transaction_test.cc
|
2015-07-02 01:13:49 +02:00
|
|
|
utilities/ttl/ttl_test.cc
|
|
|
|
utilities/write_batch_with_index/write_batch_with_index_test.cc
|
|
|
|
)
|
2016-09-28 20:53:15 +02:00
|
|
|
if(WITH_LIBRADOS)
|
|
|
|
list(APPEND TESTS utilities/env_librados_test.cc)
|
|
|
|
endif()
|
2015-07-02 01:13:49 +02:00
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
set(BENCHMARKS
|
2017-04-06 22:59:31 +02:00
|
|
|
cache/cache_bench.cc
|
|
|
|
memtable/memtablerep_bench.cc
|
2016-09-28 20:53:15 +02:00
|
|
|
tools/db_bench.cc
|
|
|
|
table/table_reader_bench.cc
|
|
|
|
utilities/column_aware_encoding_exp.cc
|
|
|
|
utilities/persistent_cache/hash_table_bench.cc)
|
|
|
|
add_library(testharness OBJECT util/testharness.cc)
|
|
|
|
foreach(sourcefile ${BENCHMARKS})
|
|
|
|
get_filename_component(exename ${sourcefile} NAME_WE)
|
|
|
|
add_executable(${exename}${ARTIFACT_SUFFIX} ${sourcefile}
|
|
|
|
$<TARGET_OBJECTS:testharness>)
|
2017-01-20 22:16:22 +01:00
|
|
|
target_link_libraries(${exename}${ARTIFACT_SUFFIX} gtest ${LIBS})
|
2016-09-28 20:53:15 +02:00
|
|
|
endforeach(sourcefile ${BENCHMARKS})
|
2015-09-30 20:20:23 +02:00
|
|
|
|
2016-09-28 20:53:15 +02:00
|
|
|
# For test util library that is build only in DEBUG mode
|
|
|
|
# and linked to tests. Add test only code that is not #ifdefed for Release here.
|
|
|
|
set(TESTUTIL_SOURCE
|
|
|
|
db/db_test_util.cc
|
2017-04-06 04:02:00 +02:00
|
|
|
env/mock_env.cc
|
|
|
|
monitoring/thread_status_updater_debug.cc
|
2016-09-28 20:53:15 +02:00
|
|
|
table/mock_table.cc
|
|
|
|
util/fault_injection_test_env.cc
|
|
|
|
)
|
2015-10-20 22:35:08 +02:00
|
|
|
# test utilities are only build in debug
|
2016-09-28 20:53:15 +02:00
|
|
|
enable_testing()
|
|
|
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND})
|
2015-10-20 22:35:08 +02:00
|
|
|
set(TESTUTILLIB testutillib${ARTIFACT_SUFFIX})
|
|
|
|
add_library(${TESTUTILLIB} STATIC ${TESTUTIL_SOURCE})
|
2017-03-31 01:47:19 +02:00
|
|
|
if(MSVC)
|
2016-09-28 20:53:15 +02:00
|
|
|
set_target_properties(${TESTUTILLIB} PROPERTIES COMPILE_FLAGS "/Fd${CMAKE_CFG_INTDIR}/testutillib${ARTIFACT_SUFFIX}.pdb")
|
|
|
|
endif()
|
2015-10-20 22:35:08 +02:00
|
|
|
set_target_properties(${TESTUTILLIB}
|
|
|
|
PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD_RELEASE 1
|
|
|
|
EXCLUDE_FROM_DEFAULT_BUILD_MINRELEASE 1
|
|
|
|
EXCLUDE_FROM_DEFAULT_BUILD_RELWITHDEBINFO 1
|
|
|
|
)
|
|
|
|
|
|
|
|
# Tests are excluded from Release builds
|
|
|
|
set(TEST_EXES ${TESTS})
|
|
|
|
|
|
|
|
foreach(sourcefile ${TEST_EXES})
|
2016-09-28 20:53:15 +02:00
|
|
|
get_filename_component(exename ${sourcefile} NAME_WE)
|
|
|
|
add_executable(${exename}${ARTIFACT_SUFFIX} ${sourcefile}
|
|
|
|
$<TARGET_OBJECTS:testharness>)
|
2015-10-20 22:35:08 +02:00
|
|
|
set_target_properties(${exename}${ARTIFACT_SUFFIX}
|
|
|
|
PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD_RELEASE 1
|
|
|
|
EXCLUDE_FROM_DEFAULT_BUILD_MINRELEASE 1
|
|
|
|
EXCLUDE_FROM_DEFAULT_BUILD_RELWITHDEBINFO 1
|
|
|
|
)
|
2017-01-20 22:16:22 +01:00
|
|
|
target_link_libraries(${exename}${ARTIFACT_SUFFIX} testutillib${ARTIFACT_SUFFIX} gtest ${LIBS})
|
2016-09-28 20:53:15 +02:00
|
|
|
if(NOT "${exename}" MATCHES "db_sanity_test")
|
|
|
|
add_test(NAME ${exename} COMMAND ${exename}${ARTIFACT_SUFFIX})
|
|
|
|
add_dependencies(check ${exename}${ARTIFACT_SUFFIX})
|
|
|
|
endif()
|
2015-10-20 22:35:08 +02:00
|
|
|
endforeach(sourcefile ${TEST_EXES})
|
|
|
|
|
2015-09-30 20:20:23 +02:00
|
|
|
# C executables must link to a shared object
|
2016-09-28 20:53:15 +02:00
|
|
|
set(C_TESTS db/c_test.c)
|
2015-10-20 22:35:08 +02:00
|
|
|
set(C_TEST_EXES ${C_TESTS})
|
2015-09-30 20:20:23 +02:00
|
|
|
|
2015-10-20 22:35:08 +02:00
|
|
|
foreach(sourcefile ${C_TEST_EXES})
|
2015-09-30 20:20:23 +02:00
|
|
|
string(REPLACE ".c" "" exename ${sourcefile})
|
|
|
|
string(REGEX REPLACE "^((.+)/)+" "" exename ${exename})
|
|
|
|
add_executable(${exename}${ARTIFACT_SUFFIX} ${sourcefile})
|
2015-10-20 22:35:08 +02:00
|
|
|
set_target_properties(${exename}${ARTIFACT_SUFFIX}
|
|
|
|
PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD_RELEASE 1
|
|
|
|
EXCLUDE_FROM_DEFAULT_BUILD_MINRELEASE 1
|
|
|
|
EXCLUDE_FROM_DEFAULT_BUILD_RELWITHDEBINFO 1
|
|
|
|
)
|
2017-01-20 22:16:22 +01:00
|
|
|
target_link_libraries(${exename}${ARTIFACT_SUFFIX} ${ROCKSDB_IMPORT_LIB} testutillib${ARTIFACT_SUFFIX})
|
2016-09-28 20:53:15 +02:00
|
|
|
add_test(NAME ${exename} COMMAND ${exename}${ARTIFACT_SUFFIX})
|
|
|
|
add_dependencies(check ${exename}${ARTIFACT_SUFFIX})
|
2015-10-20 22:35:08 +02:00
|
|
|
endforeach(sourcefile ${C_TEST_EXES})
|
2017-01-20 22:16:22 +01:00
|
|
|
add_subdirectory(tools)
|
2017-01-24 19:48:55 +01:00
|
|
|
|
|
|
|
# Installation and packaging for Linux
|
2017-04-03 18:58:35 +02:00
|
|
|
if(NOT WIN32)
|
2017-01-24 19:48:55 +01:00
|
|
|
install(TARGETS ${ROCKSDB_STATIC_LIB} COMPONENT devel ARCHIVE DESTINATION lib64)
|
|
|
|
install(TARGETS ${ROCKSDB_SHARED_LIB} COMPONENT runtime DESTINATION lib64)
|
|
|
|
install(DIRECTORY "${PROJECT_SOURCE_DIR}/include/rocksdb/"
|
|
|
|
COMPONENT devel
|
|
|
|
DESTINATION include/rocksdb)
|
|
|
|
set(CMAKE_INSTALL_PREFIX /usr)
|
|
|
|
endif()
|