Commit Graph

2006 Commits

Author SHA1 Message Date
Sergei Bocharov
058217386a Fixes after review 2019-10-14 13:34:27 +03:00
Sergei Bocharov
d52edf15c9 Fixes 2019-10-14 13:34:27 +03:00
Sergei Bocharov
cdc2d1b364 Fix RegExp 2019-10-14 13:34:27 +03:00
Sergei Bocharov
4b11a2e30b Added .yaspellerrc 2019-10-14 13:34:27 +03:00
Sergei Bocharov
1f394202e6 Fix typos 2019-10-14 13:34:27 +03:00
Sergei Bocharov
f0c38c82ca Fix typos 2019-10-14 13:34:27 +03:00
Sergei Bocharov
f5ebf2ccb7 Added Quick Start info 2019-10-14 13:34:27 +03:00
Sergei Bocharov
e2c3db4772 Fixes after review2 2019-10-14 13:34:27 +03:00
Sergei Bocharov
4331a1614f Fixes after review 2019-10-14 13:34:27 +03:00
Sergei Bocharov
61709ccb14 Fix typo 2019-10-14 13:34:27 +03:00
Sergei Bocharov
efccf28cfb docs(solutions): applying a CatBoost model in ClickHouse 2019-10-14 13:34:27 +03:00
Danila Kutenin
61a97add8d Some docs 2019-10-13 15:35:43 +02:00
Danila Kutenin
57f20ba17e All multi{Fuzzy}MatchAllIndices functions 2019-10-13 15:22:09 +02:00
alexey-milovidov
4dffc67434
Merge pull request #7291 from sundy-li/FQDN
Function FQDN, fullHostName
2019-10-12 20:02:22 +03:00
VDimir
9a9a234410 Add doc for isValidJSON 2019-10-12 12:00:46 +00:00
sundy-li
4e48992397 fullHostName by function getFQDNOrHostName 2019-10-12 17:21:30 +08:00
sundy-li
59d2989826 Function FQDN,fullHostName 2019-10-12 15:17:30 +08:00
Zhichang Yu
679db35ed3 Fixed #7109 groupBitmapOr(31) segfault 2019-10-12 10:36:52 +08:00
Azat Khuzhin
b0e131a46f docs: fix notes syntax (triple !) 2019-10-11 23:21:59 +03:00
Azat Khuzhin
c2fa7ffcd3 Drop note about "estimation error for large sets will be large"
Since error is not that large, especially for uniqCombined64():

rows     error     uniqCombined64()/rows
- 1e7    0.00219   (1.0021969)
- 1e8    0.00096   (0.99903523)
- 2e8    0.50200   (1.005022735)
- 1e9    0.99944   (0.999435738)
- 1e10   0.01399   (0.9998568925)
- 1e11   0.09800   (1.00097891658)
- 1e12   0.29800   (0.997024870685)
- 1e13   0.62200   (1.0062169910992)
- 1e14   0.06200   (1.00062143604171)
2019-10-10 02:03:14 +03:00
Nikita Vasilev
05147f2a85 fix 2019-10-09 23:26:36 +03:00
Nikita Vasilev
82616b954b fix 2019-10-09 22:19:50 +03:00
alexey-milovidov
2a94198445
Update mysql.md 2019-10-09 21:28:22 +03:00
alexey-milovidov
94f093829d
Update mysql.md 2019-10-09 21:28:01 +03:00
alexey-milovidov
689411abe0
Merge pull request #7222 from azat/uniqCombined64
[RFC] Introduce uniqCombined64() to get sane results for cardinality > UINT_MAX
2019-10-09 20:29:56 +03:00
alexey-milovidov
0555749096
Update reference.md 2019-10-09 20:29:12 +03:00
alexey-milovidov
6d31c3e730
Update reference.md 2019-10-09 20:28:15 +03:00
alexey-milovidov
4c1f0177b6
Merge pull request #7109 from infinivision/aggBitmapAnd
added groupBitmapAnd, groupBitmapOr, groupBitmapXor
2019-10-08 22:51:46 +03:00
alexey-milovidov
b9aa5d812d
Merge pull request #7171 from nikvas0/nikvas0/lazy_db
Lazy Database
2019-10-08 22:15:55 +03:00
alexey-milovidov
e846aea5c8
Update lazy.md 2019-10-08 22:15:30 +03:00
Azat Khuzhin
f46c5a47c0 Introduce uniqCombined64() to get sane results for cardinality > UINT_MAX
By default uniqCombined() uses 32-bit hash for all types except String,
so this means that you cannot use uniqCombined() with i.e UInt64 and
cardinality > UINT_MAX, although you can use uniqCombined(toString())
and this will lead to 64-bit hash, but will not have good performance.

So uniqCombined64() had been introduced to fix this.

Requires: #7213
2019-10-08 21:59:35 +03:00
Denis Zhuravlev
6f51d92031 Doc change. Added links to other doc articles (distributed.md) (#7144) 2019-10-08 16:56:48 +03:00
Vasilyev Nikita
94fd716e32 fix 2019-10-08 11:33:21 +03:00
Vasilyev Nikita
a8b1ba93ff docs 2019-10-08 11:31:12 +03:00
Winter Zhang
084ef9c47b Continue to complete pr of document from lvxin1986 (#7220)
* Update index.md

translate the index.md

* Update distinctive_features.md

modify the data compression description

* Update distinctive_features.md

修改 多核心并行处理 章节

* Update distinctive_features.md

* continue to complete pr from lvxin1986

* continue to complete pr from lvxin1986
2019-10-08 10:58:33 +03:00
Alexander Tokmakov
1c5ee018df update docs 2019-10-07 21:55:12 +03:00
Ivan Blinkov
15deedb420
[docs] fix some title case 2019-10-07 20:00:21 +03:00
alexey-milovidov
aa15bfbd33
Update client_libraries.md 2019-10-07 17:08:34 +03:00
alexey-milovidov
c743a9f9ff
Merge pull request #7190 from godfreyd/godfreyd-currentUser
docs(currentUser): fix description
2019-10-05 21:55:10 +03:00
Alexander Tokmakov
a90d126b93 support defaults_for_omitted_fields in TSV 2019-10-04 22:44:48 +03:00
Alexander Tokmakov
d936cee836 support null_as_default in most text formats 2019-10-04 22:42:35 +03:00
Vladimir Chebotarev
4ee50d3f66
Minor doc fixes. 2019-10-04 19:28:32 +03:00
tavplubix
d73db7f779
Merge pull request #6781 from ClickHouse/merging_values_with_expressions
Merging Values with expressions
2019-10-04 12:51:22 +03:00
Sergei Bocharov
da0e9a1106 Fixes 2019-10-04 10:24:41 +03:00
Elena Baskakova
9d2f9c3d7f docs(currentUser): fix description 2019-10-04 10:20:17 +03:00
Ilya Kovalenko
a76c7354ee
Fix typo in russian enum documentation 2019-10-03 10:25:13 +03:00
Alexander Tokmakov
565c273eaa Merge branch 'master' into merging_values_with_expressions 2019-10-02 20:51:44 +03:00
Alexander Tokmakov
80e5976d10 fixes after review 2019-10-02 20:51:00 +03:00
Ivan
381947509a
Fix build for Darwin (#7149)
* Disable some contribs for cross-compilation
* Fix clang-8-darwin build
* Also fix docs
* Add diagnostics
* Check cross-compilation in each file individually.
* Disable warning for clang < 9
2019-10-02 17:35:07 +03:00
Denis Zhuravlev
b8a1164d05
Update array_functions.md
Fix array functions descriptions.
2019-09-30 20:03:09 -03:00
Denis Zhuravlev
c224ae0afd
Update array_functions.md
Fix array functions descriptions.
2019-09-30 19:26:30 -03:00
Alexander Tokmakov
979f235e38 Merge branch 'master' into merging_values_with_expressions 2019-09-30 18:06:58 +03:00
alexey-milovidov
e50a874537
Merge pull request #7118 from ClickHouse/improve_template_format
Minor improvements of Template format
2019-09-30 15:00:27 +03:00
alexey-milovidov
cbd2f1d8cd
Merge pull request #7112 from godfreyd/godfreyd-startswith
Docs(startsWith): Fix startsWith function
2019-09-30 14:59:39 +03:00
alexey-milovidov
42c9ea9aa3
Merge pull request #7092 from PerformanceVision/acl_file_storage
Let the choice to write credential for HTTP source on external dictionaries
2019-09-30 13:20:33 +03:00
Sergei Bocharov
b641c7e163 Fix replicate function description 2019-09-30 12:18:43 +03:00
Sergei Bocharov
8a579ee3a6 Fixes after review 2019-09-30 10:24:02 +03:00
Denis Zhuravlev
0a686b1e86
Update array_functions.md
Fix arrayDifference description.
2019-09-28 18:52:52 -03:00
BayoNet
34b61e8dff
DOCAPI-7442: EN review, RU translation for updated system.parts docs (#7041)
* Typo fix.

* Update system_tables.md (#40)

* DOCAPI-7442: RU translation.

* DOCAPI-7442: Fix.
2019-09-28 17:58:10 +03:00
BayoNet
fa31743ace
DOCAPI-8259: EN review, RU translation. toInt, toUint docs refactoring and update (#7043)
* Typo fix.

* Update type_conversion_functions.md (#48)

* DOCAPI-8259: RU translation

* DOCAPI-8259: EN. Numeric conversion issues.

* DOCAPI-8259: Clarification.
2019-09-28 17:55:50 +03:00
Denis Zhuravlev
774e255154 Doc change. translation to Russian some array functions (#7139) 2019-09-28 09:39:25 +03:00
alexey-milovidov
ad687cd2e5
Merge pull request #7138 from den-crane/patch-14
Doc change. fix arrayDistinct description
2019-09-27 22:46:14 +03:00
alexey-milovidov
2cd1bde2f2
Merge pull request #7129 from DIGILANT/doc
Added Redash as third-parti GUI tool.
2019-09-27 22:21:56 +03:00
Denis Zhuravlev
e97571d521
Update array_functions.md
fix arrayDistinct description
2019-09-27 15:05:11 -03:00
BayoNet
a04756d0dd
DOCAPI-8799: Updated SHOW TABLE dscr. Restructured TOC (#7128)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* Link fixes.

* DOCAPI-8799: Updated SHOW TABLES. Restructured TOC.

* DOCAPI-8799: Fix.

* DOCAPI-8799: Links fix.
2019-09-27 18:44:36 +03:00
Darío
f7bf293cbf
Update gui.md 2019-09-27 14:28:00 +02:00
Dario
88b9672108 Added Redash to the GUI documentation 2019-09-27 14:23:12 +02:00
Zhichang Yu
8945714c27 added groupBitmapAnd, groupBitmapOr, groupBitmapXor 2019-09-27 10:21:07 +08:00
alexey-milovidov
8810f9cefa
Merge pull request #7108 from lvxin1986/patch-5
Update mergetree.md
2019-09-26 21:53:31 +03:00
BayoNet
38f95e9fbc DOCAPI-8299: Added a link with metrics for system.metrics (#7110)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* Link fixes.

* DOCAPI-8299: Reference to source code.
2019-09-26 21:24:47 +03:00
tavplubix
c3ed1f38a6
Merge branch 'master' into improve_template_format 2019-09-26 19:19:11 +03:00
Alexander Tokmakov
3e07e144a4 update docs 2019-09-26 19:10:22 +03:00
Sergei Bocharov
a0e11264ee Fix startsWith function 2019-09-26 14:39:39 +03:00
alex.lvxin
e2c7b83747
Update mergetree.md
fix the error content。
2019-09-26 17:14:14 +08:00
BayoNet
df8cb4b619
DOCAPI-7413: EN revew, RU translation. T64 codec docs (#7021)
* Update create.md (#32)

* DOCAPI-7413: Fixes.

* DOCAPI-7413: Fixes.

* DOCAPI-7413: RU translation.
2019-09-26 11:51:48 +03:00
BayoNet
1fdc2b5675
DOCAPI-6422: EN docs for adaptive index granularity and some settings (#7012)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* DOCAPI-6422: Adaptive granularity

* DOCAPI-6422: fix.

* Update settings.md

* Update settings.md

* DOCAPI-6422: Clarifications and fixes.

* DOCAPI-6422: Fix.

* DOCAPI-6422: Link fix.
2019-09-26 11:45:08 +03:00
Guillaume Tassery
53b10d5b60 docs 2019-09-26 05:42:45 +02:00
Guillaume Tassery
6ac5054f81 Merge branch 'acl_file_storage' of github.com:PerformanceVision/ClickHouse into acl_file_storage 2019-09-26 05:36:06 +02:00
Guillaume Tassery
647568a6f6 cosmetic 2019-09-26 05:34:22 +02:00
Alexander Tokmakov
64b2fddcfd update docs 2019-09-26 01:15:47 +03:00
BayoNet
4a60e8187b
Fixing links in docs (#7098)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* Link fixes.
2019-09-25 19:43:10 +03:00
Guillaume Tassery
f9660bbe47
Update external_dicts_dict_sources.md 2019-09-25 13:37:13 +02:00
Guillaume Tassery
367a0dcdb4 cosmetic 2019-09-25 11:46:48 +02:00
Guillaume Tassery
0267c65e27 Add documentation 2019-09-25 11:42:17 +02:00
Alexey Milovidov
ff07ffbbae Merge branch 'merging_redis' of https://github.com/CurtizJ/ClickHouse into CurtizJ-merging_redis 2019-09-25 02:27:05 +03:00
BayoNet
f5ba279a6d DOCAPI-8163: Update for EN docs for sequenceMatch and sequenceCount (#6952)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* DOCAPI-8163: Docs for sequenceMatch and sequenceCount.
2019-09-25 02:19:14 +03:00
Denis Zhuravlev
30136fa4ad Doc change. Added description for interserver_http_credentials (#6927)
* Update settings.md

Added description for interserver_http_credentials

* Update settings.md

Added description for interserver_http_credentials

* Update settings.md

* Update settings.md

* Update settings.md

* Update settings.md
2019-09-25 02:14:23 +03:00
BayoNet
c3c3f3829e DOCAPI-7719: Columns matcher docs (#6831)
* Typo fix.

* DOCAPI-7719: Docs

* DOCAPI-7719: Text.

* DOCAPI-7719: Text.

* DOCAPI-7719: Update.

* DOCAPI-7719: Update.
2019-09-25 02:07:52 +03:00
Ivan Lezhankin
7285bad1e7 Merge remote-tracking branch 'upstream/master' into issue-6459 2019-09-24 17:52:50 +03:00
Ivan Lezhankin
dac5889bc4 Add build instruction 2019-09-24 17:43:07 +03:00
Sergei Bocharov
4761436a52 Docs(hash_functions): fix xxHash32, xxHash64 (#6992)
* docs(hash_functions): fix xxHash32, xxHash64

* Fixes after review

* Fixes after review

* Update hash_functions.md

* Update hash_functions.md
2019-09-24 03:50:58 +03:00
BayoNet
f26fdc63a0 DOCAPI-7415: EN review, RU translation. Docs for the -Resample aggregate function combinator. (#7017)
* Update combinators.md (#39)

* DOCAPI-7415: RU translation

* DOCAPI-7415: fix.
2019-09-24 03:04:52 +03:00
BayoNet
6db4cb8117 DOCAPI-7430: EN review, RU translation. MergeTree INDEX bloom filter docs. (#7025)
* Update mergetree.md (#38)

* DOCAPI-7430: RU translation.
2019-09-24 03:02:36 +03:00
BayoNet
5b38a7f441 DOCAPI-7438: EN review, RU translation. Update of quantileTiming docs (#7033)
* Typo fix.

* Update reference.md (#45)

* DOCAPI-7438: RU translation
2019-09-24 03:01:19 +03:00
BayoNet
3d20675529 DOCAPI-7460: EN review. RU translation. Histogram function description (#7034)
* Typo fix.

* Update parametric_functions.md (#42)

* DOCAPI-7460: RU translation.

* Update parametric_functions.md
2019-09-24 02:59:49 +03:00
BayoNet
317e57bbc0 DOCAPI-7984: EN review, RU translation. ASOF JOIN ON docs (#7035)
* Typo fix.

* Update select.md (#41)

* DOCAPI-7984: RU translation
2019-09-24 02:57:32 +03:00
BayoNet
1143eefda6 DOCAPI-7991: EN review, RU translation for the update of Log engines docs (#7040)
* Typo fix.

* Update log_family.md (#43)

* Update tinylog.md (#44)

* DOCAPI-7991: RU translation.
2019-09-24 02:55:50 +03:00
BayoNet
779648f7cc DOCAPI-7695: EN review, RU translation. Functions support for indexes (#7045)
* Typo fix.

* DOCAPI-7695: Typo fixed

* Update mergetree.md (#49)

* DOCAPI-7695: RU translation

* Update mergetree.md
2019-09-24 02:50:26 +03:00
BayoNet
2f580c2bbb DOCAPI-7745: EN review, RU translation for optimize_throw_if_noop docs (#7051)
* Typo fix.

* Update settings.md (#50)

* Update misc.md (#51)

* DOCAPI-7745: RU translation.

* DOCAPI-7745: Fixes.
2019-09-24 02:45:47 +03:00
dasmfm
ff9682cc32 Doc fix for SELECT ... FINAL (#6157)
* Update select.md

* Update select.md
2019-09-24 02:42:52 +03:00
BayoNet
b46e31d198 DOCAPI-7743: EN review, RU translation for CREATE TABLE AS table_function() docs (#7056)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* Update index.md (#57)

* DOCAPI-7743: RU translation.

* Update select.md

* Update index.md
2019-09-24 02:32:02 +03:00
BayoNet
37481d8019 DOCAPI-7437: EN review, RU translation for os_thread_priority docs (#7055)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* Update settings.md (#55)

* DOCAPI-7437: RU translation

* DOCAPI-7437: Fix.
2019-09-24 02:28:53 +03:00
alexey-milovidov
108ea4a330
Merge pull request #6995 from godfreyd/godfrey-javahash-hivehash
Docs(hash_functions): fix javaHash & hiveHash functions
2019-09-24 02:27:49 +03:00
alexey-milovidov
834fe73bad
Update hash_functions.md 2019-09-24 02:27:24 +03:00
alexey-milovidov
56bd02cf3a
Merge pull request #7016 from ClickHouse/yet-another-minor-changes-and-docs-for-hdfs
Cleanup hdfs docs (instead of #6876 for  #5371)
2019-09-24 02:23:59 +03:00
Alexey Milovidov
d8b8c779d2 Changed repository URL, part 2 2019-09-23 19:21:18 +03:00
Alexey Milovidov
8579c26efb Changed repository URL 2019-09-23 19:18:19 +03:00
BayoNet
2d2bc052e1
DOCAPI-8530: Code blocks markup fix (#7060)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.

* docs/en: cleaning some files

* docs/en: cleaning data_types

* docs/en: cleaning database_engines

* docs/en: cleaning development

* docs/en: cleaning getting_started

* docs/en: cleaning interfaces

* docs/en: cleaning operations

* docs/en: cleaning query_lamguage

* docs/en: cleaning en

* docs/ru: cleaning data_types

* docs/ru: cleaning index

* docs/ru: cleaning database_engines

* docs/ru: cleaning development

* docs/ru: cleaning general

* docs/ru: cleaning getting_started

* docs/ru: cleaning interfaces

* docs/ru: cleaning operations

* docs/ru: cleaning query_language

* docs: cleaning interfaces/http

* Update docs/en/data_types/array.md

decorated ```

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/getting_started/example_datasets/nyc_taxi.md

fixed typo

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/getting_started/example_datasets/ontime.md

fixed typo

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/interfaces/formats.md

fixed error

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/table_engines/custom_partitioning_key.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/utils/clickhouse-local.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/query_language/dicts/external_dicts_dict_sources.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/utils/clickhouse-local.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/query_language/functions/json_functions.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/query_language/functions/json_functions.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/query_language/functions/other_functions.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/query_language/functions/other_functions.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/query_language/functions/date_time_functions.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* Update docs/en/operations/table_engines/jdbc.md

Co-Authored-By: BayoNet <da-daos@yandex.ru>

* docs: fixed error

* docs: fixed error
2019-09-23 18:31:46 +03:00
Olga Khvostikova
a6296b2eb0
Merge branch 'master' into yet-another-minor-changes-and-docs-for-hdfs 2019-09-23 18:16:01 +03:00
stavrolia
433e97f9e2 minor changes 2019-09-23 18:12:43 +03:00
stavrolia
fbe3270dfb need to mention... 2019-09-23 17:50:33 +03:00
Ivan Blinkov
7a822ad815
fix Jinja2 (#7011) 2019-09-23 14:08:56 +03:00
Sergei Bocharov
c051964fee fixes after review 2019-09-23 13:48:21 +03:00
Sergei Bocharov
052c1a562d Fixes 2019-09-23 13:10:59 +03:00
Sergei Bocharov
6a4a4b5674 Docs(hash_functions): fix javaHash & hiveHash functions 2019-09-23 13:10:59 +03:00
Alexey Milovidov
70bc89557f Updates for #6969 2019-09-23 01:57:06 +03:00
alexey-milovidov
ef61e3e27d
Merge pull request #6969 from azat-archive/graphite-events-send-absolute-values
Add ability to send events with absolute values to graphite
2019-09-23 01:51:48 +03:00
alexey-milovidov
0dc4b1793d
Merge pull request #7036 from infinivision/fix_bitmapMax_doc
fix bitmapMin and bitmapMax doc
2019-09-23 01:49:04 +03:00
alexey-milovidov
6fa234cea4
Merge pull request #6894 from azat-archive/hashed-dict-memory-usage-v2
[RFC] Add sparsehash support for hashed dictionary (to reduce memory usage)
2019-09-22 15:55:36 +03:00
alexey-milovidov
67e02b4ea0
Merge pull request #6957 from infinivision/add_bitmapSubsetLimit
added bitmapSubsetLimit
2019-09-22 04:58:44 +03:00
Zhichang Yu
ab7ecd84a1 fix bitmapMin and bitmapMax doc 2019-09-21 23:34:44 +08:00
Azat Khuzhin
59763cbb3a
Add ability to send events with absolute values to graphite
<events> sends only deltas for events, while sometimes it is more
convenient to get absolute values (for example to calculate rate).

This patch introduces another directive -- <events_absolute> that will handle
this.

v0: use <events> as bool/string
v2: use <events_absolute>true</events_absolute> over <events>absolute</events>
2019-09-21 02:46:47 +03:00
Azat Khuzhin
420089c301
Add new dictionary layout (sparse_hashed) that is more memory efficient
With this new layout, sparsehash will be used over default HashMap,
sparsehash is more memory efficient but it is also slower.

So in a nutshell:
- HashMap uses ~2x more memory then sparse_hash_map
- HashMap ~2-2.5x faster then sparse_hash_map
(tested on lots of input, and the most close to production was
dictionary with 600KK hashes and UInt16 as value)

TODO:
- fix allocated memory calculation
- getBufferSizeInBytes/getBufferSizeInCells interface
- benchmarks

v0: replace HashMap with google::sparse_hash_map
v2: use google::sparse_hash_map only when <sparse> isset to true
v3: replace attributes with different layout
v4: use ch hash over std::hash
2019-09-21 02:22:40 +03:00
Alexey Milovidov
42b739550b Renamed "storage_policy_name" to "storage_policy" 2019-09-20 23:35:50 +03:00
stavrolia
7309e813bc cleanup hdfs docs 2019-09-20 14:26:00 +03:00
dependabot[bot]
ef75a45fef Bump pyyaml from 3.12 to 5.1 in /docs/tools (#7004)
Bumps [pyyaml](https://github.com/yaml/pyyaml) from 3.12 to 5.1.
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES)
- [Commits](https://github.com/yaml/pyyaml/compare/3.12...5.1)

Signed-off-by: dependabot[bot] <support@github.com>
2019-09-20 12:12:35 +03:00
dependabot[bot]
e07ff38b84 Bump urllib3 from 1.23 to 1.24.2 in /docs/tools (#7003)
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.23 to 1.24.2.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/master/CHANGES.rst)
- [Commits](https://github.com/urllib3/urllib3/compare/1.23...1.24.2)

Signed-off-by: dependabot[bot] <support@github.com>
2019-09-20 12:12:21 +03:00
alexey-milovidov
9df10d8735
Update system_tables.md 2019-09-19 14:00:56 +03:00
alexey-milovidov
9edad23576
Update system_tables.md 2019-09-19 14:00:11 +03:00
alexey-milovidov
b1d581e85b
Update system_tables.md 2019-09-19 13:58:50 +03:00
Sergei Bocharov
dd1af8c2ff docs(system_tables): fixes after review 2019-09-19 13:46:14 +03:00
Sergei Bocharov
c7663d92c6 docs(system_tables): fixes 2019-09-19 13:44:12 +03:00
Sergei Bocharov
4be887a803 docs(system_tables): Added info about system.contributors 2019-09-19 12:16:10 +03:00
Zhichang Yu
0dc3866c36 added bitmapSubsetLimit 2019-09-19 10:15:36 +08:00
alexey-milovidov
ba492274e2
Update settings.md 2019-09-19 02:03:29 +03:00
alexey-milovidov
9b61939b68
Merge pull request #6979 from sherold/max_threads_default
Updating max_threads default value in docs.
2019-09-19 02:02:35 +03:00
alexey-milovidov
24d1b9b8c2
Update settings.md 2019-09-19 02:02:25 +03:00
Stepan Herold
edb43371a0 Updating max_threads default value in docs. 2019-09-18 16:09:45 +02:00
CurtizJ
79a08ef8ea Merge remote-tracking branch 'upstream/master' into merging_redis 2019-09-18 12:58:22 +03:00
Zhichang Yu
460ccb04a2 added bitmapMin and bitmapMax 2019-09-18 16:56:12 +08:00
Fabian Stäber
0a97359f9e
fix typo arbitary -> arbitrary
I hereby agree to the terms of the CLA available at: I hereby agree to the terms of the CLA available at:
2019-09-17 20:00:17 +02:00
Vitaly Baranov
0fb234c63e
Merge branch 'master' into dict_allow_databases 2019-09-15 01:51:44 +03:00
alesapin
541f85b58a Fix links in docs 2019-09-13 17:09:11 +03:00
alesapin
e95223aa07 Better docs 2019-09-13 16:15:19 +03:00
alesapin
ad8aac896e
Update docs/ru/operations/table_engines/mergetree.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-13 14:55:18 +03:00
alesapin
02cff38fef Merge with master 2019-09-13 13:58:23 +03:00
alesapin
47c0b124d2 Better docs 2019-09-13 13:44:10 +03:00
Guillaume Tassery
fab3c43db5 Add documentation 2019-09-13 11:17:28 +02:00
Guillaume Tassery
214d089bb5 Cosmetic and remove documentation 2019-09-13 10:26:04 +02:00
alesapin
9d227b29aa Add ru docs (first version) 2019-09-12 20:31:19 +03:00
Denis Zhuravlev
886efb1794 Doc change. Added description for disable_internal_dns_cache, dns_cache_update_period (#6926) 2019-09-12 19:58:19 +03:00
BayoNet
2c3457dbfe
DOCAPI-7743: CREATE TABLE AS table_function() docs. (#6887)
* Typo fix.

* DOCAPI-7743: Update of docs around table functions.

* DOCAPI-7743: More changes

* DOCAPI-7743: more fixes.

* DOCAPI-7743: CREATE TABLE

* Update docs/en/query_language/table_functions/index.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-7743: Fixes.
2019-09-12 17:14:19 +03:00
BayoNet
7989cfb36a
DOCAPI-7437: os_thread_priority docs (#6883)
* Typo fix.

* DOCAPI-7437: os_thread_priority docs

* Update docs/en/operations/settings/settings.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/en/operations/settings/settings.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/en/operations/settings/settings.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-12 11:43:21 +03:00
Guillaume Tassery
d15d5827ef Add documentation 2019-09-11 13:24:44 +02:00
Ivan Blinkov
8d5a08743a
Add link to clickhouse-flamegraph (#6901) 2019-09-11 12:06:50 +03:00
黄朝晖
3625769e00
Update index.md 2019-09-10 22:26:50 +08:00
BayoNet
aa0e3fd0d1
Docs links fix (#6885)
* Typo fix.

* Links fix.

* Fixed links in docs.

* More fixes.
2019-09-10 14:58:26 +03:00
BayoNet
36c0179f54
Fix of links in docs (#6884)
* Typo fix.

* Links fix.
2019-09-10 14:07:05 +03:00
BayoNet
1bd75b1e74
DOCAPI-7745: optimize_throw_if_noop docs. (#6848)
* Typo fix.

* DOCAPI-7745: The first version.

* DOCAPI-7745: More text

* DOCAPI-7745: More text.

* Update docs/en/operations/settings/settings.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/en/query_language/misc.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-7745: Fixes.
2019-09-10 11:06:22 +03:00
alexey-milovidov
ce47e707c1
Merge pull request #6849 from den-crane/patch-8
Doc change. TTL examples
2019-09-10 02:41:46 +03:00
alexey-milovidov
892959033f
Merge pull request #6857 from den-crane/patch-9
Doc change. Added some system queries (1st attempt).
2019-09-10 02:41:11 +03:00
alexey-milovidov
76459a4f57
Update system.md 2019-09-10 02:41:03 +03:00
alexey-milovidov
87ec80089a
Update system.md 2019-09-10 02:40:41 +03:00
alexey-milovidov
84eafda093
Merge pull request #6875 from den-crane/patch-10
Doc Change. Fixed rowbinary RU translation and added rowbinarywithnamesandtypes
2019-09-10 02:39:01 +03:00
Denis Zhuravlev
282e24975b
Update formats.md 2019-09-09 15:42:12 -03:00
Denis Zhuravlev
1275ed4641
Update system.md 2019-09-09 15:35:41 -03:00
Denis Zhuravlev
8002b7d7a8
Update docs/en/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-09 15:34:48 -03:00
Denis Zhuravlev
851daebe4c
Update docs/ru/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-09 15:34:32 -03:00
Denis Zhuravlev
927a31f8e2
Update docs/en/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-09 15:34:08 -03:00
Denis Zhuravlev
0c6d583a15 Doc change. less confusing description for pointInEllipses (#6790) 2019-09-09 20:51:58 +03:00
Denis Zhuravlev
e8cf800c6e
Update formats.md
Fixed rowbinary RU translation and added rowbinarywithnamesandtypes
2019-09-09 14:12:43 -03:00
Denis Zhuravlev
4004f17b09
Update formats.md
Added RowBinaryWithNamesAndTypes toc. Fixed list formatting.
2019-09-09 14:09:42 -03:00
Denis Zhuravlev
10011d1483
Update formats.md
Fixed rowbinary translation and added rowbinarywithnamesandtypes
2019-09-09 14:05:18 -03:00
CurtizJ
3b3657ff1e Merge branch 'add-ext-dict-redis' of https://github.com/comunodi/ClickHouse into merging_redis 2019-09-09 13:51:50 +03:00
Alexander Mezhov
e25b906c7f
Fix formatting error 2019-09-09 11:18:01 +05:00
alexey-milovidov
50928323eb
Merge pull request #6859 from Enmk/docs_minor_cleanup
Docs cleanup
2019-09-08 06:28:43 +03:00
alexey-milovidov
8389200229
Merge pull request #6832 from CurtizJ/merging_input_function
Merging #5450 (table function input).
2019-09-07 20:16:45 +03:00
Vasily Nemkov
6136662d56 Docs cleanup
Unified formatting of the tables in system database
Removed extra line from settings
2019-09-07 14:03:18 +03:00
alexey-milovidov
25de2e12a2
Merge pull request #6399 from Enmk/replica_recovery_interval
Improvements for failover of Distributed queries
2019-09-07 03:21:30 +03:00
Denis Zhuravlev
34bc227d76
Update docs/en/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-06 20:11:10 -03:00
Denis Zhuravlev
3178b50505
Update docs/en/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-06 20:09:02 -03:00
Denis Zhuravlev
26572e19f9
Update docs/en/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-06 20:08:42 -03:00
Denis Zhuravlev
b8f1ebfe62
Update docs/en/query_language/system.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-06 20:08:29 -03:00
Denis Zhuravlev
2287c590f1
Update system.md
Added some system queries (1st attempt).
2019-09-06 17:56:39 -03:00
Denis Zhuravlev
edf101def0
Update system.md
Added some system queries (1st attempt).
2019-09-06 17:54:37 -03:00
Denis Zhuravlev
115edf343d
Update system.md
Added some system queries (1st attempt).
2019-09-06 17:40:50 -03:00
BayoNet
206062dd5e DOCAPI-7905: Update of the configurations files description. (#6261) 2019-09-06 20:06:13 +03:00
Denis Zhuravlev
a38911d4df
Update mergetree.md
TTL examples / Requested change
2019-09-06 13:57:23 -03:00
Denis Zhuravlev
88ded215ce
Update mergetree.md
TTL examples / Requested change
2019-09-06 13:52:48 -03:00
Denis Zhuravlev
529cffeeab
Update mergetree.md
TTL examples
2019-09-06 12:28:33 -03:00
Denis Zhuravlev
908055bf1a
Update mergetree.md
TTL examples
2019-09-06 12:26:55 -03:00
Denis Zhuravlev
873689b7d5
Update mergetree.md
TTL examples
2019-09-06 12:26:51 -03:00
Denis Zhuravlev
4c1073bd3c
Update mergetree.md
TTL examples
2019-09-06 12:18:24 -03:00
Denis Zhuravlev
2c9081768b
Update mergetree.md
TTL examples
2019-09-06 12:16:14 -03:00
Anton Popov
69da4f30b3
Merge branch 'master' into merging_input_function 2019-09-06 16:20:00 +03:00
BayoNet
76c84d1d63 DOCAPI-7695: Functions support for indexes (#6784) 2019-09-06 12:07:23 +03:00
Denis Zhuravlev
a2c95b3c49
Update array_functions.md
added note about ArrayElement index 0 case.
2019-09-05 19:37:42 -03:00
Denis Zhuravlev
037bd893fc
Update array_functions.md
added note about ArrayElement index 0 case.
2019-09-05 19:36:34 -03:00
Denis Zhuravlev
3f40cd7eef
Update array_functions.md
added note about ArrayElement index 0 case.
2019-09-05 19:33:36 -03:00
Olga Khvostikova
4129d8cf60
Merge pull request #6092 from yandex/globs-in-file-one-more-attempt
Globs in storage file and HDFS
2019-09-05 23:05:37 +03:00
Vasily Nemkov
c2fc71b5e5 Post-PR fixes
Renamed settings, updated docs.
2019-09-05 13:35:36 +03:00
BayoNet
a0a0f1607c
DOCAPI-8259: toInt, toUint docs refactoring and update. (#6797)
* Typo fix.

* DOCAPI-8259: toInt, toUint refactoring and update.

* Update docs/en/query_language/functions/type_conversion_functions.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-8259: Fixes.

* DOCAPI-8259: Fixes.
2019-09-05 10:22:30 +03:00
stavrolia
9c87e39ca2 Merge branch 'globs-in-file-one-more-attempt' of https://github.com/yandex/ClickHouse into globs-in-file-one-more-attempt 2019-09-04 22:56:47 +03:00
stavrolia
5d6959173c Improvement 2019-09-04 22:55:56 +03:00
Olga Khvostikova
600de93532
Update docs/en/operations/table_engines/hdfs.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-04 16:26:52 +03:00
Olga Khvostikova
f2857ac6f2
Update docs/en/operations/table_engines/hdfs.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-04 16:26:03 +03:00
Olga Khvostikova
ec53b27473
Update docs/en/operations/table_engines/hdfs.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-04 16:25:07 +03:00
Olga Khvostikova
282a1e1691
Update docs/en/operations/table_engines/hdfs.md
Co-Authored-By: Ivan Blinkov <github@blinkov.ru>
2019-09-04 16:24:41 +03:00
CurtizJ
7accc09066 Merge branch 'palasonic-add-input-function' of https://github.com/palasonic1/ClickHouse into merging_input_function 2019-09-04 15:25:20 +03:00
stavrolia
32bf915610 More docs 2019-09-04 14:11:30 +03:00
alexey-milovidov
b2e80b0cd9
Merge branch 'master' into query_masking 2019-09-03 22:58:15 +03:00
alexey-milovidov
554a245078
Update settings.md 2019-09-03 22:51:04 +03:00
alexey-milovidov
c5ccce3c71
Merge pull request #6789 from den-crane/patch-4
Doc change. FROM FINAL can be used not only with CollapsingMergeTree
2019-09-03 21:34:04 +03:00
stavrolia
97ac979645 Add docs for hdfs and fix some review comments 2019-09-03 17:23:51 +03:00
alexey-milovidov
bc37ede1e6
Merge pull request #6788 from den-crane/patch-3
Doc change. identity function + translation to russian for throwIf / modelEvaluate
2019-09-03 14:48:37 +03:00
alexey-milovidov
ec02ade403
Merge pull request #6791 from yandex/blinkov-patch-8
fix note markdown
2019-09-03 14:31:32 +03:00
alexey-milovidov
ed308f9467
Merge pull request #6792 from yandex/blinkov-patch-9
title case fixes
2019-09-03 14:29:54 +03:00
Ivan Blinkov
affbbddb18
add to zh as well 2019-09-03 12:18:16 +03:00
Ivan Blinkov
5932460d8f
add to ru as well 2019-09-03 12:15:51 +03:00
Ivan Blinkov
d67203bcd7
Add link to new third-party jdbc driver 2019-09-03 12:14:23 +03:00
Ivan Blinkov
839d4111f8
title case fixes 2019-09-03 12:00:52 +03:00
Ivan Blinkov
96add10212
more fixes 2019-09-03 11:58:28 +03:00
Ivan Blinkov
cd688792b3
more fixes 2019-09-03 11:57:24 +03:00
Ivan Blinkov
e69340dfb5
more fixes 2019-09-03 11:56:16 +03:00
Ivan Blinkov
e514befb1c
fix zh as well 2019-09-03 11:54:57 +03:00
Ivan Blinkov
7541a39325
fix ru as well 2019-09-03 11:54:19 +03:00
Ivan Blinkov
aec5c4531f
fix note markdown 2019-09-03 11:53:22 +03:00
Denis Zhuravlev
fb1b8cf778
Update select.md
FROM FINAL can be used not only with CollapsingMergeTree
2019-09-02 23:21:32 -03:00
Denis Zhuravlev
a438408428
Update select.md
FROM FINAL can be used not only with CollapsingMergeTree
2019-09-02 23:17:59 -03:00
Denis Zhuravlev
9e0b312fbb
Update other_functions.md
throwIf second parameter
2019-09-02 22:27:48 -03:00
Denis Zhuravlev
a38b3b369c
Update other_functions.md
throwIf second parameter
2019-09-02 22:23:07 -03:00
Denis Zhuravlev
b1c6decafd
Update other_functions.md
перевод для modelEvaluate / throwIf
2019-09-02 21:28:22 -03:00
Denis Zhuravlev
bd1aabd280
Update other_functions.md
added description for identity function
2019-09-02 21:18:44 -03:00
Denis Zhuravlev
1cc2603711
Update other_functions.md
added description for identity function
2019-09-02 21:12:14 -03:00
Denis Zhuravlev
b305295d3c
Update other_functions.md
Changed C comment to SQL comment
2019-09-02 20:59:17 -03:00
Denis Zhuravlev
797f556a3e
Update other_functions.md
Changed C comment to SQL comment
2019-09-02 20:58:06 -03:00
alexey-milovidov
b831f2f636
Merge pull request #6786 from den-crane/patch-3
Doc change. Example of max_block_size impact on runningDifference.
2019-09-03 02:24:59 +03:00
Denis Zhuravlev
d7763e132e
Update other_functions.md
Example of max_block_size impact on runningDifference.
2019-09-02 17:15:40 -03:00
Denis Zhuravlev
9ec91df964
Update other_functions.md
Example of max_block_size impact on runningDifference. + runningDifferenceStartingWithFirstValue description
2019-09-02 17:10:20 -03:00
Alexander Tokmakov
31372d5f6b explicitly specify en language 2019-09-02 22:48:13 +03:00
Alexander Tokmakov
9eb1a9bae6 fix links in docs 2019-09-02 21:53:16 +03:00
Denis Zhuravlev
14e16c7a41 Doc change. Example of another approach to collapsing (using negative numbers). (#6751)
* Update collapsingmergetree.md

Example of another approach to collapsing (using negative numbers).

* Update collapsingmergetree.md

Example of another approach to collapsing (using negative numbers).

* Update collapsingmergetree.md

Example of another approach to collapsing (using negative numbers).
2019-09-02 18:11:45 +03:00
Alexander Tokmakov
4cbf095a4a update docs 2019-08-30 21:21:54 +03:00
Alexander Tokmakov
03c83169bd Merge branch 'master' into merging_template_format 2019-08-29 16:34:25 +03:00
alexey-milovidov
9a5488fbd1
Merge pull request #6660 from den-crane/patch-1
Documentation change. range_hashed dict arbitrary type description.
2019-08-27 23:13:07 +03:00
BayoNet
b076933009
DOCAPI-7400: Gorilla codecs. EN review. RU translation. (#6598)
* Update create.md

* DOCAPI-7400: RU translation.

* DOCAPI-7400: Fixes.

* Update docs/ru/query_language/create.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/ru/query_language/create.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-7400: Clarifications.

* DOCAPI-7400: Link fix.
2019-08-27 16:49:56 +03:00
BayoNet
cbc78ffc43
DOCAPI-7443: Virtual columns docs update. EN review. RU translation. (#6640)
* Update index.md (#35)

* DOCAPI-7443: RU translation.

* Link fix.

* DOCAPI-7443: Fixes.

* DOCAPI-7443: Fixes.
2019-08-27 14:04:52 +03:00
BayoNet
9c0b377868
DOCAPI-7431: Queries with parameters docs. EN review. RU translation. (#6632)
* Update cli.md (#36)

* Update http.md (#37)

* DOCAPI-7431: RU Translation.

* DOCAPI-7431: Fix.

* Update docs/en/interfaces/cli.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-7431: Fixes.
2019-08-27 13:24:42 +03:00
BayoNet
a98b91c521
DOCAPI-7436: Enum type docs. EN review, RU translation. (#6630)
* Update enum.md (#33)

* DOCAPI-7436: RU translation.

* Update docs/en/data_types/enum.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/ru/data_types/enum.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-7436: Fixes.
2019-08-26 20:48:48 +03:00
BayoNet
305f3ba479
DOCAPI-7428: domain function docs. EN review, RU translation. (#6624)
* Update url_functions.md

* DOCAPI-7428: RU translation

* DOCAPI-7428: Fix.

* Update docs/en/query_language/functions/url_functions.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/en/query_language/functions/url_functions.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/ru/query_language/functions/url_functions.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/ru/query_language/functions/url_functions.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* Update docs/ru/query_language/functions/url_functions.md

Co-Authored-By: Ivan Blinkov <github@blinkov.ru>

* DOCAPI-7428: Fixes.
2019-08-26 19:09:30 +03:00