mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
Merge branch 'master' into in_memory_raft
This commit is contained in:
commit
8116d039f9
@ -63,6 +63,7 @@ RUN python3 -m pip install \
|
|||||||
cassandra-driver \
|
cassandra-driver \
|
||||||
confluent-kafka \
|
confluent-kafka \
|
||||||
dict2xml \
|
dict2xml \
|
||||||
|
dicttoxml \
|
||||||
docker \
|
docker \
|
||||||
docker-compose==1.22.0 \
|
docker-compose==1.22.0 \
|
||||||
grpcio \
|
grpcio \
|
||||||
|
@ -53,10 +53,12 @@ function run_tests()
|
|||||||
if [ "$NUM_TRIES" -gt "1" ]; then
|
if [ "$NUM_TRIES" -gt "1" ]; then
|
||||||
ADDITIONAL_OPTIONS+=('--skip')
|
ADDITIONAL_OPTIONS+=('--skip')
|
||||||
ADDITIONAL_OPTIONS+=('00000_no_tests_to_skip')
|
ADDITIONAL_OPTIONS+=('00000_no_tests_to_skip')
|
||||||
|
ADDITIONAL_OPTIONS+=('--jobs')
|
||||||
|
ADDITIONAL_OPTIONS+=('4')
|
||||||
fi
|
fi
|
||||||
|
|
||||||
clickhouse-test --testname --shard --zookeeper --hung-check --print-time \
|
clickhouse-test --testname --shard --zookeeper --hung-check --print-time \
|
||||||
--test-runs "$NUM_TRIES" --jobs 4 \
|
--test-runs "$NUM_TRIES" \
|
||||||
"$SKIP_LIST_OPT" "${ADDITIONAL_OPTIONS[@]}" 2>&1 \
|
"$SKIP_LIST_OPT" "${ADDITIONAL_OPTIONS[@]}" 2>&1 \
|
||||||
| ts '%Y-%m-%d %H:%M:%S' \
|
| ts '%Y-%m-%d %H:%M:%S' \
|
||||||
| tee -a test_output/test_result.txt
|
| tee -a test_output/test_result.txt
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
add_executable(test-connect test_connect.cpp)
|
||||||
|
target_link_libraries (test-connect PRIVATE dbms)
|
99
src/Client/tests/test_connect.cpp
Normal file
99
src/Client/tests/test_connect.cpp
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <thread>
|
||||||
|
#include <atomic>
|
||||||
|
#include <Poco/Net/StreamSocket.h>
|
||||||
|
#include <Common/Exception.h>
|
||||||
|
#include <Common/Stopwatch.h>
|
||||||
|
#include <IO/ReadHelpers.h>
|
||||||
|
|
||||||
|
|
||||||
|
/** In a loop it connects to the server and immediately breaks the connection.
|
||||||
|
* Using the SO_LINGER option, we ensure that the connection is terminated by sending a RST packet (not FIN).
|
||||||
|
* Long time ago this behavior caused a bug in the TCPServer implementation in the Poco library.
|
||||||
|
*/
|
||||||
|
int main(int argc, char ** argv)
|
||||||
|
try
|
||||||
|
{
|
||||||
|
size_t num_iterations = 1;
|
||||||
|
size_t num_threads = 1;
|
||||||
|
std::string host = "localhost";
|
||||||
|
uint16_t port = 9000;
|
||||||
|
|
||||||
|
if (argc >= 2)
|
||||||
|
num_iterations = DB::parse<size_t>(argv[1]);
|
||||||
|
|
||||||
|
if (argc >= 3)
|
||||||
|
num_threads = DB::parse<size_t>(argv[2]);
|
||||||
|
|
||||||
|
if (argc >= 4)
|
||||||
|
host = argv[3];
|
||||||
|
|
||||||
|
if (argc >= 5)
|
||||||
|
port = DB::parse<uint16_t>(argv[4]);
|
||||||
|
|
||||||
|
std::atomic_bool cancel{false};
|
||||||
|
std::vector<std::thread> threads(num_threads);
|
||||||
|
for (auto & thread : threads)
|
||||||
|
{
|
||||||
|
thread = std::thread([&]
|
||||||
|
{
|
||||||
|
for (size_t i = 0; i < num_iterations && !cancel.load(std::memory_order_relaxed); ++i)
|
||||||
|
{
|
||||||
|
std::cerr << ".";
|
||||||
|
|
||||||
|
Poco::Net::SocketAddress address(host, port);
|
||||||
|
|
||||||
|
int fd = socket(PF_INET, SOCK_STREAM, IPPROTO_IP);
|
||||||
|
|
||||||
|
if (fd < 0)
|
||||||
|
DB::throwFromErrno("Cannot create socket", 0);
|
||||||
|
|
||||||
|
linger linger_value;
|
||||||
|
linger_value.l_onoff = 1;
|
||||||
|
linger_value.l_linger = 0;
|
||||||
|
|
||||||
|
if (0 != setsockopt(fd, SOL_SOCKET, SO_LINGER, &linger_value, sizeof(linger_value)))
|
||||||
|
DB::throwFromErrno("Cannot set linger", 0);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Stopwatch watch;
|
||||||
|
|
||||||
|
int res = connect(fd, address.addr(), address.length());
|
||||||
|
|
||||||
|
if (res != 0 && errno != EINPROGRESS && errno != EWOULDBLOCK)
|
||||||
|
{
|
||||||
|
close(fd);
|
||||||
|
DB::throwFromErrno("Cannot connect", 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
if (watch.elapsedSeconds() > 0.1)
|
||||||
|
{
|
||||||
|
std::cerr << watch.elapsedSeconds() << "\n";
|
||||||
|
cancel = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (const Poco::Exception & e)
|
||||||
|
{
|
||||||
|
std::cerr << e.displayText() << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto & thread : threads)
|
||||||
|
thread.join();
|
||||||
|
|
||||||
|
std::cerr << "\n";
|
||||||
|
}
|
||||||
|
catch (const Poco::Exception & e)
|
||||||
|
{
|
||||||
|
std::cerr << e.displayText() << "\n";
|
||||||
|
}
|
@ -6,8 +6,10 @@
|
|||||||
#include <Core/MySQL/PacketsProtocolText.h>
|
#include <Core/MySQL/PacketsProtocolText.h>
|
||||||
#include <Core/MySQL/PacketsReplication.h>
|
#include <Core/MySQL/PacketsReplication.h>
|
||||||
#include <Core/MySQL/MySQLReplication.h>
|
#include <Core/MySQL/MySQLReplication.h>
|
||||||
|
#include <Common/DNSResolver.h>
|
||||||
#include <Poco/String.h>
|
#include <Poco/String.h>
|
||||||
|
|
||||||
|
|
||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
using namespace Generic;
|
using namespace Generic;
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
#include <IO/WriteHelpers.h>
|
#include <IO/WriteHelpers.h>
|
||||||
#include <Poco/Net/NetException.h>
|
#include <Poco/Net/NetException.h>
|
||||||
#include <Poco/Net/StreamSocket.h>
|
#include <Poco/Net/StreamSocket.h>
|
||||||
#include <Common/DNSResolver.h>
|
|
||||||
#include <Common/Exception.h>
|
#include <Common/Exception.h>
|
||||||
#include <Common/NetException.h>
|
#include <Common/NetException.h>
|
||||||
#include <Core/MySQL/IMySQLWritePacket.h>
|
#include <Core/MySQL/IMySQLWritePacket.h>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include "registerDictionaries.h"
|
#include "registerDictionaries.h"
|
||||||
|
|
||||||
#if USE_ODBC
|
#if USE_ODBC
|
||||||
# include <Poco/Data/ODBC/Connector.h>
|
# include <Poco/Data/ODBC/Connector.h> // Y_IGNORE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace DB
|
namespace DB
|
||||||
|
@ -6,12 +6,15 @@ LIBRARY()
|
|||||||
PEERDIR(
|
PEERDIR(
|
||||||
clickhouse/src/Common
|
clickhouse/src/Common
|
||||||
contrib/libs/poco/Data
|
contrib/libs/poco/Data
|
||||||
contrib/libs/poco/Data/ODBC
|
|
||||||
contrib/libs/poco/MongoDB
|
contrib/libs/poco/MongoDB
|
||||||
contrib/libs/poco/Redis
|
contrib/libs/poco/Redis
|
||||||
contrib/libs/sparsehash
|
contrib/libs/sparsehash
|
||||||
)
|
)
|
||||||
|
|
||||||
|
IF (USE_ODBC)
|
||||||
|
PEERDIR(contrib/libs/poco/Data/ODBC)
|
||||||
|
ENDIF ()
|
||||||
|
|
||||||
NO_COMPILER_WARNINGS()
|
NO_COMPILER_WARNINGS()
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,12 +5,15 @@ LIBRARY()
|
|||||||
PEERDIR(
|
PEERDIR(
|
||||||
clickhouse/src/Common
|
clickhouse/src/Common
|
||||||
contrib/libs/poco/Data
|
contrib/libs/poco/Data
|
||||||
contrib/libs/poco/Data/ODBC
|
|
||||||
contrib/libs/poco/MongoDB
|
contrib/libs/poco/MongoDB
|
||||||
contrib/libs/poco/Redis
|
contrib/libs/poco/Redis
|
||||||
contrib/libs/sparsehash
|
contrib/libs/sparsehash
|
||||||
)
|
)
|
||||||
|
|
||||||
|
IF (USE_ODBC)
|
||||||
|
PEERDIR(contrib/libs/poco/Data/ODBC)
|
||||||
|
ENDIF ()
|
||||||
|
|
||||||
NO_COMPILER_WARNINGS()
|
NO_COMPILER_WARNINGS()
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,7 +50,6 @@
|
|||||||
#include <Interpreters/SystemLog.h>
|
#include <Interpreters/SystemLog.h>
|
||||||
#include <Interpreters/Context.h>
|
#include <Interpreters/Context.h>
|
||||||
#include <Interpreters/DDLWorker.h>
|
#include <Interpreters/DDLWorker.h>
|
||||||
#include <Common/DNSResolver.h>
|
|
||||||
#include <IO/ReadBufferFromFile.h>
|
#include <IO/ReadBufferFromFile.h>
|
||||||
#include <IO/UncompressedCache.h>
|
#include <IO/UncompressedCache.h>
|
||||||
#include <Parsers/ASTCreateQuery.h>
|
#include <Parsers/ASTCreateQuery.h>
|
||||||
|
@ -51,7 +51,6 @@
|
|||||||
#include <Interpreters/Context.h>
|
#include <Interpreters/Context.h>
|
||||||
#include <Common/ProfileEvents.h>
|
#include <Common/ProfileEvents.h>
|
||||||
|
|
||||||
#include <Interpreters/DNSCacheUpdater.h>
|
|
||||||
#include <Common/SensitiveDataMasker.h>
|
#include <Common/SensitiveDataMasker.h>
|
||||||
|
|
||||||
#include <Processors/Transforms/LimitsCheckingTransform.h>
|
#include <Processors/Transforms/LimitsCheckingTransform.h>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
#include <Common/DNSResolver.h>
|
|
||||||
#include <DataTypes/DataTypeString.h>
|
#include <DataTypes/DataTypeString.h>
|
||||||
#include <DataTypes/DataTypesNumber.h>
|
#include <DataTypes/DataTypesNumber.h>
|
||||||
#include <Interpreters/Cluster.h>
|
#include <Interpreters/Cluster.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user