mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Do not built clickhouse-keeper w/o NuRaft
Otherwise it will fail because of unused argument and unreachable code.
This commit is contained in:
parent
40595da023
commit
c343f85b64
@ -49,6 +49,12 @@ option (ENABLE_CLICKHOUSE_GIT_IMPORT "A tool to analyze Git repositories"
|
|||||||
|
|
||||||
|
|
||||||
option (ENABLE_CLICKHOUSE_KEEPER "ClickHouse alternative to ZooKeeper" ${ENABLE_CLICKHOUSE_ALL})
|
option (ENABLE_CLICKHOUSE_KEEPER "ClickHouse alternative to ZooKeeper" ${ENABLE_CLICKHOUSE_ALL})
|
||||||
|
if (NOT USE_NURAFT)
|
||||||
|
# RECONFIGURE_MESSAGE_LEVEL should not be used here,
|
||||||
|
# since USE_NURAFT is set to OFF for FreeBSD and Darwin.
|
||||||
|
message (STATUS "clickhouse-keeper will not be built (lack of NuRaft)")
|
||||||
|
set(ENABLE_CLICKHOUSE_KEEPER OFF)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (CLICKHOUSE_SPLIT_BINARY)
|
if (CLICKHOUSE_SPLIT_BINARY)
|
||||||
option(ENABLE_CLICKHOUSE_INSTALL "Install ClickHouse without .deb/.rpm/.tgz packages (having the binary only)" OFF)
|
option(ENABLE_CLICKHOUSE_INSTALL "Install ClickHouse without .deb/.rpm/.tgz packages (having the binary only)" OFF)
|
||||||
@ -259,7 +265,10 @@ add_subdirectory (obfuscator)
|
|||||||
add_subdirectory (install)
|
add_subdirectory (install)
|
||||||
add_subdirectory (git-import)
|
add_subdirectory (git-import)
|
||||||
add_subdirectory (bash-completion)
|
add_subdirectory (bash-completion)
|
||||||
add_subdirectory (keeper)
|
|
||||||
|
if (ENABLE_CLICKHOUSE_KEEPER)
|
||||||
|
add_subdirectory (keeper)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (ENABLE_CLICKHOUSE_ODBC_BRIDGE)
|
if (ENABLE_CLICKHOUSE_ODBC_BRIDGE)
|
||||||
add_subdirectory (odbc-bridge)
|
add_subdirectory (odbc-bridge)
|
||||||
@ -278,7 +287,18 @@ if (CLICKHOUSE_ONE_SHARED)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (CLICKHOUSE_SPLIT_BINARY)
|
if (CLICKHOUSE_SPLIT_BINARY)
|
||||||
set (CLICKHOUSE_ALL_TARGETS clickhouse-server clickhouse-client clickhouse-local clickhouse-benchmark clickhouse-extract-from-config clickhouse-compressor clickhouse-format clickhouse-obfuscator clickhouse-git-import clickhouse-copier clickhouse-keeper)
|
set (CLICKHOUSE_ALL_TARGETS
|
||||||
|
clickhouse-server
|
||||||
|
clickhouse-client
|
||||||
|
clickhouse-local
|
||||||
|
clickhouse-benchmark
|
||||||
|
clickhouse-extract-from-config
|
||||||
|
clickhouse-compressor
|
||||||
|
clickhouse-format
|
||||||
|
clickhouse-obfuscator
|
||||||
|
clickhouse-git-import
|
||||||
|
clickhouse-copier
|
||||||
|
)
|
||||||
|
|
||||||
if (ENABLE_CLICKHOUSE_ODBC_BRIDGE)
|
if (ENABLE_CLICKHOUSE_ODBC_BRIDGE)
|
||||||
list (APPEND CLICKHOUSE_ALL_TARGETS clickhouse-odbc-bridge)
|
list (APPEND CLICKHOUSE_ALL_TARGETS clickhouse-odbc-bridge)
|
||||||
@ -288,6 +308,10 @@ if (CLICKHOUSE_SPLIT_BINARY)
|
|||||||
list (APPEND CLICKHOUSE_ALL_TARGETS clickhouse-library-bridge)
|
list (APPEND CLICKHOUSE_ALL_TARGETS clickhouse-library-bridge)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
if (ENABLE_CLICKHOUSE_KEEPER)
|
||||||
|
list (APPEND CLICKHOUSE_ALL_TARGETS clickhouse-keeper)
|
||||||
|
endif ()
|
||||||
|
|
||||||
set_target_properties(${CLICKHOUSE_ALL_TARGETS} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ..)
|
set_target_properties(${CLICKHOUSE_ALL_TARGETS} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ..)
|
||||||
|
|
||||||
add_custom_target (clickhouse-bundle ALL DEPENDS ${CLICKHOUSE_ALL_TARGETS})
|
add_custom_target (clickhouse-bundle ALL DEPENDS ${CLICKHOUSE_ALL_TARGETS})
|
||||||
|
@ -30,9 +30,7 @@
|
|||||||
# include <Poco/Net/SecureServerSocket.h>
|
# include <Poco/Net/SecureServerSocket.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if USE_NURAFT
|
#include <Server/KeeperTCPHandlerFactory.h>
|
||||||
# include <Server/KeeperTCPHandlerFactory.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(OS_LINUX)
|
#if defined(OS_LINUX)
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
@ -357,7 +355,6 @@ int Keeper::main(const std::vector<std::string> & /*args*/)
|
|||||||
|
|
||||||
auto servers = std::make_shared<std::vector<ProtocolServerAdapter>>();
|
auto servers = std::make_shared<std::vector<ProtocolServerAdapter>>();
|
||||||
|
|
||||||
#if USE_NURAFT
|
|
||||||
/// Initialize test keeper RAFT. Do nothing if no nu_keeper_server in config.
|
/// Initialize test keeper RAFT. Do nothing if no nu_keeper_server in config.
|
||||||
global_context->initializeKeeperStorageDispatcher();
|
global_context->initializeKeeperStorageDispatcher();
|
||||||
for (const auto & listen_host : listen_hosts)
|
for (const auto & listen_host : listen_hosts)
|
||||||
@ -398,9 +395,6 @@ int Keeper::main(const std::vector<std::string> & /*args*/)
|
|||||||
#endif
|
#endif
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
throw Exception(ErrorCodes::SUPPORT_IS_DISABLED, "ClickHouse keeper built without NuRaft library. Cannot use coordination.");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
for (auto & server : *servers)
|
for (auto & server : *servers)
|
||||||
server.start();
|
server.start();
|
||||||
|
Loading…
Reference in New Issue
Block a user