Commit Graph

183 Commits

Author SHA1 Message Date
Pavel Kruglov
cb7efb8efe Change Aggregatingmergetree to AggregatingMergeTree in docs 2021-04-06 10:37:56 +03:00
Robert Hodges
48ba36b682
Update postgresql.md
Corrected typo in PostgreSQL Table Engine page title.
2021-03-26 10:34:48 -07:00
Anna
82a0340490 Fixes after review 2021-03-21 17:23:16 +03:00
Anna
357cd6fb94
Merge branch 'master' into annadevyatova-DOCSUP-5841-translate 2021-03-21 17:00:19 +03:00
alexey-milovidov
02a06eb448
Update mergetree.md 2021-03-16 18:39:39 +03:00
Anton Popov
172f668fa3
fix doc 2021-03-16 15:45:08 +03:00
Nikita Mikhaylov
1d15ed34ce
Merge pull request #21737 from excitoon-favorites/reverts3connectionpools
Reverted S3 connection pools
2021-03-16 14:40:54 +03:00
Vladimir Chebotarev
35e0d0f672 Reverted S3 connection pools. 2021-03-15 14:17:16 +03:00
Alexey Milovidov
bbd6ac2d3a Merge branch 'master' into add_postgresql_engine_docs 2021-03-14 14:22:56 +03:00
Nikita Mikhaylov
a14110a9a5
Merge pull request #21497 from olgarev/DOCSUP-6545_edit_and_translate
DOSCUP-6545: Edit and translate
2021-03-12 16:04:31 +03:00
Olga Revyakina
5826432172 Headers order changed 2021-03-12 13:00:46 +03:00
Anna
b908a27cae
Update s3.md 2021-03-11 13:09:45 +03:00
alesapin
e27715e55e
Merge pull request #21331 from godliness/master
Fix error configuration for cluster secret
2021-03-10 10:09:29 +03:00
Anna
c8e87a6bb7
Update s3.md 2021-03-10 09:26:55 +03:00
Anna
8923544b87
Update index.md 2021-03-10 09:15:20 +03:00
Anna
805301dddb
Update docs/en/engines/table-engines/integrations/s3.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-10 08:48:15 +03:00
Anna
621188d4d7
Update docs/en/engines/table-engines/integrations/s3.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-10 08:47:49 +03:00
Anna
5d254e32c6
Update docs/en/engines/table-engines/integrations/s3.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-10 08:47:35 +03:00
Anna
f6889ab49a
Update docs/en/engines/table-engines/integrations/s3.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-10 08:47:25 +03:00
alexey-milovidov
c1a96e977a Update kafka.md 2021-03-08 03:40:29 +03:00
Slach
ddd5acf251 try to fix "fake" nowhere links according to https://github.com/ClickHouse/ClickHouse/pull/21268#issuecomment-787106299 2021-03-08 03:40:29 +03:00
Slach
8763ac98fe fix multi dimensional array warning - https://github.com/ClickHouse/ClickHouse/pull/21078#discussion_r580829045
Signed-off-by: Slach <bloodjazman@gmail.com>
2021-03-08 03:40:29 +03:00
Slach
7c91b1d6e6 fix multi dimensional array warning - https://github.com/ClickHouse/ClickHouse/pull/21078#discussion_r580829045
Signed-off-by: Slach <bloodjazman@gmail.com>
2021-03-08 03:39:24 +03:00
Slach
5791cf5f2b fix review comments https://github.com/ClickHouse/ClickHouse/pull/21078#discussion_r580413875 and https://github.com/ClickHouse/ClickHouse/pull/21078#discussion_r580410204
Signed-off-by: Slach <bloodjazman@gmail.com>
2021-03-08 03:39:24 +03:00
Slach
831135432f add PostgreSQL engine and table function documentation
Signed-off-by: Slach <bloodjazman@gmail.com>
2021-03-08 03:39:24 +03:00
Anna
62db68e3da fix link 2021-03-05 12:43:51 +03:00
Anna
6e6c0069e2 fixed links 2021-03-05 12:36:05 +03:00
Anna
bb2061dd8f revert some changes 2021-03-05 12:22:15 +03:00
Anna
c9cdde9983 Minor fixed 2021-03-05 12:10:35 +03:00
Anna
7ccbd63e25 minor fixed 2021-03-05 11:59:06 +03:00
Anna
1bceed4984 casting to template 2021-03-05 11:31:16 +03:00
Anna
178134ba23 edit en text 2021-03-05 11:00:49 +03:00
Azat Khuzhin
6965ac26c3 Distributed: Add ability to delay/throttle INSERT until pending data will be reduced
Add two new settings for the Distributed engine:
- bytes_to_delay_insert
- max_delay_to_insert

If at the beginning of INSERT there will be too much pending data, more
then bytes_to_delay_insert, then the INSERT will wait until it will be
shrinked, and not more then max_delay_to_insert seconds.

If after this there will be still too much pending, it will throw an
exception.

Also new profile events were added (by analogy to the MergeTree):
- DistributedDelayedInserts (although you can use system.errors instead
  of this, but still)
- DistributedRejectedInserts
- DistributedDelayedInsertsMilliseconds
2021-03-03 23:30:23 +03:00
Azat Khuzhin
b5a5778589 Distributed: Add ability to limit amount of pending bytes for async INSERT
Right now with distributed_directory_monitor_batch_inserts=1 and
insert_distributed_sync=0 INSERT into Distributed table will store
blocks that should be sent to remote (and in case of
prefer_localhost_replica=0 to the localhost too) on the local
filesystem, and sent it in background.

However there is no limit for this storage, and if the remote is
unavailable (or some other error), these pending blocks may take
significant space, and this is not always desired behaviour.

Add new Distributed setting - bytes_to_throw_insert, that will set the
limit for how much pending bytes is allowed, if the limit will be
reached an exception will be throw.

By default was set to 0, to avoid surprises.
2021-03-03 23:30:00 +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
Chao Ma
c2b8612525 Fix error configuration for cluster secret 2021-03-01 16:30:42 +08:00
Vladimir
9038fb3861
Merge pull request #20540 from lehasm/alexey-sm-DOCSUP-4328-document-xz-compression 2021-02-26 15:44:47 +03:00
lehasm
bb2ee9609f Compression mentioned in File engine 2021-02-23 16:43:40 +03:00
gyuton
0a58fd2eb2
Merge branch 'master' into gyuton-DOCSUP-6549-Edit_and_translate 2021-02-21 15:28:06 +03:00
Kseniia Sumarokova
20ff183549
Merge branch 'master' into rabbit-format-settings 2021-02-17 19:01:53 +03:00
kssenii
d79f7c04f6 Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into rabbit-format-settings 2021-02-17 06:03:19 +00:00
kssenii
29362bb483 Support vhost 2021-02-16 22:05:14 +00:00
kssenii
d9f66d8d30 Better doc 2021-02-15 23:25:19 +00:00
kssenii
2a887b9772 Add missing format factory settings 2021-02-15 22:06:10 +00:00
alexey-milovidov
a299790522
Merge pull request #19748 from excitoon-favorites/s3ssec
Added Server Side Encryption Customer Keys support in S3 client
2021-02-15 15:23:14 +03:00
George
838dab7564 Edit and translated Kafka 2021-02-11 21:07:38 +03:00
Nikita Mikhaylov
39c73cb448
Merge pull request #19954 from gyuton/gyuton-DOCSUP-5978-document_max_partitions_to_read
DOCUP-5978: Documented max_partitions_to_read
2021-02-09 15:47:17 +03:00
alesapin
f34bec4be4
Update mongodb.md 2021-02-08 17:30:15 +03:00
alesapin
313d17bf96
Update mongodb.md 2021-02-08 10:10:07 +03:00
Olga Revyakina
f910f00285 Description and link (en, ru) 2021-02-07 17:29:54 +03:00