Robert Schulze
d8cee8a34c
Fix style
2023-06-26 19:00:25 +02:00
Sema Checherinda
4433d221e1
Merge branch 'master' into fix-test-profile-events-s3
2023-06-26 18:14:34 +02:00
kssenii
a1eb27ce30
Update log message
2023-06-26 18:12:41 +02:00
robot-ch-test-poll3
b5128bfaa6
Merge pull request #51413 from ClickHouse/tylerhannan-patch-1
...
Update README.md
2023-06-26 17:38:45 +02:00
robot-clickhouse
5de8c4ac67
Automatic style fix
2023-06-26 15:27:05 +00:00
Robert Schulze
45c263cbb5
Replace try/catch logic in hasTokenOrNull() by sth more lightweight
2023-06-26 15:06:58 +00:00
János Benjamin Antal
7cadfeac29
Add retries to flaky tests
2023-06-26 14:55:28 +00:00
Robert Schulze
fae545ae5c
Merge pull request #51132 from rschu1ze/inefficient-query-cache
...
Fix ineffective query cache for SELECTs with subqueries
2023-06-26 16:54:54 +02:00
Nikolai Kochetov
b10bcbc7f4
Merge pull request #51205 from ClickHouse/set-index-nullable-atoms
...
Fix Set index with constant nullable comparison.
2023-06-26 16:33:36 +02:00
Sema Checherinda
237805705c
Update test.py
2023-06-26 15:44:30 +02:00
Tyler Hannan
4fabce9cc8
Update README.md
2023-06-26 15:10:56 +02:00
Mikhail f. Shiryaev
32e671d0c6
Merge pull request #51405 from ClickHouse/status-lambdas
...
Fix broken labeling for `manual approve`
2023-06-26 14:47:51 +02:00
Sema Checherinda
c4d190617c
fix flacky test test_profile_events_s3
2023-06-26 14:46:51 +02:00
Nikolai Kochetov
4bfe75ce81
Merge branch 'master' into set-index-nullable-atoms
2023-06-26 14:34:42 +02:00
Kruglov Pavel
97f76d712c
Merge pull request #51285 from ClickHouse/Avogar-patch-1
...
Define Thrift version for parquet and use correct arrow version
2023-06-26 14:30:30 +02:00
Kruglov Pavel
9af56624f5
Fix flaky test test_skip_empty_files
2023-06-26 13:30:51 +02:00
Mikhail f. Shiryaev
065b87aa30
Improve logging a little bit, avoid double labeling
2023-06-26 13:25:49 +02:00
Mikhail f. Shiryaev
c64f929b9c
Fix broken labeling for manual approve
2023-06-26 13:25:48 +02:00
Alexander Tokmakov
eb649873b3
Unify merge predicate ( #51344 )
...
* unify merge predicate
* Update BaseDaemon.cpp
2023-06-26 13:48:21 +03:00
Alexander Tokmakov
e92035072b
Update MergeTreeTransaction.cpp
2023-06-26 13:44:09 +03:00
Alexey Milovidov
8e6f665585
Fix build
2023-06-26 05:57:38 +02:00
Alexey Milovidov
21c9feeeb3
Fix test
2023-06-26 05:46:10 +02:00
Alexey Milovidov
e3d999b023
Fix test 02497_trace_events_stress_long
2023-06-26 05:43:27 +02:00
Alexey Milovidov
4cef034297
Fix 02481_parquet_list_monotonically_increasing_offsets.sh
2023-06-26 05:27:45 +02:00
Alexey Milovidov
b8e6bd3299
Merge branch 'master' into refactor-subqueries-for-in
2023-06-26 06:05:12 +03:00
Alexey Milovidov
88048153d7
Fix 00899_long_attach_memory_limit
2023-06-26 04:37:14 +02:00
Alexey Milovidov
0e88aae9d7
Remove ConsoleCertificateHandler
2023-06-26 04:27:50 +02:00
Alexey Milovidov
73c6368034
Merge branch 'master' into fix-mysql-test
2023-06-26 02:50:08 +02:00
Alexey Milovidov
a487a1ab5a
Fix bad test
2023-06-26 02:48:30 +02:00
Alexey Milovidov
4ee74ec213
Two tests are twice longer in average with Analyzer and sometimes failing
2023-06-26 02:19:52 +02:00
Alexey Milovidov
477b707ff1
Revert "Merge pull request #50951 from ZhiguoZh/20230607-toyear-fix"
...
This reverts commit 6bbd0d144d
, reversing
changes made to 74cb79769b
.
2023-06-26 02:02:24 +02:00
Nikolay Degterinsky
4b02d83999
Merge pull request #50950 from alekar/improve-outfile
...
Address some usability issues with INTO OUTFILE usage.
2023-06-25 18:40:55 +02:00
Azat Khuzhin
5871ca0836
Fix performance tests due to warnings from jemalloc about Per-CPU arena disabled
...
jemalloc can show the following warning:
Number of CPUs detected is not deterministic. Per-CPU arena disabled
It will be shown if one of the following returns different number of
CPUs:
- _SC_NPROCESSORS_ONLN
- _SC_NPROCESSORS_CONF
- sched_getaffinity()
And actually for my CPU linux returns different numbers, because there
are more possible CPUs then online, from dmesg:
smpboot: Allowing 128 CPUs, 64 hotplug CPUs
And from sysfs:
# grep . /sys/devices/system/cpu/{possible,online,offline}
/sys/devices/system/cpu/possible:0-127
/sys/devices/system/cpu/online:0-63
/sys/devices/system/cpu/offline:64-127
From ACPI:
# acpidump -o acpi
# acpixtract -a acpi
# iasl -d *.dat
# grep -e 'Processor Enabled' apic.dsl | sort | uniq -c
64 Processor Enabled : 0
64 Processor Enabled : 1
So I guess this is the same as what happened in this perf run [1].
[1]: https://s3.amazonaws.com/clickhouse-test-reports/51360/5d43a64112711b339b82b1c0e8df7882546a1a3c/performance_comparison_[4_4]/report.html
P.S. personally I, just use cmdline=possible_cpus=64 to fix this for my
setup.
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-06-25 09:37:37 +02:00
Alexey Milovidov
c4ea7ab5b1
Attempt to fix test_ssl_cert_authentication
2023-06-25 09:31:09 +02:00
Alexey Milovidov
e9a9a019cf
Attempt to fix test_ssl_cert_authentication
2023-06-25 09:28:15 +02:00
Alexey Milovidov
b3f84a2b63
Maybe fix the "many mutations" test
2023-06-25 08:48:31 +02:00
Alexey Milovidov
f4f2c1476c
Fix test 01280_ttl_where_group_by
2023-06-25 08:40:11 +02:00
Alexey Milovidov
071cd58be8
Fix "logical error" in addressToLineWithInlines
2023-06-25 08:31:02 +02:00
Alexey Milovidov
b46817cbde
Fix bad test 01018_Distributed__shard_num
2023-06-25 07:18:29 +02:00
Alexey Milovidov
266b08132c
Fix MySQL test in Debug mode
2023-06-25 07:11:41 +02:00
Alexey Milovidov
c1da927b89
Attempt to fix the relax_too_many_parts
test
2023-06-25 07:01:36 +02:00
Alexey Milovidov
8017ea79c1
Fix bad tests for DNS
2023-06-25 06:54:00 +02:00
Alexey Milovidov
4fd1fc4507
Fix typo
2023-06-25 06:14:31 +02:00
Alexey Milovidov
511b2cdc21
Increase timeout of fast test
2023-06-25 06:10:57 +02:00
Alexey Milovidov
f9dec21c9b
Add a test
2023-06-25 06:01:37 +02:00
Alexey Milovidov
650e80663c
Fix MSan report in lowerUTF8/upperUTF8
2023-06-25 05:59:02 +02:00
Alexey Milovidov
1482df53ca
Update reference
2023-06-25 04:14:40 +02:00
Alexey Milovidov
171e11f276
Fix "merge_truncate_long" test
2023-06-25 04:11:27 +02:00
Alexey Milovidov
d84a4626b0
Disable "compile_expressions" setting by default
2023-06-25 03:22:59 +02:00
Alexey Milovidov
84c592aecd
Update test
2023-06-25 01:34:15 +02:00