Sergei Trifonov
696ab745aa
Doc. Update query-complexity.md
2023-09-20 07:51:27 +02:00
Denny Crane
9462b58616
Update query-complexity.md
2023-09-08 13:32:24 -03:00
Denny Crane
bb3c6ff682
Update query-complexity.md
2023-09-08 13:30:13 -03:00
Denny Crane
b239d409b1
Update query-complexity.md
2023-09-08 13:28:09 -03:00
Sean Haynes
77dd869414
Add ability to log when max_partitions_per_insert_block is reached ( #50948 )
...
* Add ability to log when max_partitions_per_insert_block is reached
There's plenty of reasons to drop max_partitions_per_insert_block
down from it's default of 100, with the main one being even touching
remotely close to this number of partitions will create a lot of
merge activity that can de-stabilise a cluster.
This commit adds the ability to log when the above limit is reached
rather than throw an exception, so that you can gauge the impact on
users when dropping this value down.
* Update docs/ru/operations/settings/query-complexity.md
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
* Update docs/ru/operations/settings/query-complexity.md
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
* Update docs/ru/operations/settings/query-complexity.md
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
---------
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
2023-08-07 23:28:19 +02:00
Alexey Gerasimchuck
e58b3cfd32
Implemented max sessions for user
2023-07-30 22:09:03 +00:00
Dan Roscigno
aec97033c9
Merge pull request #48940 from ClickHouse/DanRoscigno-patch-5
...
Update query-complexity.md
2023-04-20 10:56:31 -04:00
Robert Schulze
c406663442
Docs: Replace annoying three spaces in enumerations by a single space
2023-04-19 15:56:55 +00:00
Dan Roscigno
df70f6985c
Update query-complexity.md
...
The docs say that max_memory_usage is set to 10GB in the default config, but max_memory_usage does not appear in the default config, so the default is unlimited.
2023-04-19 09:16:22 -04:00
DanRoscigno
d0a55f6dc9
doc grace_hash algorithm for join
2023-01-13 13:17:03 -05:00
Ivan Blinkov
61c2f23713
Remove leftover empty lines at the end of markdown files
2023-01-09 15:15:18 +01:00
Ivan Blinkov
b7e082d033
Remove "Original article links"
2023-01-09 15:13:36 +01:00
vdimir
0178307c27
Followup for TemporaryDataOnDisk
2022-10-12 15:25:23 +02:00
DanRoscigno
5b5fcc56aa
add slugs
2022-08-28 10:53:34 -04:00
rfraposa
869967de41
Remove H1 anchor tags from docs
2022-06-02 04:55:18 -06:00
rfraposa
8f01fe9c49
Revised /en folder
2022-04-09 07:34:21 -06:00
rfraposa
5250d9ad11
Removed /ja folder, cleaned up /ru markdown
2022-04-09 07:29:05 -06:00
Alexey Milovidov
9854b55835
Revert "Format changes for new docs"
2022-04-04 02:05:35 +03:00
rfraposa
01ec63c909
Updates /operations docs
2022-03-29 20:38:50 -06:00
Ivan Blinkov
f429db1ee9
find . -type f -name '*.md'| xargs -I{} perl -pi -e 's| https://clickhouse.tech | https://clickhouse.com |g' {}
2021-09-19 23:05:54 +03:00
Alexey Milovidov
d87d833691
Remove trailing whitespaces from docs
2021-07-29 18:20:55 +03:00
Romain Neutron
7b515c7235
Avoid short syntax
2021-05-27 21:44:11 +02:00
Alexey Milovidov
db4db42b65
Fix broken links in docs
2020-10-13 20:23:29 +03:00
roman
b41421cb1c
[settings]: introduce new query complexity settings for leaf-nodes
...
The new setting should allow to control query complexity on leaf nodes
excluding the final merging stage on the root-node. For example, distributed
query that reads 1k rows from 5 shards will breach the `max_rows_to_read=5000`,
while effectively every shard reads only 1k rows. With setting `max_rows_to_read_leaf=1500`
this limit won't be reached and query will succeed since every shard reads
not more that ~1k rows.
2020-09-17 10:37:05 +01:00
Ivan Blinkov
258d2fd499
[docs] split various kinds of CREATE queries into separate articles ( #12328 )
...
* normalize
* split & adjust links
* re-normalize
* adjust ru links
* adjust ja/tr links
* partially apply e0d19d2aea
* reset contribs
2020-07-09 18:10:35 +03:00
Ilya Yatsishin
5a4d9fb9ae
Merge pull request #12070 from ClickHouse/filimonov-max_rows_to_read-threads
...
max_rows_to_read remove note about 'applied on each thread separately'
2020-07-03 17:45:47 +03:00
BayoNet
03a643e9d3
DOCS-609: max_server_memory_usage ( #11771 )
...
* Revolg DOCSUP-1000 add max server memory usage setting (#125 )
* Add max_server_memory_usage setting, delete max_memory_usage_for_all_queries setting.
* Syntax fixed
* Apply suggestions from code review
Co-authored-by: BayoNet <da-daos@yandex.ru>
* Doc for the max_server_memory_usage setting. Updates.
Co-authored-by: Olga Revyakina <revolg@yandex-team.ru>
Co-authored-by: BayoNet <da-daos@yandex.ru>
* CLICKHOUSEDOCS-609: Minor fixes.
* CLICKHOUSEDOCS-609: Actualized position of the setting.
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
Co-authored-by: Olga Revyakina <revolg@yandex-team.ru>
Co-authored-by: Sergei Shtykov <bayonet@yandex-team.ru>
2020-07-01 16:08:16 +03:00
filimonov
b2df6accad
Update query-complexity.md
...
Remove a note about read limits applied on threads level.
2020-07-01 14:34:24 +02:00
Ivan Blinkov
7170f3c534
[docs] split aggregate function and system table references ( #11742 )
...
* prefer relative links from root
* wip
* split aggregate function reference
* split system tables
2020-06-18 11:24:31 +03:00
Ivan Blinkov
cd14f9ebcb
SQL reference refactoring ( #10857 )
...
* split up select.md
* array-join.md basic refactoring
* distinct.md basic refactoring
* format.md basic refactoring
* from.md basic refactoring
* group-by.md basic refactoring
* having.md basic refactoring
* additional index.md refactoring
* into-outfile.md basic refactoring
* join.md basic refactoring
* limit.md basic refactoring
* limit-by.md basic refactoring
* order-by.md basic refactoring
* prewhere.md basic refactoring
* adjust operators/index.md links
* adjust sample.md links
* adjust more links
* adjust operatots links
* fix some links
* adjust aggregate function article titles
* basic refactor of remaining select clauses
* absolute paths in make_links.sh
* run make_links.sh
* remove old select.md locations
* translate docs/es
* translate docs/fr
* translate docs/fa
* remove old operators.md location
* change operators.md links
* adjust links in docs/es
* adjust links in docs/es
* minor texts adjustments
* wip
* update machine translations to use new links
* fix changelog
* es build fixes
* get rid of some select.md links
* temporary adjust ru links
* temporary adjust more ru links
* improve curly brace handling
* adjust ru as well
* fa build fix
* ru link fixes
* zh link fixes
* temporary disable part of anchor checks
2020-05-15 07:34:54 +03:00
BayoNet
dba72d73fe
DOCS-624: Fixing links to nowhere ( #10675 )
...
* enbaskakova-DOCSUP-652 (#101 )
* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"
* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"
* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"
* Update docs/en/sql_reference/aggregate_functions/combinators.md
Co-Authored-By: BayoNet <da-daos@yandex.ru>
* Update docs/en/sql_reference/aggregate_functions/combinators.md
Co-Authored-By: BayoNet <da-daos@yandex.ru>
* Update docs/en/sql_reference/aggregate_functions/combinators.md
Co-Authored-By: BayoNet <da-daos@yandex.ru>
* Update docs/en/sql_reference/aggregate_functions/combinators.md
Co-Authored-By: BayoNet <da-daos@yandex.ru>
* Update docs/en/sql_reference/aggregate_functions/combinators.md
Co-Authored-By: BayoNet <da-daos@yandex.ru>
* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"
* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"
* "docs(orNull&orDefault): Functions 'orNull&orDefault' have been edited"
Co-authored-by: elenbaskakova <elenbaskakova@yandex-team.ru>
Co-authored-by: BayoNet <da-daos@yandex.ru>
* Revert "enbaskakova-DOCSUP-652 (#101 )" (#107 )
This reverts commit 639fee7610
.
* CLICKHOUSEDOCS-624: Fixed links. Was 60, became 13.
* CLICKHOUSEDOCS-624: Finished fix links in Enlish version.
* CLICKHOUSEDOCS-624: Fixed RU links
Co-authored-by: elenaspb2019 <47083263+elenaspb2019@users.noreply.github.com>
Co-authored-by: elenbaskakova <elenbaskakova@yandex-team.ru>
Co-authored-by: Sergei Shtykov <bayonet@yandex-team.ru>
2020-05-06 09:13:29 +03:00
Ivan Blinkov
d91c97d15d
[docs] replace underscores with hyphens ( #10606 )
...
* Replace underscores with hyphens
* remove temporary code
* fix style check
* fix collapse
2020-04-30 21:19:18 +03:00