Commit Graph

1646 Commits

Author SHA1 Message Date
gyuton
44a793b01a
Apply suggestions from code review
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-06-22 12:17:22 +03:00
George
eaa0f35811 Documented setting flatten_nested 2021-06-22 03:23:33 +03:00
Anton Popov
d8b6f15ef4
Merge pull request #23027 from azat/distributed-push-down-limit
Add ability to push down LIMIT for distributed queries
2021-06-20 23:08:50 +03:00
AnaUvarova
68b20a934a
DOCSUP-6543: Edit and translate Show Clusters and MergeTree (#24130)
* +

* ready for review

* Update docs/ru/sql-reference/statements/show.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update merge-tree-settings.md

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update merge-tree-settings.md

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update docs/ru/operations/settings/merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>

* Update merge-tree-settings.md

* about fsync

* Update merge-tree-settings.md

* Update merge-tree-settings.md

* Update merge-tree-settings.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-06-15 15:21:44 +03:00
Mikhail
d08e6ebc80 Added setting doc 2021-06-15 00:16:30 +03:00
George
77e048977b updated settings.md 2021-06-14 19:02:04 +03:00
Vladimir
494107e437
Merge pull request #25130 from gyuton/gyuton-DOCSUP-8425-Document-max_distributed_depth-setting 2021-06-12 22:17:04 +03:00
Vitaly Baranov
4989f16ff9
Merge pull request #24458 from sevirov/sevirov-DOCSUP-9599-edit_and_translate_to_russian_ldap
DOCSUP-9599: Edit and translate to Russian (LDAP)
2021-06-10 20:35:29 +03:00
gyuton
9297a47f36
typo 2021-06-10 18:22:17 +03:00
adevyatova
4b8650a180 update 2021-06-10 11:54:51 +00:00
gyuton
938f41c5a5
Apply suggestions from code review
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-06-09 20:18:37 +03:00
George
ee976cd739 First draft 2021-06-09 16:57:07 +03:00
Azat Khuzhin
18e8f0eb5e Add ability to push down LIMIT for distributed queries
This way the remote nodes will not need to send all the rows, so this
will decrease network io and also this will make queries w/
optimize_aggregation_in_order=1/LIMIT X and w/o ORDER BY faster since it
initiator will not need to read all the rows, only first X (but note
that for this you need to your data to be sharded correctly or you may
get inaccurate results).

Note, that having lots of processing stages will increase the complexity
of interpreter (it is already not that clean and simple right now).

Although using separate QueryProcessingStage looks pretty natural.

Another option is to make WithMergeableStateAfterAggregation always, but
in this case you will not be able to disable only this optimization,
i.e. if there will be some issue with it.

v2: fix OFFSET
v3: convert 01814_distributed_push_down_limit test to .sh and add retries
v4: add test with OFFSET
v5: add new query stage into the bash completion
v6/tests: use LIMIT O,L syntax over LIMIT L OFFSET O since it is broken in ANTLR parser
          https://clickhouse-test-reports.s3.yandex.net/23027/a18a06399b7aeacba7c50b5d1e981ada5df19745/functional_stateless_tests_(antlr_debug).html#fail1
v7/tests: set use_hedged_requests to 0, to avoid excessive log entries on retries
          https://clickhouse-test-reports.s3.yandex.net/23027/a18a06399b7aeacba7c50b5d1e981ada5df19745/functional_stateless_tests_flaky_check_(address).html#fail1
2021-06-09 02:29:50 +03:00
Dmitriy
c56a1eb7b6 Correction of the translation
Поправил перевод.
2021-06-08 23:36:57 +03:00
adevyatova
a51b9d82a5 update 2021-06-05 08:10:37 +00:00
adevyatova
e3ead7e676 Add en docs 2021-06-05 06:46:30 +00:00
alesapin
fe49574e41
Merge pull request #24764 from adevyatova/annadevyatova-DOCSUP-8347-non_replicated
DOCSUP-8347: Document the non_replicated_deduplication_window setting
2021-06-03 14:19:59 +03:00
adevyatova
e05102f545 fixed 2021-06-03 09:31:45 +00:00
adevyatova
42607f4ea4 fix 2021-06-02 07:55:26 +00:00
adevyatova
01b3b0c2f9 update 2021-06-02 07:53:11 +00:00
adevyatova
61ed3a87a3 update 2021-06-02 07:46:44 +00:00
Kseniia Sumarokova
67e2695e8b
Merge pull request #24548 from kirillikoff/DOCSUP-9474-document-table-comments
Docsup 9474: document table comments
2021-05-31 11:11:27 +03:00
Anna
ab4161bd66
Merge branch 'master' into annadevyatova-DOCSUP-8347-non_replicated 2021-05-30 16:05:27 +03:00
adevyatova
4a60e3545e add en,ru docs 2021-05-30 13:01:25 +00:00
tavplubix
fe4b137257
Merge pull request #24761 from adevyatova/annadevyatova-DOCSUP-8823-allow
DOCSUP-8823: Document the allow_floating_point_partition_key setting
2021-05-30 15:05:43 +03:00
adevyatova
ee25971426 en, ru docs 2021-05-30 09:24:41 +00:00
Tatiana Kirillova
ee049678a1 Translation into Russian and system.tables 2021-05-29 16:42:21 +03:00
Kruglov Pavel
5ce669109e
Merge pull request #24459 from adevyatova/annadevyatova-DOCSUP-8711-sumCount
DOCSUP-8711: Document the sumCount aggregate function and optimize_fuse_sum_count_avg setting
2021-05-28 15:58:30 +03:00
tavplubix
e82196f9d4
Merge pull request #24503 from sevirov/sevirov-DOCSUP-9597-add_thread_name_and_support_datetime64_for_ver
DOCSUP-9597: Add thread_name in system.stack_trace and add support DateTime64 for ver parameter
2021-05-28 00:44:58 +03:00
alexey-milovidov
e427d91dd6
Merge pull request #24586 from romainneutron/polish-english-doc
Polish english doc
2021-05-28 00:16:16 +03:00
Kseniia Sumarokova
ee4f42a991
Merge pull request #24430 from lehasm/alexey-sm-DOCSUP-8939-document-insert_null_as_default
DOCSUP-8939: document the insert_null_as_default setting
2021-05-27 23:24:16 +03:00
Romain Neutron
d3be14e639
Fix ClickHouse characters case 2021-05-27 21:49:41 +02:00
Romain Neutron
7b515c7235
Avoid short syntax 2021-05-27 21:44:11 +02:00
Dmitriy
f68a6af5f0 Update examples
Обновил примеры.
2021-05-27 20:01:56 +03:00
adevyatova
4b959ac8e4 update 2021-05-27 07:37:50 +00:00
Anna
a76e630f61
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-26 18:46:47 +03:00
Anna
d124bad0dc
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-26 18:46:40 +03:00
Alexey
07aa058878 Description of input_format_null_as_default is extended.
Sentences reordered.
2021-05-26 13:03:46 +00:00
lehasm
f1b98e6928
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-26 09:44:09 +03:00
Dmitriy
9a963a7a1f Add thread_name and support DateTime64
Добавил столбец thread_name и поддержку типа данных DateTime64.
2021-05-26 00:39:34 +03:00
Alexey
59442ac3d1 input_format_null_as_default description
is made similar to insert_null_as_default
2021-05-25 17:28:21 +00:00
alesapin
0597211605
Merge pull request #24441 from adevyatova/annadevyatova-DOCSUP-8462-pool-size
DOCSUP-8462: Document the background_fetches_pool_size setting
2021-05-25 14:34:06 +03:00
lehasm
592073ec77
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-25 14:10:05 +03:00
lehasm
c2cb50f3be
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-25 14:09:55 +03:00
lehasm
a4dacc4875
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-25 11:42:29 +03:00
adevyatova
3c171f3344 update settings.md 2021-05-24 19:35:31 +00:00
Anna
a21398c839
Merge branch 'master' into annadevyatova-DOCSUP-8711-sumCount 2021-05-24 20:59:08 +03:00
adevyatova
634e18f7f4 Add setting desc 2021-05-24 17:44:53 +00:00
Dmitriy
8c57f0d50d Edit and translate to Russian
Выполнил перевод на русский язык.
2021-05-24 20:24:40 +03:00
Alexey
aa7d625428 Description of input_format_null_as_default changed a bit 2021-05-24 15:32:55 +00:00
Alexey
715c88e5fa Returned INSERT ... VALUES statement.
'non-Nullable' changed to 'not nullable'
2021-05-24 15:26:23 +00:00
Nicolae Vartolomei
b3c875de72 Document new include element 2021-05-24 14:26:43 +01:00
BoloniniD
199393a37a Fixed link to config example in config-files.md 2021-05-24 13:48:45 +03:00
adevyatova
5ac2b846a5 Add en,ru desc 2021-05-24 08:53:40 +00:00
lehasm
f32b0dc886
Update docs/en/operations/settings/settings.md
Co-authored-by: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com>
2021-05-24 08:21:03 +03:00
lehasm
97415e931e
Update docs/en/operations/settings/settings.md
Co-authored-by: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com>
2021-05-24 08:12:17 +03:00
Alexey
a3640cd7ea Description updated 2021-05-23 20:02:17 +00:00
BoloniniD
b949b4384b Fixes after review 2021-05-23 13:36:49 +03:00
BoloniniD
6c2e02461d Added link to config-example.yaml 2021-05-22 21:34:19 +03:00
BoloniniD
8e6fabd674 Fixes for .md, preparing to add config-example.yaml 2021-05-22 19:42:09 +03:00
BoloniniD
3165db2799 Wrote first version of docs for YAML configuration 2021-05-22 11:04:19 +03:00
Alexander Kuzmenkov
e9b69bbd70
Merge pull request #23906 from azat/fix-distributed_group_by_no_merge
distributed_group_by_no_merge fixes
2021-05-19 16:16:08 +03:00
Vitaliy Zakaznikov
03ebd18d01 Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into ldap-user-dn-detection 2021-05-18 14:08:28 -04:00
tavplubix
6936274398
Merge pull request #24106 from adevyatova/annadevyatova-DOCSUP-8026-replicated
DOCSUP-8026: Document the settings for customizing timeouts
2021-05-16 23:10:47 +03:00
Anna
e0d04acbd7
Update settings.md 2021-05-16 21:11:42 +03:00
Anna
7071894081
Update settings.md 2021-05-16 21:10:13 +03:00
Anna
c605b199ee
Update docs/en/operations/settings/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-05-16 21:06:07 +03:00
Anna
1737be6710
Update merge-tree-settings.md 2021-05-16 21:05:41 +03:00
Anna
b32ac3a6f4
Update docs/en/operations/settings/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-05-16 21:04:07 +03:00
Anna
ae84e5a673
Update docs/en/operations/settings/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-05-16 21:03:41 +03:00
Anna
3783e0c483
Update docs/en/operations/settings/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-05-16 21:03:17 +03:00
Anna
6d49acc7ac
Update docs/en/operations/settings/merge-tree-settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-05-16 21:03:08 +03:00
Anna
88f6687c9d
Update docs/en/operations/settings/merge-tree-settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-05-16 21:02:54 +03:00
Azat Khuzhin
a44ddd2064 Update distributed_group_by_no_merge description 2021-05-15 15:03:13 +03:00
alesapin
a2b0fa6ed4
Merge pull request #23626 from olgarev/revolg-DOCSUP-8776-backslash_option
DOCSUP-8776: Docs for clickhouse-format
2021-05-14 22:06:35 +03:00
alesapin
4fa9649fa0
Update clickhouse-format.md 2021-05-14 19:22:24 +03:00
Anna
e92e66c01e
Merge branch 'master' into annadevyatova-DOCSUP-8026-replicated 2021-05-13 20:49:19 +03:00
adevyatova
6100245f75 update 2021-05-13 17:45:26 +00:00
olgarev
447c73ce14
Apply suggestions from code review
Co-authored-by: alesapin <alesapin@gmail.com>
2021-05-12 15:11:44 +03:00
Azat Khuzhin
e08389b2d2 Add interface for rate of found elements in the dictionaries
- IDictionary abstraction
- skeleton implementation into each dictionary
- system.dictionaries.found_rate
- documentation changes
2021-05-08 17:09:01 +03:00
hexiaoting
a1d521902c Merge remote-tracking branch 'origin/master' into dev-continue-sundyli 2021-05-07 14:22:53 +08:00
alexey-milovidov
0448c412bf
Update access-rights.md 2021-05-06 16:27:22 +03:00
Maksim Kita
6105a19357
Merge pull request #23869 from kirillikoff/kirillikoff-DOCSUP-8495
DOCSUP-8495: Documented http-max-uri-size
2021-05-05 15:27:42 +03:00
alexey-milovidov
bf8c28a17f
Merge pull request #23885 from azat/dist-broken-metrics
Add metrics for broken files during async distributed sends
2021-05-05 13:41:15 +03:00
Oleg Strokachuk
04e3fa1834 Doc. Fix title link for send_crash_reports for en and ru 2021-05-05 11:33:38 +03:00
Azat Khuzhin
74269882f7 Add broken_data_files/broken_data_compressed_bytes into distribution_queue 2021-05-04 22:48:07 +03:00
kirillikoff
0e92cc06df
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-05-04 15:09:15 +03:00
Tatiana Kirillova
c763a5c33f max-uri-size 2021-05-03 20:16:44 +03:00
olgarev
bfb5ffc398
Merge branch 'master' into revolg-DOCSUP-8776-backslash_option 2021-04-30 10:07:49 +03:00
Nikolai Kochetov
2a58ebd3d1
Merge pull request #22979 from michon470/kuryatnikovm-DOCSUP-8022-prefer_column_name_to_alias
DOCSUP-8022: setting prefer_column_name_to_alias documentated
2021-04-29 12:01:01 +03:00
olgarev
96f739025c
Apply suggestions from code review
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-04-29 06:27:21 +03:00
Kruglov Pavel
a4a2a61eed
Merge pull request #23593 from sevirov/sevirov-DOCSUP-7574-add_columns_in_the_clusters_table
DOCSUP-7574: Add slowdown_count and show actual errors_count in the system.clusters table
2021-04-26 14:09:53 +03:00
Dmitriy
7b17a07915 Delete the note
Удалил примечание.
2021-04-26 14:06:45 +03:00
Mikhail
b76924323d fix 2021-04-26 03:13:10 +03:00
michon470
1d2184e830
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-26 03:00:25 +03:00
michon470
1540ac1f81
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-26 02:59:11 +03:00
michon470
7b947140b9
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-26 02:59:04 +03:00
michon470
bb03d7ab3f
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-26 02:58:57 +03:00
Mikhail
8b714579ed Revert "Revert "Merge branch 'master' into kuryatnikovm-DOCSUP-8022-prefer_column_name_to_alias""
This reverts commit 7005feddf2.
2021-04-26 02:36:27 +03:00
Mikhail
7005feddf2 Revert "Merge branch 'master' into kuryatnikovm-DOCSUP-8022-prefer_column_name_to_alias"
This reverts commit 74190165ff, reversing
changes made to 51d4e4d307.
2021-04-26 02:03:32 +03:00
michon470
74190165ff
Merge branch 'master' into kuryatnikovm-DOCSUP-8022-prefer_column_name_to_alias 2021-04-26 01:56:24 +03:00
adevyatova
e694af921d add settings desc 2021-04-25 20:04:42 +00:00
Dmitriy
ad59cfb48f Merge branch 'sevirov-DOCSUP-7574-add_columns_in_the_clusters_table' of https://github.com/sevirov/ClickHouse into sevirov-DOCSUP-7574-add_columns_in_the_clusters_table 2021-04-25 19:12:44 +03:00
Dmitriy
fa0d815297 Add the note
Оформил примечание.
2021-04-25 19:12:07 +03:00
sevirov
ac059d5247
Update docs/en/operations/system-tables/clusters.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-04-25 19:01:19 +03:00
michon470
2897635869
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-25 13:45:06 +03:00
michon470
a4904368f7
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-25 13:44:34 +03:00
Olga Revyakina
7b0cea4573 Minor fixes 2021-04-25 11:47:05 +03:00
Olga Revyakina
4d2fd45660 Formatting 2021-04-25 10:21:46 +03:00
Olga Revyakina
64e85c3deb Another fix in md 2021-04-25 10:17:14 +03:00
Olga Revyakina
e815f90b53 Fix 2021-04-25 10:09:43 +03:00
Olga Revyakina
306bfeb576 clickhouse-format utility and links in index file 2021-04-25 09:58:57 +03:00
Dmitriy
19d05b0db0 Add columns
Добавил недостающие столбцы и привел в порядок описание, добавив ссылки и обновив примеры.
2021-04-24 18:44:00 +03:00
michon470
0e2189ed08
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-23 10:57:35 +03:00
michon470
df3e457f44
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-23 10:57:05 +03:00
Anna
834555e951
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-23 09:53:38 +03:00
Anna
2fd0147799
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-23 09:53:27 +03:00
Anna
ca4ad5209e
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-23 09:51:55 +03:00
Anna
8d3808bd7f
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-23 09:51:03 +03:00
adevyatova
b0ccc06a90 add ru docs 2021-04-22 18:53:22 +00:00
Anna
6abd55880e
Merge branch 'master' into annadevyatova-DOCSUP-5911-limit 2021-04-22 21:31:40 +03:00
adevyatova
4b49e9259b docs for limit and offset settings 2021-04-22 18:27:06 +00:00
Mikhail
0cfed0891b Setting overview expanded 2021-04-22 14:30:54 +03:00
alexey-milovidov
5e326a9824
Update settings.md 2021-04-22 08:56:21 +03:00
Alexey Milovidov
8cb0e5579a Remove gcc from docs 2021-04-22 04:20:03 +03:00
tavplubix
b1081bcf54
Merge pull request #23316 from sevirov/sevirov-DOCSUP-8233-edit_and_translate_replication
DOCSUP-8233: Edit and translate to Russian
2021-04-21 22:47:20 +03:00
sevirov
176ca58e72
Update docs/en/operations/system-tables/replication_queue.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-04-21 19:30:04 +03:00
alexey-milovidov
022b2e918b
Merge pull request #21319 from ka1bi4/romanzhukov-DOCSUP-7086-add-s3-translation-ru
DOCSUP-7086: Edit and translate to Russian (s3 and updating ClickHouse)
2021-04-20 23:37:42 +03:00
Dmitriy
f1aef7e9a2 Edit and translate to Russian
Поправил английскую версию и выполнил перевод на русский язык.
2021-04-19 21:01:38 +03:00
olgarev
6abe37b13e
Apply suggestions from code review
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-04-19 20:04:51 +03:00
Denis Glazachev
902d519b40 Merge branch 'master' into ldap-user-dn-detection
* master: (694 commits)
  Fix integration test test_storage_kafka failed error
  Fix test 00163_column_oriented_formats failed error
  Read ORC file by stripe to reduce memory cost
  Function toDateTime decimal overflow ubsan fix
  Revert "[RFC] Fix memory tracking with min_bytes_to_use_mmap_io"
  Zlib use attribute constructor for functable initialization
  Translate to Russian (clickhouse-client documentation)
  Simple key dictionary primary key wrong order fix
  Disable hedged requests
  Added integration test
  Revert "Function `arrayFold` for folding over array with accumulator"
  Fix documentation for the GRANT command.
  Added system query reload model
  Make function `unhex` case insensitive for compatibility
  Improve documentation for CREATE ROW POLICY command #2.
  Add exception message
  Fix tidy
  Fix waiting for all connections closed on shutdown.
  Disable postgresql_port in perf tests
  Mark 01605_adaptive_granularity_block_borders as long
  ...
2021-04-19 18:36:07 +04:00
Olga Revyakina
310632d602 One more link added 2021-04-18 02:05:32 +03:00
Olga Revyakina
8e573c41e6 Start 2021-04-18 01:47:43 +03:00
Roman Bug
0dbc167cb3
Merge branch 'master' into romanzhukov-DOCSUP-7086-add-s3-translation-ru 2021-04-15 15:47:12 +03:00
alexey-milovidov
d239c66fd3
Merge pull request #21511 from azat/optimize_skip_unused_shards-improvement
Rewrite IN in query for remote shards to exclude values that do not belong to the shard
2021-04-13 01:18:11 +03:00
Azat Khuzhin
fbb386dca5 Rewrite IN in query for remote shards to exclude values that does not belongs to shard
v2: fix optimize_skip_unused_shards_rewrite_in for sharding_key wrapped into function
v3: fix column name for optimize_skip_unused_shards_rewrite_in
v4: fix optimize_skip_unused_shards_rewrite_in with Null
v5:
- squash with Remove query argument for IStreamFactory::createForShard()
- use proper column after function execution (using sharding_key_column_name)
- update the test reference since (X) now is tuple(X)
2021-04-12 10:37:28 +03:00
michon470
0ef5f6b9b2
Merge branch 'master' into kuryatnikovm-DOCSUP-8022-prefer_column_name_to_alias 2021-04-12 00:01:06 +03:00
Tatiana Kirillova
139ab25477 Translation into Russian 2021-04-11 20:33:42 +03:00
Mikhail
d2c828871a Update settings.md 2021-04-11 19:58:01 +03:00
alexey-milovidov
ea76e64f6b
Merge pull request #22926 from ClickHouse/Renew-ZooKeeper-configuration
Renew ZooKeeper example configuration in docs
2021-04-11 13:31:04 +03:00
alexey-milovidov
f33498c73b
Merge pull request #22941 from kirillikoff/kirillikoff-DOCSUP-6704
DOCSUP-6704: Documented the inactive_parts_to
2021-04-10 23:05:20 +03:00
alexey-milovidov
2785fa9e52
Fix Jinja templates that are being used for unknown reasons 2021-04-10 22:57:15 +03:00
alexey-milovidov
9023dbc71b
Update tips.md 2021-04-10 17:29:22 +03:00
Tatiana Kirillova
7b7018e476 Description the inactive_parts_to_delay_insert and inactive_parts_to_throw_insert settings 2021-04-09 20:43:57 +03:00
alexey-milovidov
29980d2cc3
Update tips.md 2021-04-09 13:00:09 +03:00
alexey-milovidov
023f9d5566
Update tips.md 2021-04-09 12:47:47 +03:00
Maksim Kita
8d3ce5ef8d
Update tips.md 2021-04-08 22:30:36 +03:00
Maksim Kita
9c39eab57a Documentation updated zookeeper configuration 2021-04-08 22:00:52 +03:00
Denis Glazachev
9a5032585f Merge branch 'master' into ldap-user-dn-detection
* master: (860 commits)
  Update version_date.tsv after release 21.2.8.31
  Update version_date.tsv after release 21.3.5.42
  Fixed typos
  Add metric to track how much time is spend during waiting for Buffer layer lock
  Safer SCOPE_EXIT
  Add SCOPE_EXIT_SAFE/SCOPE_EXIT_MEMORY_SAFE helpers
  Lock MEMORY_LIMIT_EXCEEDED in ThreadStatus::detachQuery()
  Update CHANGELOG.md
  Reset timeouts to default
  Add Third party service info
  Disable table function view in expression (#21465)
  fix test 01702_system_query_log
  Remove strange fsync on coordination logs rotation
  add test
  MemoryStorage sync comments and code
  Fix typos
  Support alter setting
  Handle not plain where tree in StorageMerge modifySelect
  Updated test
  Change Aggregatingmergetree to AggregatingMergeTree in docs
  ...
2021-04-07 16:27:52 +04:00
alexey-milovidov
cb6097e8ae
Merge pull request #21559 from ka1bi4/romanzhukov-DOCSUP-7045-https-replication
DOCSUP-7045: Edit and translate to Russian (Upgrading CH and https interserver replication)
2021-04-07 07:24:44 +03:00
Kseniia Sumarokova
32cf4e378e
Merge pull request #22623 from olgarev/revolg-DOCSUP-8221-check_query_single_value_result
DOCSUP-8221: check_query_single_value_result setting
2021-04-06 00:22:37 +03:00
alexey-milovidov
af9d5440bd
Update trace_log.md 2021-04-05 00:18:48 +03:00
olgarev
a6b6734231
Apply suggestions from code review
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-04-04 22:39:18 +03:00
Olga Revyakina
b980120042 First commit 2021-04-04 21:27:00 +03:00
chasingegg
c1556e4d8e tiny fix 2021-04-05 00:17:42 +08:00
chasingegg
1aa2b3a4cd fix trace type 2021-04-05 00:16:35 +08:00
tavplubix
31b202bfd0
Merge pull request #21950 from adevyatova/annadevyatova-DOCSUP-6113-atomic
DOCSUP-6113: Document the Atomic database engine
2021-04-04 17:06:31 +03:00
Roman Bug
e0fcc57ffc
Merge branch 'master' into romanzhukov-DOCSUP-7086-add-s3-translation-ru 2021-04-04 12:45:39 +03:00
Anna
01d91973aa Merge branch 'annadevyatova-DOCSUP-6113-atomic' of https://github.com/adevyatova/ClickHouse into annadevyatova-DOCSUP-6113-atomic 2021-04-02 22:17:09 +03:00
Anna
ca25d6c909 add ru desc 2021-04-02 22:16:48 +03:00
Anna
2b0cd92427
Update docs/en/operations/server-configuration-parameters/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-04-02 21:36:08 +03:00
Anna
0945285fae
Merge branch 'master' into annadevyatova-DOCSUP-6113-atomic 2021-04-02 14:45:10 +03:00
Anna
5784dffd0d Fixed after review 2021-04-02 14:43:13 +03:00
Anna
2f9625bb65
Update docs/en/operations/server-configuration-parameters/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-04-02 13:55:43 +03:00
Mike Kot
c947280dfc Merge remote-tracking branch 'upstream/master' into feature/attach-partition-local 2021-04-01 21:38:51 +03:00
Kruglov Pavel
150c53ee3b
Merge pull request #22224 from kirillikoff/kirillikoff-DOCSUP-6698
DOCSUP-6698: Description of setting min_marks_to_honor_max_concurrent_queries
2021-04-01 17:16:13 +03:00
alexey-milovidov
b3dc44e267
Merge pull request #22350 from gyuton/gyuton-DOCSUP-8002-Edit-and-translate-to-Russian
DOCSUP-8002: Edited and translated to Russian (insert_distributed_one_random_shard)
2021-04-01 17:15:33 +03:00
Anna
56cf8f10be update atomic desc, add settings desc 2021-04-01 15:50:47 +03:00
Roman Bug
99b8e9e93d
Update docs/en/operations/update.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-03-31 18:18:43 +03:00
alexey-milovidov
0c70b06960
Merge branch 'master' into system-querylog-map 2021-03-31 04:54:30 +03:00
Anton Popov
9e2e41f713
Update settings.md 2021-03-30 16:07:54 +03:00
Roman Bug
a28dd16846
fix (update multiple servers) en 2021-03-30 15:51:15 +03:00
Tatiana Kirillova
91035081e7 Changes to the text 2021-03-30 13:54:49 +03:00
George
21f89567c4 Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into gyuton-DOCSUP-6212-document-the-log_comment_setting 2021-03-30 11:58:16 +03:00
George
9bd66638bd Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into gyuton-DOCSUP-8002-Edit-and-translate-to-Russian 2021-03-30 11:55:49 +03:00
George
501ee79a28 small fixes 2021-03-30 11:49:54 +03:00
alexey-milovidov
9d84f3113a
Merge pull request #21512 from azat/optimize_skip_unused_shards_limit
Add optimize_skip_unused_shards_limit
2021-03-29 21:13:18 +03:00
George
f43bb61a26 updated settings.md 2021-03-29 21:11:12 +03:00
George
a057a66b08 updated settings.md 2021-03-29 21:05:31 +03:00
Denis Glazachev
0762e1a890 Implement config parsing and actual support for user_dn_detection section and user_dn placeholder substitution
Refactor some config parsing code
Rename some arguments to better reflect their meaning
Add documentation for user_dn_detection section and user_dn placeholder in config.xml and in docs
2021-03-29 02:23:20 +04:00
Tatiana Kirillova
704a4a5521 Description of setting min_marks_to_honor_max_concurrent_queries 2021-03-28 20:43:21 +03:00
George
bba5c08856 Fix 2021-03-28 04:22:58 +03:00
gyuton
bfcff1c915
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-28 01:15:28 +03:00
George
d1fcaf66ba Small changes 2021-03-26 18:58:39 +03:00
George
a91a960b2b Added description 2021-03-26 18:45:09 +03:00
George
92ff804c31 first entry 2021-03-26 15:49:21 +03:00
Mikhail
979beae635 Merge branch 'kuriatnikovm-DOCSUP-7105-translate_changes' of https://github.com/michon470/ClickHouse into kuriatnikovm-DOCSUP-7105-translate_changes 2021-03-26 12:20:56 +03:00
Mikhail
37d8dfbeda ошибка 2021-03-26 12:00:31 +03:00
michon470
9847b73250
Update docs/en/operations/settings/settings.md
Co-authored-by: tavplubix <tavplubix@gmail.com>
2021-03-26 10:46:25 +03:00
michon470
d8931e504e
Merge branch 'master' into kuriatnikovm-DOCSUP-7105-translate_changes 2021-03-25 16:32:39 +03:00
michon470
bd16e6243c
Update docs/en/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-25 01:01:44 +03:00
Mike Kot
285af08949 Merge remote-tracking branch 'upstream/master' into feature/attach-partition-local 2021-03-24 22:34:20 +03:00
Roman Bug
ec6efa936b
Merge branch 'master' into romanzhukov-DOCSUP-7086-add-s3-translation-ru 2021-03-24 19:17:06 +03:00
Azat Khuzhin
7c07b43597 Convert system.errors.stack_trace from String into Array(UInt64)
This should decrease overhead for the errors collecting.
2021-03-24 06:52:48 +03:00
Vitaly Baranov
f784bd4051
Merge pull request #21328 from zvonand/docs_kerberos_support
Adding documentation for Kerberos external authenticator.
2021-03-23 17:34:47 +03:00
Kruglov Pavel
290e8e6b87
Merge pull request #21587 from gyuton/gyuton-DOCSUP-6703-Document-the-insert_shard_id-setting
DOCSUP-6703: Documented the insert_shard_id setting
2021-03-23 13:10:05 +03:00
gyuton
601eb40d89
Update settings.md 2021-03-23 13:01:57 +03:00
gyuton
52c5608a05
Update settings.md 2021-03-23 12:23:52 +03:00
gyuton
3be9d798ce
Update docs/en/operations/settings/settings.md
Co-authored-by: Kruglov Pavel <48961922+Avogar@users.noreply.github.com>
2021-03-23 12:22:38 +03:00
Nikolai Kochetov
c2cbdf89a0
Merge pull request #21601 from ka1bi4/romanzhukov-DOCSUP-7042-deltaSum-quota-type
DOCSUP-7042: Edit and translate to Russian (deltaSum function and queries quota type)
2021-03-23 12:05:28 +03:00
Kseniia Sumarokova
bf5b8e1a14
Merge pull request #21892 from sevirov/sevirov-DOCSUP-6177-add_new_columns_system_query_log_system_table
DOCSUP-6177: Add new columns to the system.query_log system table
2021-03-21 21:46:40 +03:00
Dmitriy
f2de3f5dfd Update query_log
Внес небольшие изменения.
2021-03-21 19:22:04 +03:00
Dmitriy
ccb40e56a0 Fix by comments
Поправил русскую и английскую версии согласно комментариям разработчика.
2021-03-21 18:16:34 +03:00
Mikhail
5c21dd747a changes according to task comment 2021-03-21 08:57:55 +03:00
Dmitriy
3630668242 Update the example
Обновил пример и некоторые столбцы.
2021-03-21 01:12:05 +03:00
Roman Bug
625195b01e
Merge branch 'master' into romanzhukov-DOCSUP-7086-add-s3-translation-ru 2021-03-20 17:36:40 +03:00
Nikita Mikhaylov
328c2b4ca8
Merge pull request #21569 from lehasm/alexey-sm-DOCSUP-7099-translate-runningConcurrency
DOCSUP-7099: edit and translate (runningConcurrency, max_parallel_replicas)
2021-03-19 22:14:05 +03:00
gyuton
8f1f9415f9
Update settings.md 2021-03-19 16:28:46 +03:00
Andrey
34ad5dca53
Merge branch 'master' into docs_kerberos_support 2021-03-19 15:31:55 +03:00
Dmitriy
7bf89bce06 Merge remote-tracking branch 'remotes/clickhouse/master' into sevirov-DOCSUP-6177-add_new_columns_system_query_log_system_table 2021-03-19 00:46:52 +03:00
Dmitriy
4046f414fe Add new columns
Добавил новые и недостающие столбцы в описание таблицы.
2021-03-19 00:15:43 +03:00
alexey-milovidov
d83b489a5a
Merge pull request #21719 from gyuton/gyuton-DOCSUP-7106-Edit_and_translate_to_Russian
DOCSUP-7106: Edited and translated to Russian
2021-03-18 17:05:09 +03:00
Roman Bug
2248001079
Merge branch 'master' into romanzhukov-DOCSUP-7042-deltaSum-quota-type 2021-03-18 16:33:38 +03:00
romanzhukov
01b3bd12cd DOCSUP-7042: Fix by PR comments. 2021-03-18 16:28:24 +03:00
romanzhukov
348e76a47f DOCSUP-7042: Fix by PR comments. 2021-03-18 16:16:15 +03:00
George
2c88b0bd91 Small fixes 2021-03-18 02:03:27 +03:00
George
aab83c1d79 Added translation 2021-03-18 02:00:45 +03:00
gyuton
f7159874aa
Update docs/en/operations/settings/settings.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-03-18 00:51:07 +03:00
lehasm
e452596bc8 Merge branch 'alexey-sm-DOCSUP-7099-translate-runningConcurrency' of https://github.com/lehasm/ClickHouse into alexey-sm-DOCSUP-7099-translate-runningConcurrency 2021-03-17 22:44:19 +03:00
lehasm
28ae11f3df some cases changed to following cases 2021-03-17 22:30:44 +03:00
Mike Kot
831b90f272 Replaced the iteration algorithm in part finder
Now, instead of iterating through the directories, we iterate though
directories of on of the table disks (which doesn't give us a
substantial boost but is a bit neater to read).

- Updated the system.replication_queue command types.
- Fixed the part ptr being empty (added the checksum loading and
initialization).
- Removed extra logging.
2021-03-17 16:55:26 +03:00
George
3060d9bb3b fixed links 2021-03-17 01:49:02 +03:00
George
0855f5fb18 Troubleshooting 2021-03-17 01:34:40 +03:00
Azat Khuzhin
44c9dc753d Add system.errors.last_error_stacktrace column 2021-03-16 22:31:49 +03:00
Azat Khuzhin
775f8f7682 Add system.errors.last_error_message column 2021-03-16 22:31:49 +03:00
Azat Khuzhin
c8852331a2 Add system.errors.last_error_time column 2021-03-16 22:31:49 +03:00
Azat Khuzhin
259e5ba88e Separate accounting of remote exceptions in system.errors 2021-03-16 22:31:46 +03:00
lehasm
64539452d9
Merge branch 'master' into alexey-sm-DOCSUP-7099-translate-runningConcurrency 2021-03-16 22:02:11 +03:00
George
4d24cef69c fixed links 2021-03-16 21:46:05 +03:00
George
9801241760 fixed links 2021-03-16 21:31:59 +03:00
George
5f9a854617 Some updates 2021-03-16 21:13:22 +03:00
George
8e86067d6d Some fixes 2021-03-15 01:05:58 +03:00
gyuton
a1f0ec0aec
Merge branch 'master' into gyuton-DOCSUP-7106-Edit_and_translate_to_Russian 2021-03-15 00:40:37 +03:00
George
6402b2c33c Small fixes 2021-03-15 00:39:24 +03:00
George
f092d22a25 Updated description 2021-03-15 00:25:21 +03:00
Alexey Milovidov
f617976571 Fix broken links 2021-03-14 15:55:11 +03:00
Alexey Milovidov
ecb686b0be Fix some broken links 2021-03-14 15:29:23 +03:00
George
57d1dc7a6c Work-in-progress 2021-03-14 00:33:55 +03:00
George
8cc0de8c4c Updated description 2021-03-13 15:41:47 +03:00
George
8b27da2b81 first draft 2021-03-12 19:00:41 +03:00
Denis Glazachev
290a6d273e
Add Kerberos support for authenticating existing users when accessing over HTTP 2021-03-11 23:41:10 +03:00
alesapin
cae9751961
Merge pull request #21493 from olgarev/revolg-DOCSUP-5854_show_settings
DOCSUP-5854: Documented the SHOW SETTINGS statement
2021-03-11 11:47:32 +03:00
lehasm
d901d00830 Fixes after review applied 2021-03-10 23:46:29 +03:00
sevirov
5e887b4c99
Update docs/en/operations/system-tables/trace_log.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-03-10 20:21:43 +03:00
George
2da04f872c Updated and translated Index.md 2021-03-10 14:27:40 +03:00
George
5580ac596c Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into gyuton-DOCSUP-6703-Document-the-insert_shard_id-setting 2021-03-10 13:10:55 +03:00
George
701fd2c54e Small update 2021-03-10 13:10:16 +03:00
Dmitriy
cf51574d82 Edit and translate to Russian
Исправил английскую версию и перевел на русский язык.
2021-03-09 23:31:48 +03:00
lehasm
c0630e2c90 en text improved. 2021-03-09 22:45:29 +03:00
romanzhukov
be929edd88 DOCSUP-7045: Add interserver replication https 2021-03-09 18:10:37 +03:00
lehasm
233ca6373e max_parallel_replicas description edited 2021-03-08 23:46:26 +03:00
Azat Khuzhin
16f4c02d42 Add optimize_skip_unused_shards_limit
Limit for number of sharding key values, turns off
optimize_skip_unused_shards if the limit is reached
2021-03-26 06:09:00 +03:00
tavplubix
ec1d0c8e86
Merge pull request #21382 from sevirov/sevirov-DOCSUP-7043-edit_translate_russian_system_part_log_table
DOCSUP-7043: Edit and translate to Russian
2021-03-06 12:54:44 +03:00
Olga Revyakina
ff76356fd1 Docs en,ru PLUS templates updates 2021-03-06 11:59:50 +03:00
zvonand
024f13420d Merge branch 'master' of github.com:ClickHouse/ClickHouse into docs_kerberos_support 2021-03-05 17:04:29 +03:00
Alexander Kuzmenkov
81dc94bca7
Merge pull request #19836 from sevirov/sevirov-DOCSUP-4707-edit_translate_russian_date_time
DOCSUP-4707: Edit and translate to Russian
2021-03-05 05:11:26 +03:00
Dmitriy
fbc4791db7 Add the links
Добавил ссылки на продукты, убрал кавычки со стандарта.
2021-03-04 20:13:22 +03:00
Dmitriy
fec0cf5f09 Edit and translate to Russian
Поправил английскую версию и выполнил перевод на русский язык.
2021-03-02 20:59:33 +03:00
sevirov
9d98c8ea2e
Update docs/en/operations/opentelemetry.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-03-01 21:47:02 +03:00
sevirov
f47bd5fae8
Update docs/en/operations/opentelemetry.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-03-01 21:46:52 +03:00
zvonand
29d191322a Merge branch 'master' of github.com:ClickHouse/ClickHouse into docs_kerberos_support 2021-03-01 20:11:28 +03:00
olgarev
15b3f379a5
DOCSUP-4915: documented geo data types (#21294)
* Initial

* Fix links

* Fix master

* Mistakes corrected

* Minor fix

* Fixes and intro.

* Update geo.md

* Apply suggestions from code review

Co-authored-by: Anton Popov <pad11rus@gmail.com>

Co-authored-by: Olga Revyakina <revolg@yandex-team.ru>
Co-authored-by: Anton Popov <pad11rus@gmail.com>
2021-03-01 19:41:16 +03:00
Roman Bug
a4f2ee0752
DOCSUP-6144: Edit and translate PR to Russian (#19780)
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
Co-authored-by: romanzhukov <romanzhukov@yandex-team.ru>
Co-authored-by: Vladimir <vdimir@yandex-team.ru>
2021-03-01 16:51:38 +03:00
Nikita Mikhaylov
cb2a26308f
Merge pull request #20347 from gyuton/gyuton-DOCSUP-6549-Edit_and_translate
DOCSUP-6549: Edited and translated to Russian
2021-03-01 16:49:06 +03:00
zvonand
5677ff9b0a Merge branch 'master' of github.com:ClickHouse/ClickHouse into docs_kerberos_support 2021-03-01 11:04:56 +05:00
romanzhukov
34a8574920 DOCSUP-7086: Add CH update translation. 2021-02-28 23:22:46 +03:00
zvonand
652899e631 Semi-final kerberos + ldap (ru) 2021-03-01 00:11:29 +05:00
Vladimir
6aa72bcd43
Merge pull request #19591 from ka1bi4/romanzhukov-DOCSUP-5266-PR-translate 2021-02-28 20:40:04 +03:00
Dmitriy
187eb837db Add the links
Добавил ссылки.
2021-02-28 20:10:44 +03:00
Dmitriy
efb17c0f31 Merge remote-tracking branch 'remotes/clickhouse/master' into sevirov-DOCSUP-6544-edit_translate_russian_insert_query_support 2021-02-25 23:34:36 +03:00
zvonand
ada96c8ff1 Added En and Ru Kerberos docs 2021-02-24 15:10:37 +05:00
Denny Crane
c25ea35099
Update settings.md 2021-02-23 18:22:47 -04:00
Denny Crane
613854df0d
Update settings.md
fix hyperlink
2021-02-23 17:43:52 -04:00
zvonand
01cf460287 New file 2021-02-22 21:18:59 +05:00
alexey-milovidov
50639b7dba
Merge pull request #21052 from ClickHouse/file-engine-settings
Merging #20620
2021-02-22 13:10:31 +03:00
idfer
2159344628
Fixed words typo in the setting-users doc. 2021-02-22 11:17:05 +08:00
Alexey Milovidov
46ac365629 Merge branch 'master' into topvisor/file-engine-settings 2021-02-21 23:10:26 +03:00
gyuton
0a58fd2eb2
Merge branch 'master' into gyuton-DOCSUP-6549-Edit_and_translate 2021-02-21 15:28:06 +03:00
alexey-milovidov
a78523cf01
Merge pull request #20208 from vzakaznikov/ldap_docs
Adding documentation on how to use LDAP server as external user authenticator or directory
2021-02-19 20:56:01 +03:00
Alexey Milovidov
0d2d2dc2ed Merge branch 'master' into sundy-li/system-querylog-map 2021-02-18 00:47:54 +03:00
George
e15a080104 First draft 2021-02-17 00:36:18 +03:00
M0r64n
75117389ec Add a couple of QOL file engine settings 2021-02-16 18:50:11 +04:00
Nikita Mikhaylov
94c733bac7
Merge pull request #20190 from damozhaeva/dmozhaeva-DOCSUP-2042-edit-and-translate
DOCSUP-3539 Отработать замечания по переводу
2021-02-16 15:47:16 +03:00
Alexander Kuzmenkov
cd944cb1e3
Merge pull request #20154 from sevirov/sevirov-DOCSUP-6438-document_opentelemetry_start_trace_probability_setting
DOCSUP-6438: Document the opentelemetry_start_trace_probability setting
2021-02-15 22:36:02 +03:00
Alexander Kuzmenkov
d08dcb1958
Update docs/en/operations/settings/settings.md 2021-02-15 22:35:49 +03:00
Alexander Kuzmenkov
22a5ef3635
Merge pull request #20095 from sevirov/sevirov-DOCSUP-6437-document_system_opentelemetry_span_log
DOCSUP-6437: Document the system.opentelemetry_span_log system table
2021-02-15 22:34:48 +03:00
Nikita Mikhaylov
1795d45609
Merge pull request #19338 from hasithaka/patch-1
Update update.md
2021-02-15 12:46:46 +03:00
Daria Mozhaeva
00bb72735e add text 2021-02-14 15:55:40 +03:00
Daria Mozhaeva
7f9436381f fixed conflict 2021-02-14 14:48:26 +03:00
Daria Mozhaeva
bc7663f757 Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into dmozhaeva-DOCSUP-2042-edit-and-translate 2021-02-14 14:23:46 +03:00
Dmitriy
0d9578efc9 Edit and translate
Поправил английскую версию и выполнил перевод.
2021-02-14 14:14:39 +03:00
Dmitriy
b78f54cc70 Merge remote-tracking branch 'remotes/clickhouse/master' into sevirov-DOCSUP-6438-document_opentelemetry_start_trace_probability_setting 2021-02-11 22:38:18 +03:00
Dmitriy
6271709efa Fix the description of the setting
Поправил описание настройки.
2021-02-11 22:23:19 +03:00
sevirov
ce1524c4eb
Update docs/en/operations/settings/settings.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-02-11 22:06:30 +03:00
Dmitriy
d3549aca95 Fix the description of the table
Поправил описание таблицы.
2021-02-11 21:42:15 +03:00
George
cd11212bba Edited and translated settings 2021-02-11 19:57:41 +03:00
Alex Karo
6bc0dbe8ff Fix broken links to "max table size" param in backup documentation 2021-02-10 22:03:27 +03:00
Kruglov Pavel
df7cc6b195
Merge pull request #20026 from gyuton/gyuton-DOCSUP-5788-Document_the_optimize_on_insert_setting
DOCSUP-5788: Documented the optimize_on_insert setting
2021-02-10 19:55:32 +03:00
gyuton
fe00f72908
Update settings.md 2021-02-10 18:54:47 +03:00
Hasitha Kanchana
df1889b8e8
Update update.md
Highlight the sample version
2021-02-10 10:04:25 +01:00