mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Merge branch 'BayoNet-en-docs/CLICKHOUSEDOCS-272-query-profiler'
This commit is contained in:
commit
45be504bdf
@ -14,7 +14,7 @@ To run ClickHouse on processors that do not support SSE 4.2 or have AArch64 or P
|
|||||||
|
|
||||||
## Available Installation Options
|
## Available Installation Options
|
||||||
|
|
||||||
### From DEB Packages
|
### From DEB Packages {#install-from-deb-packages}
|
||||||
|
|
||||||
It is recommended to use official pre-compiled `deb` packages for Debian or Ubuntu.
|
It is recommended to use official pre-compiled `deb` packages for Debian or Ubuntu.
|
||||||
|
|
||||||
@ -37,6 +37,13 @@ sudo apt-get install clickhouse-client clickhouse-server
|
|||||||
|
|
||||||
You can also download and install packages manually from here: <https://repo.yandex.ru/clickhouse/deb/stable/main/>.
|
You can also download and install packages manually from here: <https://repo.yandex.ru/clickhouse/deb/stable/main/>.
|
||||||
|
|
||||||
|
#### Packages
|
||||||
|
|
||||||
|
- `clickhouse-common-static` — Installs ClickHouse compiled binary files.
|
||||||
|
- `clickhouse-server` — Creates symbolic link for `clickhouse-server`. Installs server configuration.
|
||||||
|
- `clickhouse-client` — Creates symbolic link for `clickhouse-client` and other client-related tools. Installs client configurations.
|
||||||
|
- `clickhouse-common-static-dbg` — Installs ClickHouse compiled binary files with debug info.
|
||||||
|
|
||||||
### From RPM Packages
|
### From RPM Packages
|
||||||
|
|
||||||
It is recommended to use official pre-compiled `rpm` packages for CentOS, RedHat and all other rpm-based Linux distributions.
|
It is recommended to use official pre-compiled `rpm` packages for CentOS, RedHat and all other rpm-based Linux distributions.
|
||||||
|
@ -6,7 +6,7 @@ By going through this tutorial you'll learn how to set up basic ClickHouse clust
|
|||||||
|
|
||||||
## Single Node Setup
|
## Single Node Setup
|
||||||
|
|
||||||
To postpone complexities of distributed environment, we'll start with deploying ClickHouse on a single server or virtual machine. ClickHouse is usually installed from [deb](index.md#from-deb-packages) or [rpm](index.md#from-rpm-packages) packages, but there are [alternatives](index.md#from-docker-image) for the operating systems that do no support them.
|
To postpone complexities of distributed environment, we'll start with deploying ClickHouse on a single server or virtual machine. ClickHouse is usually installed from [deb](index.md#install-from-deb-packages) or [rpm](index.md#from-rpm-packages) packages, but there are [alternatives](index.md#from-docker-image) for the operating systems that do no support them.
|
||||||
|
|
||||||
For example, you have chosen `deb` packages and executed:
|
For example, you have chosen `deb` packages and executed:
|
||||||
``` bash
|
``` bash
|
||||||
|
607
docs/en/operations/performance/sampling_query_profiler.md
Normal file
607
docs/en/operations/performance/sampling_query_profiler.md
Normal file
@ -0,0 +1,607 @@
|
|||||||
|
# Sampling Query Profiler
|
||||||
|
|
||||||
|
ClickHouse runs sampling profiler that allows to analyze query execution. Using profiler you can find source code routines that used the most frequently during a query execution. You can trace CPU time and wall-clock time spent including idle time.
|
||||||
|
|
||||||
|
To use profiler:
|
||||||
|
|
||||||
|
- Setup the [trace_log](../server_settings/settings.md#server_settings-trace_log) section of the server configuration.
|
||||||
|
|
||||||
|
This section configures the [trace_log](../system_tables.md#system_tables-trace_log) system table containing the results of the profiler functioning. It is configured by default. Remember that data in this table is valid only for running server. After the server restart, ClickHouse doesn't clean up the table and all the stored virtual memory address may become invalid.
|
||||||
|
|
||||||
|
- Setup the [query_profiler_cpu_time_period_ns](../settings/settings.md#query_profiler_cpu_time_period_ns) or [query_profiler_real_time_period_ns](../settings/settings.md#query_profiler_real_time_period_ns) settings. Both settings can be used simultaneously.
|
||||||
|
|
||||||
|
These settings allow you to configure profiler timers. As these are the session settings, you can get different sampling frequency for the whole server, individual users or user profiles, for your interactive session, and for each individual query.
|
||||||
|
|
||||||
|
Default sampling frequency is one sample per second and both CPU and real timers are enabled. This frequency allows to collect enough information about ClickHouse cluster. At the same time, working with this frequency, profiler doesn't affect ClickHouse server's performance. If you need to profile each individual query try to use higher sampling frequency.
|
||||||
|
|
||||||
|
To analyze the `trace_log` system table:
|
||||||
|
|
||||||
|
- Install the `clickhouse-common-static-dbg` package. See [Install from DEB Packages](../../getting_started/install.md#install-from-deb-packages).
|
||||||
|
- Allow introspection functions by the [allow_introspection_functions](../settings/settings.md#settings-allow_introspection_functions) setting.
|
||||||
|
|
||||||
|
For security reasons introspection functions are disabled by default.
|
||||||
|
|
||||||
|
- Use the `addressToLine`, `addressToSymbol` and `demangle` [introspection functions](../../query_language/functions/introspection.md) to get function names and their positions in ClickHouse code. To get a profile for some query, you need to aggregate data from the `trace_log` table. You can aggregate data by individual functions or by the whole stack traces.
|
||||||
|
|
||||||
|
If you need to visualize `trace_log` info, try [flamegraph](../../interfaces/third-party/gui/#clickhouse-flamegraph) and [speedscope](https://github.com/laplab/clickhouse-speedscope).
|
||||||
|
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
In this example we:
|
||||||
|
|
||||||
|
- Filtering `trace_log` data by a query identifier and current date.
|
||||||
|
- Aggregating by stack trace.
|
||||||
|
- Using introspection functions, we will get a report of:
|
||||||
|
|
||||||
|
- Names of symbols and corresponding source code functions.
|
||||||
|
- Source code locations of these functions.
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SELECT
|
||||||
|
count(),
|
||||||
|
arrayStringConcat(arrayMap(x -> concat(demangle(addressToSymbol(x)), '\n ', addressToLine(x)), trace), '\n') AS sym
|
||||||
|
FROM system.trace_log
|
||||||
|
WHERE (query_id = 'ebca3574-ad0a-400a-9cbc-dca382f5998c') AND (event_date = today())
|
||||||
|
GROUP BY trace
|
||||||
|
ORDER BY count() DESC
|
||||||
|
LIMIT 10
|
||||||
|
```
|
||||||
|
```text
|
||||||
|
Row 1:
|
||||||
|
──────
|
||||||
|
count(): 6344
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
read
|
||||||
|
|
||||||
|
DB::ReadBufferFromFileDescriptor::nextImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/ReadBufferFromFileDescriptor.cpp:56
|
||||||
|
DB::CompressedReadBufferBase::readCompressedData(unsigned long&, unsigned long&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/ReadBuffer.h:54
|
||||||
|
DB::CompressedReadBufferFromFile::nextImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Compression/CompressedReadBufferFromFile.cpp:22
|
||||||
|
DB::CompressedReadBufferFromFile::seek(unsigned long, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Compression/CompressedReadBufferFromFile.cpp:63
|
||||||
|
DB::MergeTreeReaderStream::seekToMark(unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReaderStream.cpp:200
|
||||||
|
std::_Function_handler<DB::ReadBuffer* (std::vector<DB::IDataType::Substream, std::allocator<DB::IDataType::Substream> > const&), DB::MergeTreeReader::readData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, DB::IColumn&, unsigned long, bool, unsigned long, bool)::{lambda(bool)#1}::operator()(bool) const::{lambda(std::vector<DB::IDataType::Substream, std::allocator<DB::IDataType::Substream> > const&)#1}>::_M_invoke(std::_Any_data const&, std::vector<DB::IDataType::Substream, std::allocator<DB::IDataType::Substream> > const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:212
|
||||||
|
DB::IDataType::deserializeBinaryBulkWithMultipleStreams(DB::IColumn&, unsigned long, DB::IDataType::DeserializeBinaryBulkSettings&, std::shared_ptr<DB::IDataType::DeserializeBinaryBulkState>&) const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/std_function.h:690
|
||||||
|
DB::MergeTreeReader::readData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, DB::IColumn&, unsigned long, bool, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:232
|
||||||
|
DB::MergeTreeReader::readRows(unsigned long, bool, unsigned long, DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:111
|
||||||
|
DB::MergeTreeRangeReader::DelayedStream::finalize(DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:35
|
||||||
|
DB::MergeTreeRangeReader::continueReadingChain(DB::MergeTreeRangeReader::ReadResult&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:219
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:487
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 2:
|
||||||
|
──────
|
||||||
|
count(): 3295
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
__pthread_cond_wait
|
||||||
|
|
||||||
|
std::condition_variable::wait(std::unique_lock<std::mutex>&)
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/src/c++11/../../../../../gcc-9.1.0/libstdc++-v3/src/c++11/condition_variable.cc:55
|
||||||
|
Poco::Semaphore::wait()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../contrib/poco/Foundation/src/Semaphore.cpp:61
|
||||||
|
DB::UnionBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/x86_64-pc-linux-gnu/bits/gthr-default.h:748
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Core/Block.h:90
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::LimitBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::AsynchronousBlockInputStream::calculate()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
std::_Function_handler<void (), DB::AsynchronousBlockInputStream::next()::{lambda()#1}>::_M_invoke(std::_Any_data const&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:551
|
||||||
|
ThreadPoolImpl<ThreadFromGlobalPool>::worker(std::_List_iterator<ThreadFromGlobalPool>)
|
||||||
|
/usr/local/include/c++/9.1.0/x86_64-pc-linux-gnu/bits/gthr-default.h:748
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<ThreadPoolImpl<ThreadFromGlobalPool>::scheduleImpl<void>(std::function<void ()>, int, std::optional<unsigned long>)::{lambda()#3}>(ThreadPoolImpl<ThreadFromGlobalPool>::scheduleImpl<void>(std::function<void ()>, int, std::optional<unsigned long>)::{lambda()#3}&&)::{lambda()#1}::operator()() const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/ThreadPool.h:146
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 3:
|
||||||
|
──────
|
||||||
|
count(): 1978
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
DB::VolnitskyBase<true, true, DB::StringSearcher<true, true> >::search(unsigned char const*, unsigned long) const
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::MatchImpl<true, false>::vector_constant(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::FunctionsStringSearch<DB::MatchImpl<true, false>, DB::NameLike>::executeImpl(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::PreparedFunctionImpl::execute(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Functions/IFunction.cpp:464
|
||||||
|
DB::ExpressionAction::execute(DB::Block&, bool) const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:677
|
||||||
|
DB::ExpressionActions::execute(DB::Block&, bool) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Interpreters/ExpressionActions.cpp:739
|
||||||
|
DB::MergeTreeRangeReader::executePrewhereActionsAndFilterColumns(DB::MergeTreeRangeReader::ReadResult&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:660
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:546
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 4:
|
||||||
|
──────
|
||||||
|
count(): 1913
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
DB::VolnitskyBase<true, true, DB::StringSearcher<true, true> >::search(unsigned char const*, unsigned long) const
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::MatchImpl<true, false>::vector_constant(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::FunctionsStringSearch<DB::MatchImpl<true, false>, DB::NameLike>::executeImpl(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::PreparedFunctionImpl::execute(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Functions/IFunction.cpp:464
|
||||||
|
DB::ExpressionAction::execute(DB::Block&, bool) const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:677
|
||||||
|
DB::ExpressionActions::execute(DB::Block&, bool) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Interpreters/ExpressionActions.cpp:739
|
||||||
|
DB::MergeTreeRangeReader::executePrewhereActionsAndFilterColumns(DB::MergeTreeRangeReader::ReadResult&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:660
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:546
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 5:
|
||||||
|
──────
|
||||||
|
count(): 1672
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
DB::VolnitskyBase<true, true, DB::StringSearcher<true, true> >::search(unsigned char const*, unsigned long) const
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::MatchImpl<true, false>::vector_constant(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::FunctionsStringSearch<DB::MatchImpl<true, false>, DB::NameLike>::executeImpl(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::PreparedFunctionImpl::execute(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Functions/IFunction.cpp:464
|
||||||
|
DB::ExpressionAction::execute(DB::Block&, bool) const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:677
|
||||||
|
DB::ExpressionActions::execute(DB::Block&, bool) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Interpreters/ExpressionActions.cpp:739
|
||||||
|
DB::MergeTreeRangeReader::executePrewhereActionsAndFilterColumns(DB::MergeTreeRangeReader::ReadResult&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:660
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:546
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 6:
|
||||||
|
──────
|
||||||
|
count(): 1531
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
read
|
||||||
|
|
||||||
|
DB::ReadBufferFromFileDescriptor::nextImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/ReadBufferFromFileDescriptor.cpp:56
|
||||||
|
DB::CompressedReadBufferBase::readCompressedData(unsigned long&, unsigned long&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/ReadBuffer.h:54
|
||||||
|
DB::CompressedReadBufferFromFile::nextImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Compression/CompressedReadBufferFromFile.cpp:22
|
||||||
|
void DB::deserializeBinarySSE2<4>(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&, DB::ReadBuffer&, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/ReadBuffer.h:53
|
||||||
|
DB::DataTypeString::deserializeBinaryBulk(DB::IColumn&, DB::ReadBuffer&, unsigned long, double) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataTypes/DataTypeString.cpp:202
|
||||||
|
DB::MergeTreeReader::readData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, DB::IColumn&, unsigned long, bool, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:232
|
||||||
|
DB::MergeTreeReader::readRows(unsigned long, bool, unsigned long, DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:111
|
||||||
|
DB::MergeTreeRangeReader::DelayedStream::finalize(DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:35
|
||||||
|
DB::MergeTreeRangeReader::startReadingChain(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:219
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 7:
|
||||||
|
──────
|
||||||
|
count(): 1034
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
DB::VolnitskyBase<true, true, DB::StringSearcher<true, true> >::search(unsigned char const*, unsigned long) const
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::MatchImpl<true, false>::vector_constant(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::FunctionsStringSearch<DB::MatchImpl<true, false>, DB::NameLike>::executeImpl(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long)
|
||||||
|
/opt/milovidov/ClickHouse/build_gcc9/dbms/programs/clickhouse
|
||||||
|
DB::PreparedFunctionImpl::execute(DB::Block&, std::vector<unsigned long, std::allocator<unsigned long> > const&, unsigned long, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Functions/IFunction.cpp:464
|
||||||
|
DB::ExpressionAction::execute(DB::Block&, bool) const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:677
|
||||||
|
DB::ExpressionActions::execute(DB::Block&, bool) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Interpreters/ExpressionActions.cpp:739
|
||||||
|
DB::MergeTreeRangeReader::executePrewhereActionsAndFilterColumns(DB::MergeTreeRangeReader::ReadResult&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:660
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:546
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 8:
|
||||||
|
──────
|
||||||
|
count(): 989
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
__lll_lock_wait
|
||||||
|
|
||||||
|
pthread_mutex_lock
|
||||||
|
|
||||||
|
DB::MergeTreeReaderStream::loadMarks()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/std_mutex.h:103
|
||||||
|
DB::MergeTreeReaderStream::MergeTreeReaderStream(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> > const&, DB::MarkCache*, bool, DB::UncompressedCache*, unsigned long, unsigned long, unsigned long, DB::MergeTreeIndexGranularityInfo const*, std::function<void (DB::ReadBufferFromFileBase::ProfileInfo)> const&, int)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReaderStream.cpp:107
|
||||||
|
std::_Function_handler<void (std::vector<DB::IDataType::Substream, std::allocator<DB::IDataType::Substream> > const&), DB::MergeTreeReader::addStreams(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, std::function<void (DB::ReadBufferFromFileBase::ProfileInfo)> const&, int)::{lambda(std::vector<DB::IDataType::Substream, std::allocator<DB::IDataType::Substream> > const&)#1}>::_M_invoke(std::_Any_data const&, std::vector<DB::IDataType::Substream, std::allocator<DB::IDataType::Substream> > const&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_ptr.h:147
|
||||||
|
DB::MergeTreeReader::addStreams(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, std::function<void (DB::ReadBufferFromFileBase::ProfileInfo)> const&, int)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:677
|
||||||
|
DB::MergeTreeReader::MergeTreeReader(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::shared_ptr<DB::MergeTreeDataPart const> const&, DB::NamesAndTypesList const&, DB::UncompressedCache*, DB::MarkCache*, bool, DB::MergeTreeData const&, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> > const&, unsigned long, unsigned long, std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, double, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, double> > > const&, std::function<void (DB::ReadBufferFromFileBase::ProfileInfo)> const&, int)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_list.h:303
|
||||||
|
DB::MergeTreeThreadSelectBlockInputStream::getNewTask()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/std_function.h:259
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:54
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 9:
|
||||||
|
───────
|
||||||
|
count(): 779
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
void DB::deserializeBinarySSE2<4>(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&, DB::ReadBuffer&, unsigned long)
|
||||||
|
/usr/local/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include/emmintrin.h:727
|
||||||
|
DB::DataTypeString::deserializeBinaryBulk(DB::IColumn&, DB::ReadBuffer&, unsigned long, double) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataTypes/DataTypeString.cpp:202
|
||||||
|
DB::MergeTreeReader::readData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, DB::IColumn&, unsigned long, bool, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:232
|
||||||
|
DB::MergeTreeReader::readRows(unsigned long, bool, unsigned long, DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:111
|
||||||
|
DB::MergeTreeRangeReader::DelayedStream::finalize(DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:35
|
||||||
|
DB::MergeTreeRangeReader::startReadingChain(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:219
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
|
||||||
|
|
||||||
|
Row 10:
|
||||||
|
───────
|
||||||
|
count(): 666
|
||||||
|
sym: StackTrace::StackTrace(ucontext_t const&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Common/StackTrace.cpp:208
|
||||||
|
DB::(anonymous namespace)::writeTraceInfo(DB::TimerType, int, siginfo_t*, void*) [clone .isra.0]
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/IO/BufferBase.h:99
|
||||||
|
|
||||||
|
|
||||||
|
void DB::deserializeBinarySSE2<4>(DB::PODArray<unsigned char, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&, DB::PODArray<unsigned long, 4096ul, AllocatorWithHint<false, AllocatorHints::DefaultHint, 67108864ul>, 15ul, 16ul>&, DB::ReadBuffer&, unsigned long)
|
||||||
|
/usr/local/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include/emmintrin.h:727
|
||||||
|
DB::DataTypeString::deserializeBinaryBulk(DB::IColumn&, DB::ReadBuffer&, unsigned long, double) const
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataTypes/DataTypeString.cpp:202
|
||||||
|
DB::MergeTreeReader::readData(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, DB::IDataType const&, DB::IColumn&, unsigned long, bool, unsigned long, bool)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:232
|
||||||
|
DB::MergeTreeReader::readRows(unsigned long, bool, unsigned long, DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeReader.cpp:111
|
||||||
|
DB::MergeTreeRangeReader::DelayedStream::finalize(DB::Block&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:35
|
||||||
|
DB::MergeTreeRangeReader::startReadingChain(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeRangeReader.cpp:219
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeRangeReader::read(unsigned long, std::vector<DB::MarkRange, std::allocator<DB::MarkRange> >&)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readFromPartImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/Storages/MergeTree/MergeTreeBaseSelectBlockInputStream.cpp:158
|
||||||
|
DB::MergeTreeBaseSelectBlockInputStream::readImpl()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ExpressionBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ExpressionBlockInputStream.cpp:34
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::PartialSortingBlockInputStream::readImpl()
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/PartialSortingBlockInputStream.cpp:13
|
||||||
|
DB::IBlockInputStream::read()
|
||||||
|
/usr/local/include/c++/9.1.0/bits/stl_vector.h:108
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::loop(unsigned long)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/atomic_base.h:419
|
||||||
|
DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::thread(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long)
|
||||||
|
/home/milovidov/ClickHouse/build_gcc9/../dbms/src/DataStreams/ParallelInputsProcessor.h:215
|
||||||
|
ThreadFromGlobalPool::ThreadFromGlobalPool<void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*, std::shared_ptr<DB::ThreadGroupStatus>, unsigned long&>(void (DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>::*&&)(std::shared_ptr<DB::ThreadGroupStatus>, unsigned long), DB::ParallelInputsProcessor<DB::UnionBlockInputStream::Handler>*&&, std::shared_ptr<DB::ThreadGroupStatus>&&, unsigned long&)::{lambda()#1}::operator()() const
|
||||||
|
/usr/local/include/c++/9.1.0/bits/shared_ptr_base.h:729
|
||||||
|
ThreadPoolImpl<std::thread>::worker(std::_List_iterator<std::thread>)
|
||||||
|
/usr/local/include/c++/9.1.0/bits/unique_lock.h:69
|
||||||
|
execute_native_thread_routine
|
||||||
|
/home/milovidov/ClickHouse/ci/workspace/gcc/gcc-build/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/unique_ptr.h:81
|
||||||
|
start_thread
|
||||||
|
|
||||||
|
__clone
|
||||||
|
```
|
@ -16,33 +16,40 @@ Default value: 3600.
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## compression
|
## compression {#server-settings-compression}
|
||||||
|
|
||||||
Data compression settings.
|
Data compression settings for [MergeTree](../table_engines/mergetree.md)-engine tables.
|
||||||
|
|
||||||
!!! warning
|
!!! warning
|
||||||
Don't use it if you have just started using ClickHouse.
|
Don't use it if you have just started using ClickHouse.
|
||||||
|
|
||||||
The configuration looks like this:
|
Configuration template:
|
||||||
|
|
||||||
```xml
|
```xml
|
||||||
<compression>
|
<compression>
|
||||||
<case>
|
<case>
|
||||||
<parameters/>
|
<min_part_size>...</min_part_size>
|
||||||
|
<min_part_size_ratio>...</min_part_size_ratio>
|
||||||
|
<method>...</method>
|
||||||
</case>
|
</case>
|
||||||
...
|
...
|
||||||
</compression>
|
</compression>
|
||||||
```
|
```
|
||||||
|
|
||||||
You can configure multiple sections `<case>`.
|
`<case>` fields:
|
||||||
|
|
||||||
Block field `<case>`:
|
- `min_part_size` – The minimum size of a data part.
|
||||||
|
- `min_part_size_ratio` – The ratio of the data part size to the table size.
|
||||||
|
- `method` – Compression method. Acceptable values: `lz4` or `zstd`.
|
||||||
|
|
||||||
- ``min_part_size`` – The minimum size of a table part.
|
You can configure multiple `<case>` sections.
|
||||||
- ``min_part_size_ratio`` – The ratio of the minimum size of a table part to the full size of the table.
|
|
||||||
- ``method`` – Compression method. Acceptable values : ``lz4`` or ``zstd``(experimental).
|
|
||||||
|
|
||||||
ClickHouse checks `min_part_size` and `min_part_size_ratio` and processes the `case` blocks that match these conditions. If none of the `<case>` matches, ClickHouse applies the `lz4` compression algorithm.
|
Actions when conditions are met:
|
||||||
|
|
||||||
|
- If a data part matches a condition set, ClickHouse uses the specified compression method.
|
||||||
|
- If a data part matches multiple condition sets, ClickHouse uses the first matched condition set.
|
||||||
|
|
||||||
|
If no conditions met for a data part, ClickHouse uses the `lz4` compression.
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
|
|
||||||
@ -140,10 +147,10 @@ Settings:
|
|||||||
- interval – The interval for sending, in seconds.
|
- interval – The interval for sending, in seconds.
|
||||||
- timeout – The timeout for sending data, in seconds.
|
- timeout – The timeout for sending data, in seconds.
|
||||||
- root_path – Prefix for keys.
|
- root_path – Prefix for keys.
|
||||||
- metrics – Sending data from a [system.metrics](../system_tables.md#system_tables-metrics) table.
|
- metrics – Sending data from the [system.metrics](../system_tables.md#system_tables-metrics) table.
|
||||||
- events – Sending deltas data accumulated for the time period from a [system.events](../system_tables.md#system_tables-events) table.
|
- events – Sending deltas data accumulated for the time period from the [system.events](../system_tables.md#system_tables-events) table.
|
||||||
- events_cumulative – Sending cumulative data from a [system.events](../system_tables.md#system_tables-events) table.
|
- events_cumulative – Sending cumulative data from the [system.events](../system_tables.md#system_tables-events) table.
|
||||||
- asynchronous_metrics – Sending data from a [system.asynchronous_metrics](../system_tables.md#system_tables-asynchronous_metrics) table.
|
- asynchronous_metrics – Sending data from the [system.asynchronous_metrics](../system_tables.md#system_tables-asynchronous_metrics) table.
|
||||||
|
|
||||||
You can configure multiple `<graphite>` clauses. For instance, you can use this for sending different data at different intervals.
|
You can configure multiple `<graphite>` clauses. For instance, you can use this for sending different data at different intervals.
|
||||||
|
|
||||||
|
@ -420,17 +420,6 @@ Used for the same purpose as `max_block_size`, but it sets the recommended block
|
|||||||
However, the block size cannot be more than `max_block_size` rows.
|
However, the block size cannot be more than `max_block_size` rows.
|
||||||
By default: 1,000,000. It only works when reading from MergeTree engines.
|
By default: 1,000,000. It only works when reading from MergeTree engines.
|
||||||
|
|
||||||
## merge_tree_uniform_read_distribution {#setting-merge_tree_uniform_read_distribution}
|
|
||||||
|
|
||||||
ClickHouse uses multiple threads when reading from [MergeTree](../table_engines/mergetree.md) tables. This setting turns on/off the uniform distribution of reading tasks over the working threads. The algorithm of the uniform distribution aims to make execution time for all the threads approximately equal in a `SELECT` query.
|
|
||||||
|
|
||||||
Possible values:
|
|
||||||
|
|
||||||
- 0 — Do not use uniform read distribution.
|
|
||||||
- 1 — Use uniform read distribution.
|
|
||||||
|
|
||||||
Default value: 1.
|
|
||||||
|
|
||||||
## merge_tree_min_rows_for_concurrent_read {#setting-merge_tree_min_rows_for_concurrent_read}
|
## merge_tree_min_rows_for_concurrent_read {#setting-merge_tree_min_rows_for_concurrent_read}
|
||||||
|
|
||||||
If the number of rows to be read from a file of a [MergeTree](../table_engines/mergetree.md) table exceeds `merge_tree_min_rows_for_concurrent_read` then ClickHouse tries to perform a concurrent reading from this file on several threads.
|
If the number of rows to be read from a file of a [MergeTree](../table_engines/mergetree.md) table exceeds `merge_tree_min_rows_for_concurrent_read` then ClickHouse tries to perform a concurrent reading from this file on several threads.
|
||||||
@ -1078,7 +1067,7 @@ Default value: 0.
|
|||||||
|
|
||||||
## query_profiler_real_time_period_ns {#query_profiler_real_time_period_ns}
|
## query_profiler_real_time_period_ns {#query_profiler_real_time_period_ns}
|
||||||
|
|
||||||
Sets the period for a real clock timer of the query profiler. Real clock timer counts wall-clock time.
|
Sets the period for a real clock timer of the [query profiler](../performance/sampling_query_profiler.md). Real clock timer counts wall-clock time.
|
||||||
|
|
||||||
Possible values:
|
Possible values:
|
||||||
|
|
||||||
@ -1097,11 +1086,11 @@ Default value: 1000000000 nanoseconds (once a second).
|
|||||||
|
|
||||||
See also:
|
See also:
|
||||||
|
|
||||||
- [system.trace_log](../system_tables.md#system_tables-trace_log)
|
- System table [trace_log](../system_tables.md#system_tables-trace_log)
|
||||||
|
|
||||||
## query_profiler_cpu_time_period_ns {#query_profiler_cpu_time_period_ns}
|
## query_profiler_cpu_time_period_ns {#query_profiler_cpu_time_period_ns}
|
||||||
|
|
||||||
Sets the period for a CPU clock timer of the query profiler. This timer counts only CPU time.
|
Sets the period for a CPU clock timer of the [query profiler](../performance/sampling_query_profiler.md). This timer counts only CPU time.
|
||||||
|
|
||||||
Possible values:
|
Possible values:
|
||||||
|
|
||||||
@ -1120,7 +1109,7 @@ Default value: 1000000000 nanoseconds.
|
|||||||
|
|
||||||
See also:
|
See also:
|
||||||
|
|
||||||
- [system.trace_log](../system_tables.md#system_tables-trace_log)
|
- System table [trace_log](../system_tables.md#system_tables-trace_log)
|
||||||
|
|
||||||
## allow_introspection_functions {#settings-allow_introspection_functions}
|
## allow_introspection_functions {#settings-allow_introspection_functions}
|
||||||
|
|
||||||
@ -1133,6 +1122,11 @@ Possible values:
|
|||||||
|
|
||||||
Default value: 0.
|
Default value: 0.
|
||||||
|
|
||||||
|
**See Also**
|
||||||
|
|
||||||
|
- [Sampling Query Profiler](../performance/sampling_query_profiler.md)
|
||||||
|
- System table [trace_log](../system_tables.md#system_tables-trace_log)
|
||||||
|
|
||||||
## input_format_parallel_parsing
|
## input_format_parallel_parsing
|
||||||
|
|
||||||
- Type: bool
|
- Type: bool
|
||||||
|
@ -54,18 +54,14 @@ mysql> select * from test;
|
|||||||
Creating a table in ClickHouse server and selecting data from it:
|
Creating a table in ClickHouse server and selecting data from it:
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE jdbc_table ENGINE JDBC('jdbc:mysql://localhost:3306/?user=root&password=root', 'test', 'test')
|
CREATE TABLE jdbc_table
|
||||||
```
|
(
|
||||||
```sql
|
`int_id` Int32,
|
||||||
DESCRIBE TABLE jdbc_table
|
`int_nullable` Nullable(Int32),
|
||||||
```
|
`float` Float32,
|
||||||
```text
|
`float_nullable` Nullable(Float32)
|
||||||
┌─name───────────────┬─type───────────────┬─default_type─┬─default_expression─┐
|
)
|
||||||
│ int_id │ Int32 │ │ │
|
ENGINE JDBC('jdbc:mysql://localhost:3306/?user=root&password=root', 'test', 'test')
|
||||||
│ int_nullable │ Nullable(Int32) │ │ │
|
|
||||||
│ float │ Float32 │ │ │
|
|
||||||
│ float_nullable │ Nullable(Float32) │ │ │
|
|
||||||
└────────────────────┴────────────────────┴──────────────┴────────────────────┘
|
|
||||||
```
|
```
|
||||||
```sql
|
```sql
|
||||||
SELECT *
|
SELECT *
|
||||||
|
@ -331,10 +331,10 @@ Function (operator) / Index | primary key | minmax | ngrambf_v1 | tokenbf_v1 | b
|
|||||||
[equals (=, ==)](../../query_language/functions/comparison_functions.md#function-equals) | ✔ | ✔ | ✔ | ✔ | ✔
|
[equals (=, ==)](../../query_language/functions/comparison_functions.md#function-equals) | ✔ | ✔ | ✔ | ✔ | ✔
|
||||||
[notEquals(!=, <>)](../../query_language/functions/comparison_functions.md#function-notequals) | ✔ | ✔ | ✔ | ✔ | ✔
|
[notEquals(!=, <>)](../../query_language/functions/comparison_functions.md#function-notequals) | ✔ | ✔ | ✔ | ✔ | ✔
|
||||||
[like](../../query_language/functions/string_search_functions.md#function-like) | ✔ | ✔ | ✔ | ✗ | ✗
|
[like](../../query_language/functions/string_search_functions.md#function-like) | ✔ | ✔ | ✔ | ✗ | ✗
|
||||||
[notLike](../../query_language/functions/string_search_functions.md#function-notlike) | ✔ | ✔ | ✔ | ✔ | ✗
|
[notLike](../../query_language/functions/string_search_functions.md#function-notlike) | ✔ | ✔ | ✔ | ✗ | ✗
|
||||||
[startsWith](../../query_language/functions/string_functions.md#function-startswith) | ✔ | ✔ | ✔ | ✔ | ✗
|
[startsWith](../../query_language/functions/string_functions.md#function-startswith) | ✔ | ✔ | ✔ | ✔ | ✗
|
||||||
[endsWith](../../query_language/functions/string_functions.md#function-endswith) | ✗ | ✗ | ✔ | ✔ | ✗
|
[endsWith](../../query_language/functions/string_functions.md#function-endswith) | ✗ | ✗ | ✔ | ✔ | ✗
|
||||||
[multiSearchAny](../../query_language/functions/string_search_functions.md#function-multisearchany) | ✗ | ✗ | ✔ | ✔ | ✗
|
[multiSearchAny](../../query_language/functions/string_search_functions.md#function-multisearchany) | ✗ | ✗ | ✔ | ✗ | ✗
|
||||||
[in](../../query_language/functions/in_functions.md#in-functions) | ✔ | ✔ | ✔ | ✔ | ✔
|
[in](../../query_language/functions/in_functions.md#in-functions) | ✔ | ✔ | ✔ | ✔ | ✔
|
||||||
[notIn](../../query_language/functions/in_functions.md#in-functions) | ✔ | ✔ | ✔ | ✔ | ✔
|
[notIn](../../query_language/functions/in_functions.md#in-functions) | ✔ | ✔ | ✔ | ✔ | ✔
|
||||||
[less (<)](../../query_language/functions/comparison_functions.md#function-less) | ✔ | ✔ | ✗ | ✗ | ✗
|
[less (<)](../../query_language/functions/comparison_functions.md#function-less) | ✔ | ✔ | ✗ | ✗ | ✗
|
||||||
|
@ -129,7 +129,7 @@ Defines storage time for values. Can be specified only for MergeTree-family tabl
|
|||||||
|
|
||||||
### Column Compression Codecs {#codecs}
|
### Column Compression Codecs {#codecs}
|
||||||
|
|
||||||
By default, ClickHouse applies the compression method, defined in [server settings](../operations/server_settings/settings.md#compression), to columns. You can also define the compression method for each individual column in the `CREATE TABLE` query.
|
By default, ClickHouse applies the `lz4` compression method. For `MergeTree`-engine family you can change the default compression method in the [compression](../operations/server_settings/settings.md#server-settings-compression) section of a server configuration. You can also define the compression method for each individual column in the `CREATE TABLE` query.
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE codec_example
|
CREATE TABLE codec_example
|
||||||
@ -151,10 +151,10 @@ If a codec is specified, the default codec doesn't apply. Codecs can be combined
|
|||||||
|
|
||||||
Compression is supported for the following table engines:
|
Compression is supported for the following table engines:
|
||||||
|
|
||||||
- [MergeTree](../operations/table_engines/mergetree.md) family
|
- [MergeTree](../operations/table_engines/mergetree.md) family. Supports column compression codecs and selecting the default compression method by [compression](../operations/server_settings/settings.md#server-settings-compression) settings.
|
||||||
- [Log](../operations/table_engines/log_family.md) family
|
- [Log](../operations/table_engines/log_family.md) family. Uses the `lz4` compression method by default and supports column compression codecs.
|
||||||
- [Set](../operations/table_engines/set.md)
|
- [Set](../operations/table_engines/set.md). Only supported the default compression.
|
||||||
- [Join](../operations/table_engines/join.md)
|
- [Join](../operations/table_engines/join.md). Only supported the default compression.
|
||||||
|
|
||||||
ClickHouse supports common purpose codecs and specialized codecs.
|
ClickHouse supports common purpose codecs and specialized codecs.
|
||||||
|
|
||||||
|
@ -435,22 +435,16 @@ SOURCE(MYSQL(
|
|||||||
Setting fields:
|
Setting fields:
|
||||||
|
|
||||||
- `port` – The port on the MySQL server. You can specify it for all replicas, or for each one individually (inside `<replica>`).
|
- `port` – The port on the MySQL server. You can specify it for all replicas, or for each one individually (inside `<replica>`).
|
||||||
|
|
||||||
- `user` – Name of the MySQL user. You can specify it for all replicas, or for each one individually (inside `<replica>`).
|
- `user` – Name of the MySQL user. You can specify it for all replicas, or for each one individually (inside `<replica>`).
|
||||||
|
|
||||||
- `password` – Password of the MySQL user. You can specify it for all replicas, or for each one individually (inside `<replica>`).
|
- `password` – Password of the MySQL user. You can specify it for all replicas, or for each one individually (inside `<replica>`).
|
||||||
|
|
||||||
- `replica` – Section of replica configurations. There can be multiple sections.
|
- `replica` – Section of replica configurations. There can be multiple sections.
|
||||||
- `replica/host` – The MySQL host.
|
|
||||||
|
|
||||||
\* `replica/priority` – The replica priority. When attempting to connect, ClickHouse traverses the replicas in order of priority. The lower the number, the higher the priority.
|
- `replica/host` – The MySQL host.
|
||||||
|
- `replica/priority` – The replica priority. When attempting to connect, ClickHouse traverses the replicas in order of priority. The lower the number, the higher the priority.
|
||||||
|
|
||||||
- `db` – Name of the database.
|
- `db` – Name of the database.
|
||||||
|
|
||||||
- `table` – Name of the table.
|
- `table` – Name of the table.
|
||||||
|
- `where ` – The selection criteria. The syntax for conditions is the same as for `WHERE` clause in MySQL, for example, `id > 10 AND id < 20`. Optional parameter.
|
||||||
- `where ` – The selection criteria. Optional parameter.
|
|
||||||
|
|
||||||
- `invalidate_query` – Query for checking the dictionary status. Optional parameter. Read more in the section [Updating dictionaries](external_dicts_dict_lifetime.md).
|
- `invalidate_query` – Query for checking the dictionary status. Optional parameter. Read more in the section [Updating dictionaries](external_dicts_dict_lifetime.md).
|
||||||
|
|
||||||
MySQL can be connected on a local host via sockets. To do this, set `host` and `socket`.
|
MySQL can be connected on a local host via sockets. To do this, set `host` and `socket`.
|
||||||
|
@ -184,7 +184,9 @@ Changes already made by the mutation are not rolled back.
|
|||||||
OPTIMIZE TABLE [db.]name [ON CLUSTER cluster] [PARTITION partition | PARTITION ID 'partition_id'] [FINAL] [DEDUPLICATE]
|
OPTIMIZE TABLE [db.]name [ON CLUSTER cluster] [PARTITION partition | PARTITION ID 'partition_id'] [FINAL] [DEDUPLICATE]
|
||||||
```
|
```
|
||||||
|
|
||||||
This query tries to initialize an unscheduled merge of data parts for tables with a table engine from the [MergeTree](../operations/table_engines/mergetree.md) family. Other kinds of table engines aren't supported.
|
This query tries to initialize an unscheduled merge of data parts for tables with a table engine from the [MergeTree](../operations/table_engines/mergetree.md) family.
|
||||||
|
|
||||||
|
The `OPTMIZE` query is also supported for the [MaterializedView](../operations/table_engines/materializedview.md) and the [Buffer](../operations/table_engines/buffer.md) engines. Other table engines aren't supported.
|
||||||
|
|
||||||
When `OPTIMIZE` is used with the [ReplicatedMergeTree](../operations/table_engines/replication.md) family of table engines, ClickHouse creates a task for merging and waits for execution on all nodes (if the `replication_alter_partitions_sync` setting is enabled).
|
When `OPTIMIZE` is used with the [ReplicatedMergeTree](../operations/table_engines/replication.md) family of table engines, ClickHouse creates a task for merging and waits for execution on all nodes (if the `replication_alter_partitions_sync` setting is enabled).
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ The `FROM` clause specifies the source to read data from:
|
|||||||
`ARRAY JOIN` and the regular `JOIN` may also be included (see below).
|
`ARRAY JOIN` and the regular `JOIN` may also be included (see below).
|
||||||
|
|
||||||
Instead of a table, the `SELECT` subquery may be specified in parenthesis.
|
Instead of a table, the `SELECT` subquery may be specified in parenthesis.
|
||||||
In contrast to standard SQL, a synonym does not need to be specified after a subquery. For compatibility, it is possible to write `AS name` after a subquery, but the specified name isn't used anywhere.
|
In contrast to standard SQL, a synonym does not need to be specified after a subquery.
|
||||||
|
|
||||||
To execute a query, all the columns listed in the query are extracted from the appropriate table. Any columns not needed for the external query are thrown out of the subqueries.
|
To execute a query, all the columns listed in the query are extracted from the appropriate table. Any columns not needed for the external query are thrown out of the subqueries.
|
||||||
If a query does not list any columns (for example, `SELECT count() FROM t`), some column is extracted from the table anyway (the smallest one is preferred), in order to calculate the number of rows.
|
If a query does not list any columns (for example, `SELECT count() FROM t`), some column is extracted from the table anyway (the smallest one is preferred), in order to calculate the number of rows.
|
||||||
|
@ -4,13 +4,14 @@ Table functions are methods for constructing tables.
|
|||||||
|
|
||||||
You can use table functions in:
|
You can use table functions in:
|
||||||
|
|
||||||
|
* [FROM](../select.md#select-from) clause of the `SELECT` query.
|
||||||
|
|
||||||
|
The method for creating a temporary table that is available only in the current query. The table is deleted when the query finishes.
|
||||||
|
|
||||||
* [CREATE TABLE AS <table_function()>](../create.md#create-table-query) query.
|
* [CREATE TABLE AS <table_function()>](../create.md#create-table-query) query.
|
||||||
|
|
||||||
It's one of the methods of creating a table.
|
It's one of the methods of creating a table.
|
||||||
|
|
||||||
* [FROM](../select.md#select-from) clause of the `SELECT` query.
|
|
||||||
|
|
||||||
The method for creating a temporary table that is available only in the current query. The table is deleted when the query finishes.
|
|
||||||
|
|
||||||
!!! warning "Warning"
|
!!! warning "Warning"
|
||||||
You can't use table functions if the [allow_ddl](../../operations/settings/permissions_for_queries.md#settings_allow_ddl) setting is disabled.
|
You can't use table functions if the [allow_ddl](../../operations/settings/permissions_for_queries.md#settings_allow_ddl) setting is disabled.
|
||||||
|
@ -14,7 +14,7 @@ $ grep -q sse4_2 /proc/cpuinfo && echo "SSE 4.2 supported" || echo "SSE 4.2 not
|
|||||||
|
|
||||||
## Доступные варианты установки
|
## Доступные варианты установки
|
||||||
|
|
||||||
### Из DEB пакетов {#from-deb-packages}
|
### Из DEB пакетов {#install-from-deb-packages}
|
||||||
|
|
||||||
Яндекс рекомендует использовать официальные скомпилированные `deb` пакеты для Debian или Ubuntu.
|
Яндекс рекомендует использовать официальные скомпилированные `deb` пакеты для Debian или Ubuntu.
|
||||||
|
|
||||||
|
@ -134,15 +134,15 @@ ClickHouse проверит условия `min_part_size` и `min_part_size_rat
|
|||||||
|
|
||||||
Настройки:
|
Настройки:
|
||||||
|
|
||||||
- host - Сервер Graphite.
|
- host – Сервер Graphite.
|
||||||
- port - Порт сервера Graphite.
|
- port – Порт сервера Graphite.
|
||||||
- interval - Период отправки в секундах.
|
- interval – Период отправки в секундах.
|
||||||
- timeout - Таймаут отправки данных в секундах.
|
- timeout – Таймаут отправки данных в секундах.
|
||||||
- root_path - Префикс для ключей.
|
- root_path – Префикс для ключей.
|
||||||
- metrics - Отправка данных из таблицы [system.metrics](../system_tables.md#system_tables-metrics).
|
- metrics – Отправка данных из таблицы [system.metrics](../system_tables.md#system_tables-metrics).
|
||||||
- events - Отправка дельты данных, накопленной за промежуток времени из таблицы [system.events](../system_tables.md#system_tables-events).
|
- events – Отправка дельты данных, накопленной за промежуток времени из таблицы [system.events](../system_tables.md#system_tables-events).
|
||||||
- events_cumulative - Отправка суммарных данных из таблицы [system.events](../system_tables.md#system_tables-events).
|
- events_cumulative – Отправка суммарных данных из таблицы [system.events](../system_tables.md#system_tables-events).
|
||||||
- asynchronous_metrics - Отправка данных из таблицы [system.asynchronous_metrics](../system_tables.md#system_tables-asynchronous_metrics).
|
- asynchronous_metrics – Отправка данных из таблицы [system.asynchronous_metrics](../system_tables.md#system_tables-asynchronous_metrics).
|
||||||
|
|
||||||
Можно определить несколько секций `<graphite>`, например, для передачи различных данных с различной частотой.
|
Можно определить несколько секций `<graphite>`, например, для передачи различных данных с различной частотой.
|
||||||
|
|
||||||
|
@ -330,18 +330,18 @@ $ sudo apt-get install tdsodbc freetds-bin sqsh
|
|||||||
|
|
||||||
Поля настройки:
|
Поля настройки:
|
||||||
|
|
||||||
- `port` - порт сервера MySQL. Можно указать для всех реплик или для каждой в отдельности (внутри `<replica>`).
|
- `port` — порт сервера MySQL. Можно указать для всех реплик или для каждой в отдельности (внутри `<replica>`).
|
||||||
- `user` - имя пользователя MySQL. Можно указать для всех реплик или для каждой в отдельности (внутри `<replica>`).
|
- `user` — имя пользователя MySQL. Можно указать для всех реплик или для каждой в отдельности (внутри `<replica>`).
|
||||||
- `password` - пароль пользователя MySQL. Можно указать для всех реплик или для каждой в отдельности (внутри `<replica>`).
|
- `password` — пароль пользователя MySQL. Можно указать для всех реплик или для каждой в отдельности (внутри `<replica>`).
|
||||||
- `replica` - блок конфигурации реплики. Блоков может быть несколько.
|
- `replica` — блок конфигурации реплики. Блоков может быть несколько.
|
||||||
|
|
||||||
- `replica/host` - хост MySQL.
|
- `replica/host` — хост MySQL.
|
||||||
|
- `replica/priority` — приоритет реплики. При попытке соединения ClickHouse обходит реплики в соответствии с приоритетом. Чем меньше цифра, тем выше приоритет.
|
||||||
|
|
||||||
\* `replica/priority` - приоритет реплики. При попытке соединения ClickHouse обходит реплики в соответствии с приоритетом. Чем меньше цифра, тем выше приоритет.
|
- `db` — имя базы данных.
|
||||||
- `db` - имя базы данных.
|
- `table` — имя таблицы.
|
||||||
- `table` - имя таблицы.
|
- `where` — условие выбора. Синтаксис условия совпадает с синтаксисом секции `WHERE` в MySQL, например, `id > 10 AND id < 20`. Необязательный параметр.
|
||||||
- `where` - условие выбора. Необязательный параметр.
|
- `invalidate_query` — запрос для проверки статуса словаря. Необязательный параметр. Читайте подробнее в разделе [Обновление словарей](external_dicts_dict_lifetime.md).
|
||||||
- `invalidate_query` - запрос для проверки статуса словаря. Необязательный параметр. Читайте подробнее в разделе [Обновление словарей](external_dicts_dict_lifetime.md).
|
|
||||||
|
|
||||||
MySQL можно подключить на локальном хосте через сокеты, для этого необходимо задать `host` и `socket`.
|
MySQL можно подключить на локальном хосте через сокеты, для этого необходимо задать `host` и `socket`.
|
||||||
|
|
||||||
|
@ -36,48 +36,49 @@ nav:
|
|||||||
- 'Visual Interfaces': 'interfaces/third-party/gui.md'
|
- 'Visual Interfaces': 'interfaces/third-party/gui.md'
|
||||||
- 'Proxies': 'interfaces/third-party/proxy.md'
|
- 'Proxies': 'interfaces/third-party/proxy.md'
|
||||||
|
|
||||||
- 'Database Engines':
|
- 'Engines':
|
||||||
- 'Introduction': 'database_engines/index.md'
|
- 'Table Engines':
|
||||||
- 'MySQL': 'database_engines/mysql.md'
|
- 'Introduction': 'operations/table_engines/index.md'
|
||||||
- 'Lazy': 'database_engines/lazy.md'
|
- 'MergeTree Family':
|
||||||
|
- 'MergeTree': 'operations/table_engines/mergetree.md'
|
||||||
|
- 'Data Replication': 'operations/table_engines/replication.md'
|
||||||
|
- 'Custom Partitioning Key': 'operations/table_engines/custom_partitioning_key.md'
|
||||||
|
- 'ReplacingMergeTree': 'operations/table_engines/replacingmergetree.md'
|
||||||
|
- 'SummingMergeTree': 'operations/table_engines/summingmergetree.md'
|
||||||
|
- 'AggregatingMergeTree': 'operations/table_engines/aggregatingmergetree.md'
|
||||||
|
- 'CollapsingMergeTree': 'operations/table_engines/collapsingmergetree.md'
|
||||||
|
- 'VersionedCollapsingMergeTree': 'operations/table_engines/versionedcollapsingmergetree.md'
|
||||||
|
- 'GraphiteMergeTree': 'operations/table_engines/graphitemergetree.md'
|
||||||
|
- 'Log Family':
|
||||||
|
- 'Introduction': 'operations/table_engines/log_family.md'
|
||||||
|
- 'StripeLog': 'operations/table_engines/stripelog.md'
|
||||||
|
- 'Log': 'operations/table_engines/log.md'
|
||||||
|
- 'TinyLog': 'operations/table_engines/tinylog.md'
|
||||||
|
- 'Integrations':
|
||||||
|
- 'Kafka': 'operations/table_engines/kafka.md'
|
||||||
|
- 'MySQL': 'operations/table_engines/mysql.md'
|
||||||
|
- 'JDBC': 'operations/table_engines/jdbc.md'
|
||||||
|
- 'ODBC': 'operations/table_engines/odbc.md'
|
||||||
|
- 'HDFS': 'operations/table_engines/hdfs.md'
|
||||||
|
- 'Special':
|
||||||
|
- 'Distributed': 'operations/table_engines/distributed.md'
|
||||||
|
- 'External data': 'operations/table_engines/external_data.md'
|
||||||
|
- 'Dictionary': 'operations/table_engines/dictionary.md'
|
||||||
|
- 'Merge': 'operations/table_engines/merge.md'
|
||||||
|
- 'File': 'operations/table_engines/file.md'
|
||||||
|
- 'Null': 'operations/table_engines/null.md'
|
||||||
|
- 'Set': 'operations/table_engines/set.md'
|
||||||
|
- 'Join': 'operations/table_engines/join.md'
|
||||||
|
- 'URL': 'operations/table_engines/url.md'
|
||||||
|
- 'View': 'operations/table_engines/view.md'
|
||||||
|
- 'MaterializedView': 'operations/table_engines/materializedview.md'
|
||||||
|
- 'Memory': 'operations/table_engines/memory.md'
|
||||||
|
- 'Buffer': 'operations/table_engines/buffer.md'
|
||||||
|
|
||||||
- 'Table Engines':
|
- 'Database Engines':
|
||||||
- 'Introduction': 'operations/table_engines/index.md'
|
- 'Introduction': 'database_engines/index.md'
|
||||||
- 'MergeTree Family':
|
- 'MySQL': 'database_engines/mysql.md'
|
||||||
- 'MergeTree': 'operations/table_engines/mergetree.md'
|
- 'Lazy': 'database_engines/lazy.md'
|
||||||
- 'Data Replication': 'operations/table_engines/replication.md'
|
|
||||||
- 'Custom Partitioning Key': 'operations/table_engines/custom_partitioning_key.md'
|
|
||||||
- 'ReplacingMergeTree': 'operations/table_engines/replacingmergetree.md'
|
|
||||||
- 'SummingMergeTree': 'operations/table_engines/summingmergetree.md'
|
|
||||||
- 'AggregatingMergeTree': 'operations/table_engines/aggregatingmergetree.md'
|
|
||||||
- 'CollapsingMergeTree': 'operations/table_engines/collapsingmergetree.md'
|
|
||||||
- 'VersionedCollapsingMergeTree': 'operations/table_engines/versionedcollapsingmergetree.md'
|
|
||||||
- 'GraphiteMergeTree': 'operations/table_engines/graphitemergetree.md'
|
|
||||||
- 'Log Family':
|
|
||||||
- 'Introduction': 'operations/table_engines/log_family.md'
|
|
||||||
- 'StripeLog': 'operations/table_engines/stripelog.md'
|
|
||||||
- 'Log': 'operations/table_engines/log.md'
|
|
||||||
- 'TinyLog': 'operations/table_engines/tinylog.md'
|
|
||||||
- 'Integrations':
|
|
||||||
- 'Kafka': 'operations/table_engines/kafka.md'
|
|
||||||
- 'MySQL': 'operations/table_engines/mysql.md'
|
|
||||||
- 'JDBC': 'operations/table_engines/jdbc.md'
|
|
||||||
- 'ODBC': 'operations/table_engines/odbc.md'
|
|
||||||
- 'HDFS': 'operations/table_engines/hdfs.md'
|
|
||||||
- 'Special':
|
|
||||||
- 'Distributed': 'operations/table_engines/distributed.md'
|
|
||||||
- 'External data': 'operations/table_engines/external_data.md'
|
|
||||||
- 'Dictionary': 'operations/table_engines/dictionary.md'
|
|
||||||
- 'Merge': 'operations/table_engines/merge.md'
|
|
||||||
- 'File': 'operations/table_engines/file.md'
|
|
||||||
- 'Null': 'operations/table_engines/null.md'
|
|
||||||
- 'Set': 'operations/table_engines/set.md'
|
|
||||||
- 'Join': 'operations/table_engines/join.md'
|
|
||||||
- 'URL': 'operations/table_engines/url.md'
|
|
||||||
- 'View': 'operations/table_engines/view.md'
|
|
||||||
- 'MaterializedView': 'operations/table_engines/materializedview.md'
|
|
||||||
- 'Memory': 'operations/table_engines/memory.md'
|
|
||||||
- 'Buffer': 'operations/table_engines/buffer.md'
|
|
||||||
|
|
||||||
- 'SQL Reference':
|
- 'SQL Reference':
|
||||||
- 'hidden': 'query_language/index.md'
|
- 'hidden': 'query_language/index.md'
|
||||||
@ -191,13 +192,14 @@ nav:
|
|||||||
- 'Requirements': 'operations/requirements.md'
|
- 'Requirements': 'operations/requirements.md'
|
||||||
- 'Monitoring': 'operations/monitoring.md'
|
- 'Monitoring': 'operations/monitoring.md'
|
||||||
- 'Troubleshooting': 'operations/troubleshooting.md'
|
- 'Troubleshooting': 'operations/troubleshooting.md'
|
||||||
- 'Usage Recommendations': 'operations/tips.md'
|
|
||||||
- 'ClickHouse Update': 'operations/update.md'
|
- 'ClickHouse Update': 'operations/update.md'
|
||||||
- 'Access Rights': 'operations/access_rights.md'
|
- 'Access Rights': 'operations/access_rights.md'
|
||||||
- 'Data Backup': 'operations/backup.md'
|
- 'Data Backup': 'operations/backup.md'
|
||||||
- 'Configuration Files': 'operations/configuration_files.md'
|
- 'Configuration Files': 'operations/configuration_files.md'
|
||||||
- 'Quotas': 'operations/quotas.md'
|
- 'Quotas': 'operations/quotas.md'
|
||||||
- 'System Tables': 'operations/system_tables.md'
|
- 'System Tables': 'operations/system_tables.md'
|
||||||
|
- 'Optimizing Performance':
|
||||||
|
- 'Query Profiling': operations/performance/sampling_query_profiler.md
|
||||||
- 'Testing Hardware': 'operations/performance_test.md'
|
- 'Testing Hardware': 'operations/performance_test.md'
|
||||||
- 'Server Configuration Parameters':
|
- 'Server Configuration Parameters':
|
||||||
- 'Introduction': 'operations/server_settings/index.md'
|
- 'Introduction': 'operations/server_settings/index.md'
|
||||||
@ -215,7 +217,8 @@ nav:
|
|||||||
- 'clickhouse-copier': 'operations/utils/clickhouse-copier.md'
|
- 'clickhouse-copier': 'operations/utils/clickhouse-copier.md'
|
||||||
- 'clickhouse-local': 'operations/utils/clickhouse-local.md'
|
- 'clickhouse-local': 'operations/utils/clickhouse-local.md'
|
||||||
- 'clickhouse-benchmark': 'operations/utils/clickhouse-benchmark.md'
|
- 'clickhouse-benchmark': 'operations/utils/clickhouse-benchmark.md'
|
||||||
|
- 'Usage Recommendations': 'operations/tips.md'
|
||||||
|
|
||||||
- 'Development':
|
- 'Development':
|
||||||
- 'hidden': 'development/index.md'
|
- 'hidden': 'development/index.md'
|
||||||
- 'The Beginner ClickHouse Developer Instruction': 'development/developer_instruction.md'
|
- 'The Beginner ClickHouse Developer Instruction': 'development/developer_instruction.md'
|
||||||
|
Loading…
Reference in New Issue
Block a user