Commit Graph

20369 Commits

Author SHA1 Message Date
Nikita Taranov
b0454acb14
Merge pull request #72770 from ClickHouse/more_insistent_compress_in_memory_eng
More insistent compression in `StorageMemory`
2024-12-04 12:29:09 +00:00
Yarik Briukhovetskyi
3cf4cd0499
Merge pull request #71441 from bigo-sg/translate
translate support second arg longer than the third
2024-12-04 12:12:03 +00:00
Miki Matsumoto
cf3891fc2d move some docs to clickhouse-docs to be same as English version 2024-12-04 11:48:27 +09:00
Nikita Taranov
a71c00000b impl 2024-12-03 20:12:51 +01:00
divanik
f1219d3e8e Merge branch 'master' of github.com:ClickHouse/ClickHouse into divanik/add_schema_evolution_concise 2024-12-03 15:27:45 +00:00
Miki Matsumoto
c856216618 modify japanese docs compile failure 2024-12-03 22:54:08 +09:00
Vladimir Cherkasov
d7acd3db93
Merge pull request #69910 from ClickHouse/vdimir/residual_join_conditions
Non-experimental non-equi join conditions
2024-12-03 13:48:31 +00:00
Pavel Kruglov
a433dea0ea
Merge pull request #72660 from ClickHouse/doc-mysql-settings
Documentation: add reference to relevant settings for mysql table function
2024-12-03 13:21:25 +00:00
Raúl Marín
5a3ecbd231 Merge remote-tracking branch 'blessed/master' into settings_checks 2024-12-03 13:45:37 +01:00
Raúl Marín
0d91a9b60c Use an Enum for type in system.settings_changes 2024-12-03 13:13:05 +01:00
Konstantin Bogdanov
21131689bd
Update docs 2024-12-03 12:44:08 +01:00
Yarik Briukhovetskyi
deddd1db31
Change the logic 2024-12-02 20:22:04 +01:00
Raúl Marín
e97ccb6b07 Adjust tests and docs 2024-12-02 13:48:50 +01:00
Vladimir Cherkasov
7b9973ef8f
Merge branch 'master' into vdimir/residual_join_conditions 2024-12-02 11:38:00 +01:00
Max Kainov
f9b0cc44f7
Merge branch 'master' into auto/v24.10.3.21-stable 2024-12-02 10:56:38 +01:00
shuai-xu
d2b4448fb1 some refines 2024-12-02 12:28:38 +08:00
shuai-xu
098e20d9b9 translate support second arg longer than the third 2024-12-02 12:28:37 +08:00
Yakov Olkhovskiy
a929dc7df5 fix 2024-12-01 19:16:41 +00:00
Yakov Olkhovskiy
90e1ca8cb0 add reference to relevant settings for mysql table function 2024-12-01 19:07:43 +00:00
Xavier Leune
777dd21640 (docs) Fix examples for replication 2024-11-30 23:40:12 +01:00
Paweł Kudzia
a81bacea75
Adding example for JSONExtract which refers to a nested entry in JSON
Hopefully this one prevents others from asking question like in https://github.com/ClickHouse/ClickHouse/issues/72530
2024-11-30 11:18:06 +01:00
Mikhail Artemenko
b81ee27750
Merge pull request #71406 from azat/automatic-external-aggregation
Automatic GROUP/ORDER BY to disk based on the memory usage
2024-11-29 12:27:43 +00:00
Miki Matsumoto
2df2320f61 set CheckInternalHash false cause always failing 2024-11-29 17:14:09 +09:00
Robert Schulze
4c36e8f427
Merge pull request #65519 from KevinyhZou/Fix_least_greast_diff
Make functions `least` and `greatest` ignore NULL arguments
2024-11-28 23:04:45 +00:00
Pablo Marcos
d8a235b785
Merge pull request #67733 from Zawa-ll/66073-system-load-primary-key-rebase
Added statement `SYSTEM LOAD PRIMARY KEY`
2024-11-28 16:02:31 +00:00
Azat Khuzhin
a8eaf3ecde Fix copy-paste typo for max_bytes_ratio_before_external_group_by doc
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-11-28 16:01:53 +01:00
Azat Khuzhin
bdb39a6fef Change logic of automatic ORDER/GROUP BY to be based on available memory
- remove max_bytes_ratio_before_external_{order,group_by}_for_server
- change the way max_bytes_ratio_before_external_{order,group_by} works

Note, that it is not enough to transform ratio to bytes in
executeQuery(), since in this case it will not work for merges and
internal queries, plus, you have to reset them for Distributed engine
and update it for Merge/View/...

This patch also introduce some helpers (see MemoryTrackerUtils) and
adjust Aggregator::Params constructor to accept Settings object instead
of tons of arguments.

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-11-28 16:01:53 +01:00
Azat Khuzhin
909eef401a Implement max_bytes_ratio_before_external_sort_for_server
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-11-28 16:01:53 +01:00
Azat Khuzhin
d5a990346c Implement max_bytes_ratio_before_external_group_by_for_server
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-11-28 16:01:53 +01:00
Azat Khuzhin
378b6c80a6 Automatic ORDER BY to disk (max_bytes_ratio_before_external_sort)
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-11-28 16:01:53 +01:00
Azat Khuzhin
a856c30c7c Automatic GROUP BY to disk (max_bytes_ratio_before_external_group_by)
Simpler then max_bytes_before_external_group_by, that allows you not to
think about memory consumption of the query, and can be set globally to
i.e. 0.5 so that the external aggregation will be enabled once the
memory usage reaches the 50%.

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-11-28 16:01:53 +01:00
Pablo Marcos
98ccca99f2 Add doc for SYSTEM LOAD PRIMARY KEY 2024-11-28 09:05:50 +00:00
kevinyhzou
a898a4e956 fix least/greatest 2024-11-28 12:27:21 +08:00
zhanglistar
ffc33fb7c1 delete toUnixTimestampEx 2024-11-28 11:39:43 +08:00
zhanglistar
7c24c69acf merge master 2024-11-28 10:43:16 +08:00
Denny Crane
c169dc9cde
Update index.md 2024-11-27 21:01:04 -04:00
erickurbanov
bb77b0f0c2 add documentation 2024-11-28 00:59:49 +03:00
Dmitry Novik
a38700e5d1
Merge pull request #72338 from Zaynulla/patch-1
window-functions doc typos fix
2024-11-27 15:57:48 +00:00
Yarik Briukhovetskyi
c2f74fa4aa
Init 2024-11-27 12:33:01 +01:00
Zaynulla
0a6965537a
window func doc teamMax output header fixed 2024-11-27 10:32:01 +03:00
Justin de Guzman
b6725d33d1
[Docs] Specify that Replicated is default engine for cloud 2024-11-26 16:57:49 -08:00
Alexey Milovidov
e3e6905638
Merge pull request #72339 from Zaynulla/patch-2
varPop doc latex formula added
2024-11-26 22:45:20 +00:00
Alexey Milovidov
0c02222173
Merge pull request #72390 from den-crane/Docs/leadInFrame
Doc. Add a warning to lagInFrame/leadInFrame
2024-11-26 22:45:10 +00:00
Robert Schulze
e9f083b26d
Merge pull request #71997 from allmazz/delete_old_mongodb_integration
Get rid of the legacy mongodb integration
2024-11-26 21:51:46 +00:00
robot-clickhouse
22f34a2fe9 Update version_date.tsv and changelogs after v24.11.1.2557-stable 2024-11-26 18:03:24 +00:00
Robert Schulze
934ae95e39
Fix bad conflict resolution 2024-11-26 17:34:27 +00:00
Robert Schulze
6a899f97eb
Merge remote-tracking branch 'ClickHouse/master' into delete_old_mongodb_integration 2024-11-26 17:33:41 +00:00
Raúl Marín
dd092411ff
Merge pull request #72455 from Algunenano/rename_setting
Rename allowed_feature_tier to allow_feature_tier
2024-11-26 15:54:01 +00:00
Denny Crane
5b1bdef54f
Update lagInFrame.md 2024-11-26 09:24:42 -04:00
Denny Crane
0ebee19f2e
Update docs/en/sql-reference/window-functions/leadInFrame.md
Co-authored-by: János Benjamin Antal <antaljanosbenjamin@users.noreply.github.com>
2024-11-26 09:21:58 -04:00
Robert Schulze
d9859c9186
Merge remote-tracking branch 'ClickHouse/master' into delete_old_mongodb_integration 2024-11-26 13:15:02 +00:00
Robert Schulze
45e1702f82
Merge remote-tracking branch 'ClickHouse/master' into delete_old_mongodb_integration 2024-11-26 12:44:06 +00:00
Pavel Kruglov
552d8b9699
Merge pull request #72294 from Avogar/json-beta
Move JSON/Dynamic/Variant types from experimental features to beta
2024-11-26 12:19:42 +00:00
Raúl Marín
b487f59496 Rename allowed_feature_tier to allow_feature_tier 2024-11-26 12:30:57 +01:00
Alexey Milovidov
3d65e72586
Update groupconcat.md 2024-11-26 05:49:53 +01:00
Alexey Milovidov
438b80e89b
Update groupconcat.md 2024-11-26 05:49:19 +01:00
Denny Crane
c1cefb0190 fix rank functions doc 2024-11-25 18:52:59 +00:00
Robert Schulze
17f27275ae
Merge remote-tracking branch 'ClickHouse/master' into delete_old_mongodb_integration 2024-11-25 17:23:15 +00:00
Robert Schulze
13687d681b
Merge pull request #72399 from rschu1ze/docs-ann-caption
Docs: Slightly better caption
2024-11-25 16:32:30 +00:00
Alexander Tokmakov
9a0d19257d
Merge pull request #65401 from kirillgarbar/attach_as_replicated
ATTACH AS [NOT] REPLICATED
2024-11-25 16:00:07 +00:00
Robert Schulze
0b3185fa13
Docs: Slightly better caption 2024-11-25 15:54:52 +00:00
Robert Schulze
a83da580ae
Merge pull request #72385 from rschu1ze/docs-ann
Docs: Update vector search docs
2024-11-25 14:40:28 +00:00
Yarik Briukhovetskyi
00c565961e
Merge pull request #70810 from yariks5s/maxTableName
Follow-up #65150
2024-11-25 13:55:12 +00:00
Robert Schulze
8f5a939d65
Try to fix link 2024-11-25 13:33:33 +00:00
Denny Crane
cc0f8271e2 add a warning to lagInFrame/leadInFrame 2024-11-25 13:14:55 +00:00
Robert Schulze
b6cc52410d
Fix spelling 2024-11-25 12:59:48 +00:00
Robert Schulze
46a3e3e795
Docs: Update vector search docs 2024-11-25 12:37:43 +00:00
Nikita Taranov
856f73a7c2
Fix typo in intersect.md 2024-11-25 12:40:34 +01:00
jotosoares
f753b16f9d
docs(view.md): remove experimental from title 2024-11-24 20:52:27 -03:00
Robert Schulze
a8899eb26d
Docs: update minimum required Clang version 2024-11-24 15:20:12 +00:00
Zaynulla
a64ed74297
varPop doc latex formula added
- There is a latex formula in the documentation of the [covarPop](https://clickhouse.com/docs/en/sql-reference/aggregate-functions/reference/covarpop) method, which is quite similar to varPop method.

- In Russian docs there are formulas both for [varPop](https://clickhouse.com/docs/ru/sql-reference/aggregate-functions/reference/varpop), and [covarPop](https://clickhouse.com/docs/ru/sql-reference/aggregate-functions/reference/covarpop).

Therefore, for consistency, it is suggested to add formula here too.
2024-11-23 15:52:48 +03:00
Zaynulla
19556968bc
window-functions doc typos fix
- A forgotten closing parenthesis ] has been added.
- The alias "teamMax" is less confusing for max (salary) than "teamAvg". This is probably the result of copying & pasting from the previous part of the document.
2024-11-23 14:43:02 +03:00
Raúl Marín
52391a8271
Revert "Set enable_http_compression default value to 1" 2024-11-22 22:51:28 +01:00
avogar
bd3f300220 Move JSON/Dynamic/Variant types from experimental to beta 2024-11-22 17:33:37 +00:00
Vladimir Cherkasov
26de447039
Merge pull request #70603 from zwy991114/check-table-structure-completely-setting
Add setting enforce_index_structure_match_on_partition_manipu..
2024-11-22 16:30:34 +00:00
robot-clickhouse
07ecc200c3 Update version_date.tsv and changelogs after v24.8.8.17-lts 2024-11-22 13:08:21 +00:00
robot-clickhouse
081aae87db Update version_date.tsv and changelogs after v24.10.3.21-stable 2024-11-22 11:14:16 +00:00
pufit
344a04f4b4 Merge branch 'master' into add-syntax-alter-user-modify-settings 2024-11-21 23:37:15 -05:00
Alexey Milovidov
1d453fbc85
Merge pull request #72020 from ClickHouse/casted
Fix a problem with cast
2024-11-22 00:49:47 +00:00
divanik
8459148313 Resolve issues 2024-11-21 18:39:38 +00:00
Yarik Briukhovetskyi
913361a641
Merge branch 'ClickHouse:master' into maxTableName 2024-11-21 18:39:13 +01:00
Konstantin Bogdanov
288edbf35a
Merge pull request #70414 from ClickHouse/clang-19
Use `clang-19`
2024-11-21 15:53:41 +00:00
divanik
438aa415a6 Resolve issues 2024-11-21 15:42:47 +00:00
Denny Crane
7b34b0eec5
Update json-functions.md 2024-11-21 10:10:44 -04:00
Denny Crane
c8c443f127
Update json-functions.md 2024-11-21 10:03:38 -04:00
Denny Crane
1cc687f3b1
Update json-functions.md 2024-11-21 09:54:57 -04:00
Кирилл Гарбар
ddb8f3d57f Fix docs and build 2024-11-21 16:48:52 +03:00
Alexey Milovidov
ad4b201892
Merge branch 'master' into casted 2024-11-21 06:04:02 +01:00
Alexey Milovidov
25bd73ea5e
Merge pull request #72023 from ClickHouse/fix-bind
Fix comments
2024-11-21 05:03:24 +00:00
Konstantin Bogdanov
b2c81981fb
Use clang-19 2024-11-20 23:08:47 +01:00
Mikhail Artemenko
44b4bd38b9
Merge pull request #72045 from ClickHouse/issues/70174/cluster_versions
Enable cluster table functions for DataLake Storages
2024-11-20 21:22:37 +00:00
Alexander Tokmakov
aed4edd941
Merge branch 'master' into attach_as_replicated 2024-11-20 19:47:00 +01:00
Kseniia Sumarokova
c6a10151d9
Merge pull request #71947 from ClickHouse/fix_weird_problem
Fix weird case when `s3`/`s3Cluster` return incomplete result or exception
2024-11-20 16:37:58 +00:00
Raúl Marín
3ae055c74e
Merge pull request #71841 from Algunenano/experimental_tiers_switch
Implement `allowed_feature_tier` as a global switch to  disable all experimental / beta features
2024-11-20 12:39:06 +00:00
Mikhail Artemenko
4ccebd9a24 fix syntax for iceberg in docs 2024-11-20 11:15:39 +00:00
Nikolai Kochetov
bc35be4747
Merge branch 'master' into implement-23210 2024-11-20 13:17:10 +03:00
pufit
07be02d297
Merge pull request #70332 from zvonand/ldap-remote-roles
Passing external user roles from query originator to other nodes
2024-11-19 23:06:45 +00:00
Nikita Taranov
5aeeec0f42
Merge branch 'master' into fix_weird_problem 2024-11-19 19:48:10 +01:00
Vitaly Baranov
353ff951aa
Merge pull request #68885 from Unalian/feat-67772
Add CHECK GRANT query
2024-11-19 16:09:30 +00:00
Mikhail Artemenko
a367de9977 add docs 2024-11-19 12:49:59 +00:00