Alexander Kuzmenkov
811d0e00d5
performance comparison
2020-03-16 17:54:17 +03:00
alesapin
718903f140
Simplify test and fix order of messages
2020-03-16 17:05:11 +03:00
Artem Zuikov
703bf4ef1a
Merge branch 'master' into some
2020-03-16 16:45:39 +03:00
Guillaume Tassery
bbd6ff8466
test
2020-03-16 14:35:22 +01:00
Artem Zuikov
211ee95eb7
undo jemalloc deps
2020-03-16 16:30:37 +03:00
Guillaume Tassery
b3c1115bc2
an another test
2020-03-16 13:40:34 +01:00
Alexey Milovidov
32b3e7946c
Fix flacky test, take two
2020-03-16 15:32:07 +03:00
alesapin
4547e1a25b
Simplify kill mutation test
2020-03-16 14:54:07 +03:00
Guillaume Tassery
6c3200c75c
test
2020-03-16 11:32:23 +01:00
Guillaume Tassery
1f92b0a7a3
double quote string
2020-03-16 11:00:51 +01:00
Alexey Milovidov
11d4fc98f8
Add minimal code of conduct #9676
2020-03-16 12:44:28 +03:00
Guillaume Tassery
d506f97786
fix segfault
2020-03-16 10:21:38 +01:00
Nikita Mikhaylov
b34d1dfc7d
fix debug build for gcc-9
2020-03-16 12:16:14 +03:00
alesapin
930e6f24b1
Merge pull request #9652 from ClickHouse/fix_compatibility_for_mutations
...
Fix compatibility in replication
2020-03-16 11:19:57 +03:00
Guillaume Tassery
1493ae2c38
Merge branch 'master' of github.com:ClickHouse/ClickHouse into
2020-03-16 07:53:07 +01:00
Ivan Blinkov
dca79a59e1
Update README.md
2020-03-16 08:52:17 +03:00
alexey-milovidov
d8ddd11336
Update CHANGELOG.md
2020-03-16 06:16:39 +03:00
alexey-milovidov
5b79254c2b
Update CHANGELOG.md
2020-03-16 06:10:07 +03:00
alexey-milovidov
c5af693aa7
Update CHANGELOG.md
2020-03-16 06:09:07 +03:00
alexey-milovidov
55a6c8dc9d
Merge pull request #9675 from ClickHouse/changelog-20-3
...
Changelog for 20.3
2020-03-16 06:05:11 +03:00
Alexey Milovidov
1142d1b5f1
Changelog for 20.3
2020-03-16 06:04:31 +03:00
Alexey Milovidov
1f1da04cbe
Fix changelog script
2020-03-16 04:26:09 +03:00
alexey-milovidov
b5dd1b4d80
Merge pull request #9665 from huiwang/fix_darwin_cross_build
...
set libc++ as stdlib explicitly for clang under darwin
2020-03-16 01:12:38 +03:00
Ivan Blinkov
cb7b64d946
Softer cache purge threshold
2020-03-16 00:10:47 +03:00
Hui Wang
c1ff111146
remove warnings under MacOS
2020-03-15 21:02:06 +01:00
Hui Wang
f4966ff8a3
set libc++ as stdlib explicitly for clang under darwin
2020-03-15 21:02:06 +01:00
alesapin
2c16732536
Revert version check
2020-03-15 22:34:36 +03:00
alesapin
b0cc690cfb
Fix entries compatibility without versions update
2020-03-15 22:33:25 +03:00
Ivan Blinkov
3ce47c5e48
Suggest downloading packages via CDN ( #9663 )
...
* Suggest downloading packages via CDN
* Update rpm.html
* Update tgz.html
* Update install.md
* Update tutorial.md
* Update install.md
* Update install.md
* Update tutorial.md
* Update deb.html
2020-03-15 21:19:43 +03:00
Ivan Blinkov
847f673ebc
Update SECURITY.md
2020-03-15 16:53:24 +03:00
Ivan Blinkov
51e3986924
Update release.sh
2020-03-15 16:25:58 +03:00
imgbot[bot]
6a5b706fe6
[ImgBot] Optimize images ( #9669 )
...
/website/images/clickhouse-black.svg -- 4.33kb -> 4.33kb (0.02%)
Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
Co-authored-by: ImgBotApp <ImgBotHelp@gmail.com>
2020-03-15 14:26:29 +03:00
Ivan Blinkov
856ea72b5c
Try to purge website cache less aggressively ( #9668 )
2020-03-15 13:53:00 +03:00
Azat Khuzhin
a15b2daf6d
Do not shutdown global thread pool on exception
...
Otherwise GlobalThreadPool can be terminated (for example due to an
exception from the ParallelInputsHandler::onFinish/onFinishThread, from
ParallelAggregatingBlockInputStream::Handler::onFinish/onFinishThread,
since writeToTemporaryFile() can definitelly throw) and the server will
not accept new connections (or/and execute queries) anymore.
Here is possible stacktrace (it is a bit inaccurate, due to
optimizations I guess, and it had been obtained with the
DB::tryLogCurrentException() in the catch block of the
ThreadPoolImpl::worker()):
2020.02.16 22:30:40.415246 [ 45909 ] {} <Error> ThreadPool: Unhandled exception in the ThreadPool(10000,1000,10000) the loop will be shutted down: Code: 241, e.displayText() = DB::Exception: Memory limit (total) exceeded: would use 279.40 GiB (attempt to allocate chunk of 4205536 bytes), maximum: 279.40 GiB, Stack trace (when copying this message, always include the lines below):
1. Common/Exception.cpp:35: DB::Exception::Exception(...)
...
6. Common/Allocator.h:102: void DB::PODArrayBase<8ul, 4096ul, Allocator<false, false>, 15ul, 16ul>::reserve<>(unsigned long) (.part.0)
7. Interpreters/Aggregator.cpp:1040: void DB::Aggregator::writeToTemporaryFileImpl<...>(...)
8. Interpreters/Aggregator.cpp:719: DB::Aggregator::writeToTemporaryFile(...)
9. include/memory:4206: DB::Aggregator::writeToTemporaryFile(...)
10. DataStreams/ParallelInputsProcessor.h:223: DB::ParallelInputsProcessor<DB::ParallelAggregatingBlockInputStream::Handler>::thread(...)
Refs: https://github.com/ClickHouse/ClickHouse/issues/6833#issuecomment-579221732
(Reference to particular comment, since I'm not sure about the initial issue)
2020-03-15 13:13:10 +03:00
Azat Khuzhin
6969191c9f
Call onException if ParallelInputsHandler::onFinish* throws
2020-03-15 13:13:10 +03:00
Ivan Blinkov
d64154d65e
Update meet-form.js
2020-03-15 10:44:57 +03:00
alexey-milovidov
f3f1208e06
Merge pull request #9667 from ClickHouse/fix-flacky-test-uniq-combined-memory-usage
...
Fix flacky test 01017_uniqCombined_memory_usage
2020-03-15 05:40:23 +03:00
alexey-milovidov
a4cc526133
Merge pull request #9065 from ClickHouse/split_databases_from_context
...
Split databases from Context
2020-03-15 03:42:57 +03:00
Alexey Milovidov
93ea73ae0f
Fix flacky test 01017_uniqCombined_memory_usage #7236
2020-03-15 03:22:06 +03:00
Alexey Milovidov
00b7e2b659
Make unit test less flacky by allowing session expiration during the test
2020-03-15 02:59:39 +03:00
Alexey Milovidov
5673fcc44d
Merge branch 'master' of github.com:yandex/ClickHouse
2020-03-15 02:39:53 +03:00
Alexey Milovidov
abd9802317
Slightly improve unit tests
2020-03-15 02:37:09 +03:00
alexey-milovidov
9e658d4541
Merge pull request #9602 from ClickHouse/common-prelimit-counter
...
Common prelimit counter
2020-03-15 02:24:07 +03:00
alexey-milovidov
fd2269c1a7
Merge pull request #9633 from Slach/docs/distributedconnectionfail
...
add DistributedConnectionFailAtAll, DistributedConnectionFailTry system.events description
2020-03-15 01:45:38 +03:00
alexey-milovidov
2086c96a54
Merge pull request #9634 from azat/client-no-cursor-restore-on-send_logs_level
...
Do not restore previous cursor if send_logs_level is used
2020-03-15 01:03:03 +03:00
alexey-milovidov
3ef1d40b97
Merge pull request #9636 from azat/fix-sum-remote
...
Fix various sum*() functions via remote() usage (incorrect function name)
2020-03-15 01:00:39 +03:00
alexey-milovidov
68074a1524
Merge pull request #9653 from ClickHouse/add_setting_for_path_format
...
Add setting for a new format of distributed parts
2020-03-15 00:40:33 +03:00
alexey-milovidov
6dbb6317b6
Merge pull request #9654 from ClickHouse/remove-nontrivial-global-variable
...
Remove global variable with nontrivial ctor/dtor
2020-03-14 23:14:24 +03:00
imgbot[bot]
f2d93351bd
[ImgBot] Optimize images ( #9664 )
...
*Total -- 36.24kb -> 36.11kb (0.36%)
/website/images/index/blog.svg -- 0.71kb -> 0.70kb (1.78%)
/website/images/index/stack-overflow.svg -- 0.76kb -> 0.75kb (1.28%)
/website/images/index/youtube.svg -- 0.48kb -> 0.47kb (1.02%)
/website/images/index/telegram.svg -- 1.18kb -> 1.18kb (0.58%)
/website/images/index/google-groups.svg -- 1.12kb -> 1.12kb (0.52%)
/website/images/index/meetup.svg -- 25.21kb -> 25.12kb (0.33%)
/website/images/index/twitter.svg -- 1.03kb -> 1.03kb (0.28%)
/website/images/index/github.svg -- 1.42kb -> 1.42kb (0.27%)
/website/images/clickhouse-black.svg -- 4.33kb -> 4.33kb (0.02%)
Signed-off-by: ImgBotApp <ImgBotHelp@gmail.com>
Co-authored-by: ImgBotApp <ImgBotHelp@gmail.com>
2020-03-14 23:06:50 +03:00
Ivan Blinkov
1e8005ba53
Refactor contacts/community sections on website front page + css tuning ( #9662 )
2020-03-14 23:02:57 +03:00