alexey-milovidov
cfca6a9b0d
Merge pull request #31086 from flickerbox/crb-add-overflow-to-benchmark-tables
...
Add overflow to benchmark tables
2021-11-05 20:36:53 +03:00
Alexey
c037995cd2
new en variant
2021-11-05 17:22:50 +00:00
kssenii
9189966106
Fix
2021-11-05 20:01:21 +03:00
Dmitriy
fa3bbdb0a0
Document ALTER TABLE MODIFY COMMENT
...
Задокументировал comment.md
2021-11-05 19:40:17 +03:00
Cody Baker
b4443dde50
Add overflow to benchmark tables
...
# Conflicts:
# website/css/main.css
2021-11-05 10:20:59 -06:00
Thom O'Connor
77dc3ef429
Updated adopters with Jitsu and Open Targets; minor adopters editing; and added benchmark for Intel Core i5-9600K
2021-11-05 09:51:06 -06:00
mergify[bot]
9c32c51a4b
Merge branch 'master' into perf-spikes
2021-11-05 15:34:49 +00:00
taiyang-li
b6ac5442e2
fix duplicated header
2021-11-05 20:32:17 +08:00
taiyang-li
3a566eeeeb
fix typo
2021-11-05 20:27:37 +08:00
taiyang-li
36ca0b296b
implement hive table engine
2021-11-05 19:55:30 +08:00
Artur
ae13237c55
remove check for settings from test
2021-11-05 11:07:31 +00:00
Artur
f6e7fe67c4
improve tests
2021-11-05 10:44:41 +00:00
alesapin
dd9446d8d3
Fix ci runner
2021-11-05 11:56:06 +03:00
Alexey
9aee2f0f22
en draft
2021-11-05 08:37:30 +00:00
Cody Baker
0f8ba6be9f
Remove padding below greenhouse iframe ( #31087 )
2021-11-05 09:56:49 +03:00
Cody Baker
4fbfc0b447
Update button widths for responsive sizing ( #31085 )
2021-11-05 09:55:59 +03:00
Cody Baker
63c10abebe
Add new employee photos to team ( #31084 )
2021-11-05 09:55:19 +03:00
alesapin
a1a6d3876b
Iptables fix
2021-11-04 23:22:13 +03:00
alexey-milovidov
ce2413eed5
Update adopters.md
2021-11-04 23:17:18 +03:00
alexey-milovidov
69b2e536cd
Update CHANGELOG.md
2021-11-04 23:13:10 +03:00
alexey-milovidov
144b575674
Update CHANGELOG.md
2021-11-04 23:08:56 +03:00
alexey-milovidov
24b7998939
Update CHANGELOG.md
2021-11-04 23:06:35 +03:00
alexey-milovidov
23b76fe72d
Merge pull request #31014 from ClickHouse/rfraposa-patch-1
...
Changelog for version 21.11
2021-11-04 23:04:15 +03:00
Alexey Milovidov
d8303d0cf6
Changelog almost ready
2021-11-04 23:03:37 +03:00
Alexey Milovidov
d21d8d10ab
Continue editing changelog (incomplete)
2021-11-04 22:49:38 +03:00
Dmitriy
ac9f06112c
Add links
...
Добавил недостающие ссылки.
2021-11-04 19:59:53 +03:00
Dmitriy
0d4275f43e
Fix links
...
Поправил ссылку.
2021-11-04 19:37:03 +03:00
Dmitriy
4355d69213
Create comment to dictionary
...
Задокументировал комментарий к словарю, обновил примеры и системную таблицу.
2021-11-04 19:08:42 +03:00
alesapin
2cc0b9723e
Use temp path
2021-11-04 18:53:45 +03:00
alesapin
c11042da80
Fix approve lambda
2021-11-04 18:47:35 +03:00
Vitaly Baranov
78e9af8f0a
Merge pull request #31013 from vitlibar/no-sessions-in-clickhouse-dictionary-source
...
Disable using session log for the local session inside Clickhouse dictionary source
2021-11-04 18:04:22 +03:00
alesapin
5b98b3f93d
Don't delete runners in metrics lambda
2021-11-04 17:49:58 +03:00
kssenii
4bc2a29345
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into retriable-http
2021-11-04 14:41:24 +00:00
kssenii
b95f0738fb
Fix
2021-11-04 14:39:53 +00:00
vicgao
ec2c70ab75
rename/exchange database/table/dictionary support IF EXISTS syntax
2021-11-04 22:35:34 +08:00
kssenii
824c5b27da
Add test with emoji
2021-11-04 17:11:01 +03:00
alesapin
767e20f02d
Fix packages
2021-11-04 14:21:01 +03:00
kssenii
26c4affc18
Fixes
2021-11-04 11:00:35 +00:00
kssenii
9cfa2c4578
Merge branch 'master' of github.com:ClickHouse/ClickHouse into sql-json-fix-2
2021-11-04 13:04:00 +03:00
alesapin
e259d259a8
Fix logs upload
2021-11-04 12:13:18 +03:00
Azat Khuzhin
9e622b5add
perf: switch *_log tables to Memory engine (attempt to reduce cache misses)
...
trace_log/query_log from performance tests shows (for
cases when prewarm query fails with timeout, 15sec) excessive
writeTraceInfo() in trace_log and QueryProfilerRuns in query_log, but
this is not the root cause of the timeout, but consequence.
Also query_log shows that on failures the following profile events has
significantly higher values:
- PerfLocalMemoryMisses (6.3x more)
- PerfLocalMemoryReferences (7x more)
- PerfDataTLBMisses (6.9x more)
- PerfInstructionTLBMisses (6.4x more)
During looking at performance tests logs I noticed that once the prewarm
query fails other server (left/right) was merging (MergeTree) something
in *_log tables.
But, using MergeTree for *_log in performance tests is useless, since
anyway environment for performance tests uses ramdrive.
And so MergeTree merges just increase overhead.
Eventually I expect that this should decrease extra memory referencing
and so this should decrease cache/TLB misses.
CI: https://clickhouse-test-reports.s3.yandex.net/30886/c504e0c08df7a926bb479a1d297f326f5c48a32f/performance_comparison/report.html#fail1
v2: <partition_by remove="remove"/>
2021-11-04 09:26:46 +03:00
alexey-milovidov
e5b811f96d
Merge pull request #31028 from azat/perf-drop-table
...
perf: add missing DROP TABLE queries
2021-11-04 00:31:19 +03:00
alexey-milovidov
74cac98739
Merge pull request #31030 from azat/tests-log-tables
...
Remove metric_log/part_log overrides in tests (enabled by default)
2021-11-04 00:30:43 +03:00
alexey-milovidov
5bf2d679fe
Merge pull request #31029 from azat/perf-tests-pull
...
Tune perf tests configs/scripts
2021-11-04 00:24:12 +03:00
Azat Khuzhin
7769d75088
Log size of remapped memory (remap_executable)
2021-11-04 00:19:00 +03:00
alesapin
b4657dd932
Forward env
2021-11-03 23:48:23 +03:00
Alexander Tokmakov
d4677dc6d8
fix intersecting parts in parts_to_do 2
2021-11-03 21:48:17 +03:00
Dmitriy
5481d3f144
Translate to Russian
...
Выполнил перевод на русский язык.
2021-11-03 21:28:36 +03:00
Dmitriy
234a5c37ac
Fix typo
...
Поправил опечатку.
2021-11-03 21:03:46 +03:00
avogar
2dd4393ca1
Small refactoring in formats
2021-11-03 20:07:05 +03:00