alexey-milovidov
10fd2dd17d
Merge pull request #11118 from ClickHouse/aku/trace-log-overflow-followup
...
A follow-up for trace log overflow in perftests
2020-05-22 14:29:11 +03:00
alexey-milovidov
db6bfe25a7
Merge pull request #11111 from azat/gcc10-Wno-sequence-point
...
[RFC] Disable -Wsequence-point on gcc10 (otherwise it stuck on GatherUtils compiling)
2020-05-22 14:24:23 +03:00
alexey-milovidov
e5808c6f2f
Merge pull request #11122 from ClickHouse/aku/addr2line
...
Remove extra copying from addressToLine
2020-05-22 14:16:46 +03:00
Ivan Blinkov
3845809d5a
[docs] tune titles
2020-05-22 14:16:24 +03:00
alexey-milovidov
b82c633716
Merge pull request #11048 from filimonov/kafka_missed_data_during_drop
...
Fixes the potential missed data during termination of Kafka engine table
2020-05-22 14:11:10 +03:00
Ivan Blinkov
b6c04fb6ec
Update footer.html
2020-05-22 14:09:33 +03:00
Ivan Blinkov
2547874b3b
Update index.md
2020-05-22 14:00:41 +03:00
alesapin
138e4562f3
Skip flacky test
2020-05-22 13:38:56 +03:00
alexey-milovidov
6debfc1310
Merge pull request #11084 from azat/jemalloc-percpu_arena
...
Enable percpu_arena:percpu for jemalloc
2020-05-22 13:18:34 +03:00
Alexey Milovidov
a2fabd7ff0
Remove unreliable test #11119
2020-05-22 12:36:26 +03:00
Alexander Kuzmenkov
f04c5c6100
performance comparison
2020-05-22 11:54:35 +03:00
Alexander Kuzmenkov
86da115018
performance comparison
2020-05-22 11:40:20 +03:00
alesapin
cbcdb6219e
Slighty more verbose comment
2020-05-22 11:17:57 +03:00
alesapin
b9dfa61774
Merge pull request #11042 from CurtizJ/modify-ttl
...
Apply TTL for old data, after ALTER MODIFY TTL query
2020-05-22 11:12:14 +03:00
Ivan Blinkov
752404754d
Merge pull request #11129 from ClickHouse/dependabot/pip/docs/tools/six-1.15.0
...
Bump six from 1.14.0 to 1.15.0 in /docs/tools
2020-05-22 11:00:37 +03:00
Nikolai Kochetov
f7456f8320
Merge pull request #11004 from ClickHouse/remove-experimental-use-processors-flag-2
...
Remove allow_processors flag from executeQuery()
2020-05-22 10:47:15 +03:00
dependabot-preview[bot]
caa788b4f8
Bump six from 1.14.0 to 1.15.0 in /docs/tools
...
Bumps [six](https://github.com/benjaminp/six ) from 1.14.0 to 1.15.0.
- [Release notes](https://github.com/benjaminp/six/releases )
- [Changelog](https://github.com/benjaminp/six/blob/master/CHANGES )
- [Commits](https://github.com/benjaminp/six/compare/1.14.0...1.15.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-05-22 07:28:01 +00:00
Ivan Blinkov
6a670ba7ec
Update index.md
2020-05-22 08:51:46 +03:00
Alexander Kuzmenkov
3073fc9eb0
performance comparison
2020-05-22 05:51:26 +03:00
Alexander Kuzmenkov
432648ca1e
performance comparison
2020-05-22 03:51:56 +03:00
Alexander Kuzmenkov
322d731d28
Remove extra copying from addressToLine
...
The line is already serialized to the same arena, so there is no need to
copy it. Also add this function to query profiler test, so that it has
some coverage.
2020-05-22 03:01:35 +03:00
Alexander Kuzmenkov
7b747fabe2
performance comparison
2020-05-22 02:04:04 +03:00
Alexander Kuzmenkov
087d8ab020
A follow-up for trace log overflow in perftests
...
The start was in https://github.com/ClickHouse/ClickHouse/pull/11026
It turned out that the problem was due to the incorrect mutate()
implementation that lead to quadratic amount of column copying. This
problem has since been fixed.
Remove the excessively verbose logging, and also change appendToBlock of
LogElement's to accept mutable columns instead of accepting a block and
mutating it on each call. It looks wasteful, even though it is almost a
noop.
2020-05-21 23:40:23 +03:00
Alexander Kuzmenkov
fecd84d3c0
Merge pull request #10915 from ClickHouse/aku/mongodb-uri
...
Support MongoDB URI
2020-05-21 23:02:12 +03:00
Nikolai Kochetov
c81dd49686
Try fix build.
2020-05-21 22:55:27 +03:00
Ivan Blinkov
e0668f48e1
[docs] fix sitemap ( #11113 )
2020-05-21 22:34:50 +03:00
alesapin
1906762119
Merge pull request #11109 from ClickHouse/less_verbose_logging
...
Less verbose logging in mutation finalization task
2020-05-21 21:53:08 +03:00
Azat Khuzhin
23044ac02c
Disable -Wsequence-point on gcc10 (otherwise it stuck on GatherUtils compiling)
...
clang (10.0.0 is fine BTW) will warn about this anyway on CI.
For the debug build gcc10:
- before patch:
- concat.cpp -> >5m (stuck on cc1plus, not as)
- has.cpp -> >10m (stuck on cc1plus, not as)
- after this patch:
- concat.cpp -> 1m16s
- has.cpp -> 4m (and most of the time eats, as from binutils 2.34.50.20200508)
Command for build:
- ninja src/Functions/GatherUtils/CMakeFiles/clickhouse_functions_gatherutils.dir/concat.cpp.o
- ninja src/Functions/GatherUtils/CMakeFiles/clickhouse_functions_gatherutils.dir/has.cpp.o
The test case should be reduced and then it can be reported to the gcc
bugzilla.
P.S. Looks like a signal not to switch to gcc10 for now
2020-05-21 21:18:34 +03:00
Alexander Kuzmenkov
ebb29d48fa
Update perf.py
2020-05-21 21:06:08 +03:00
alexey-milovidov
2d9433242e
Merge pull request #11097 from ClickHouse/azat-memory-tracking-2
...
Merging #11022
2020-05-21 20:19:59 +03:00
alexey-milovidov
41a3817efa
Merge pull request #11096 from ClickHouse/test-for-ttl-in-system-parts
...
Test for TTL info in system.parts
2020-05-21 20:19:41 +03:00
alexey-milovidov
655b8e1903
Merge pull request #11021 from ClickHouse/fix_10557
...
Remove data on DROP DATABASE for DatabaseMemory
2020-05-21 20:17:46 +03:00
Nikolai Kochetov
adfa77be9d
Added another one comment.
2020-05-21 20:07:22 +03:00
Ilya Yatsishin
0f6410b56f
Merge pull request #11108 from ClickHouse/revert-11099-revert-10908-packager-add-bin
...
Revert "Revert "Allow to build binaries and tests from deb package build. ""
2020-05-21 19:59:52 +03:00
Alexander Kuzmenkov
f98ffdbc4c
Merge pull request #11087 from azat/context-fwd-decl
...
[RFC] Forward declaration for Context as much as possible.
2020-05-21 19:43:29 +03:00
alesapin
5676340f6b
Less verbose logging in mutation finalization task
2020-05-21 18:52:11 +03:00
alesapin
20d41a3f98
Update dpkg-deb ( https://github.com/ClickHouse-Extras/dpkg ) for compatibility with ubuntu eoan packages format
2020-05-21 18:30:08 +03:00
Ilya Yatsishin
9dc493e063
Revert "Revert "Allow to build binaries and tests from deb package build. ""
2020-05-21 18:02:52 +03:00
alexey-milovidov
ee665d6837
Merge pull request #11102 from geekyouth/patch-1
...
Update install.md
2020-05-21 15:54:08 +03:00
极客青年
4e72ede169
Update install.md
...
https://repo.yandex.ru/clickhouse/rpm/stable/x86_64/
change url | 修正地址
2020-05-21 20:40:44 +08:00
alexey-milovidov
b480f137f3
Merge pull request #10623 from livace/master
...
Add point in polygon for non-const polygons
2020-05-21 15:18:24 +03:00
黄璞
5e388d5519
table name typo fix ( #11100 )
...
According to the context, the table name of queue2 should be queue3.
2020-05-21 15:14:39 +03:00
alexey-milovidov
569f20e4c6
Merge pull request #11023 from azat/tests-system-log-cleanup
...
[RFC] Truncate system.*_log tables before each test
2020-05-21 15:14:25 +03:00
alexey-milovidov
765510d5c3
Merge pull request #10991 from ClickHouse/enable-clang-tidy-for-programs-and-utils
...
Enable clang-tidy for programs and utils
2020-05-21 15:12:07 +03:00
alexey-milovidov
6f4c28671c
Merge pull request #10992 from ClickHouse/vectorize-sum
...
Vectorize "sum" function
2020-05-21 15:07:27 +03:00
Alexey Milovidov
581b2358de
Added comment
2020-05-21 15:07:12 +03:00
Alexey Milovidov
3c763908c3
Added comment
2020-05-21 15:04:15 +03:00
Alexey Milovidov
6669607e17
Merge branch 'master' into vectorize-sum
2020-05-21 15:02:51 +03:00
Nikolai Kochetov
d6ce1ed7b9
Added comments.
2020-05-21 14:54:26 +03:00
alexey-milovidov
d7b1615ac4
Update extended-roadmap.md
2020-05-21 14:52:28 +03:00