Commit Graph

133898 Commits

Author SHA1 Message Date
Maksim Galkin
50377d2450 fix date_min of DateTime 2024-05-19 08:41:30 +00:00
Maksim Galkin
afb47e4183 . 2024-05-09 19:32:43 +00:00
Maksim Galkin
3e7041c1f4 . 2024-05-09 18:33:46 +00:00
Maksim Galkin
ff9c0934ce changes in tests and functions because of time zone 2024-05-09 17:52:50 +00:00
Maksim Galkin
f52c24f753 tests fixes 2024-05-09 08:18:02 +00:00
Maksim Galkin
c82687c9a6 fixes + functions docs 2024-05-08 22:17:59 +00:00
Maksim Galkin
2f8341d8c1 style 2024-05-08 16:52:36 +00:00
Maksim Galkin
f4990f26d9 fixes 2024-05-08 16:38:53 +00:00
Maksim Galkin
fb6c931262 Style fixes 2024-05-04 22:49:10 +00:00
Maksim Galkin
32f267999d changeDate implementation fixes 2024-05-04 21:28:32 +00:00
Maksim Galkin
8f11262666 ome style changes 2024-04-30 13:36:36 +00:00
Ubuntu
d84e272ed8 Add changeDate functions 2024-04-30 13:15:23 +00:00
Max K
0947d5c89e
CI: ci cache. step 1 (#58664)
* ci cache class
 #no_merge_commit #ci_set_reduced
2024-02-02 18:10:47 +01:00
Julia Kartseva
f41f4e4bd0
Merge pull request #58486 from jkartseva/adjustable-async-timeouts
Adjustable asynchronous insert timeouts
2024-02-02 08:53:58 -08:00
Raúl Marín
062b0b211e
Merge pull request #59509 from ClickHouse/revert-59375-poco-logger-small-refactoring
Revert "Poco Logger small refactoring"
2024-02-02 16:06:12 +01:00
Mikhail f. Shiryaev
3fe8babe05
Merge pull request #59520 from ClickHouse/update-create-pr-action
Update the peter-evans/create-pull-request action to v6
2024-02-02 14:52:32 +01:00
Mikhail f. Shiryaev
9febc8e5b4
Update the peter-evans/create-pull-request action to v6 2024-02-02 14:39:23 +01:00
Mikhail f. Shiryaev
d30e65f0e0
Merge pull request #59515 from ClickHouse/auto/v23.11.5.29-stable
Update version_date.tsv and changelogs after v23.11.5.29-stable
2024-02-02 14:01:24 +01:00
robot-clickhouse
67ac92e1a1 Update version_date.tsv and changelogs after v23.11.5.29-stable 2024-02-02 12:55:17 +00:00
Mikhail f. Shiryaev
7012861faa
Merge pull request #59511 from ClickHouse/auto/v23.12.3.40-stable
Update version_date.tsv and changelogs after v23.12.3.40-stable
2024-02-02 13:50:22 +01:00
robot-clickhouse
ae6618e0b3 Update version_date.tsv and changelogs after v23.12.3.40-stable 2024-02-02 11:57:38 +00:00
Mikhail f. Shiryaev
afe58c237c
Merge pull request #59510 from ClickHouse/auto/v24.1.2.5-stable
Update version_date.tsv and changelogs after v24.1.2.5-stable
2024-02-02 12:46:59 +01:00
robot-clickhouse
e7f63abc2f Update version_date.tsv and changelogs after v24.1.2.5-stable 2024-02-02 11:41:46 +00:00
Raúl Marín
87d493533c
Revert "Poco Logger small refactoring" 2024-02-02 12:10:05 +01:00
Alexander Gololobov
095648d7bc
Merge pull request #59388 from ClickHouse/system_zookeeper_retries
Retry disconnects and expired sessions when reading system.zookeeper
2024-02-02 11:52:15 +01:00
Robert Schulze
bf0733b7e9
Merge pull request #59462 from zhongyuankai/order_by_bug_fix
Fix `SELECT * FROM [...] ORDER BY ALL` with Analyzer
2024-02-02 10:35:05 +01:00
Robert Schulze
90c2bf691c
Merge remote-tracking branch 'ClickHouse/master' into order_by_bug_fix 2024-02-02 09:30:56 +00:00
Julia Kartseva
505b9bac44 Update SettingsChangesHistory.h 2024-02-02 07:15:27 +00:00
Julia Kartseva
7c715e66a2 Update existing tests 2024-02-02 07:15:24 +00:00
Julia Kartseva
5b07039ab2 Update settings.md 2024-02-01 22:45:10 +00:00
Julia Kartseva
689c368b76 Adaptive async timeouts: consider queue flush history
In addition to the time since the most recent insert,
consider the elapsed time between the two recent queue
flushes when decreasing the timeout or processing an
entry synchronously.
2024-02-01 22:45:10 +00:00
Julia Kartseva
17d2455448 Integration tests for adaptive async insert timeout
Add initial tests.
2024-02-01 22:45:09 +00:00
Julia Kartseva
4ef02a1895 Log timeout for entries processed asynchronously 2024-02-01 22:45:09 +00:00
Julia Kartseva
c04e5a4f35 Asynchronous insert queue size and bytes metrics
Add AsynchronousInsertQueueSize and AsynchronousInsertQueueBytes
metrics to improve observability of asynchronous inserts.
The metrics do not account for tasks dispatched for immediate processing
(as opposed to, e.g., PendingAsyncInsert).

```
SELECT value
FROM system.metrics
WHERE metric IN ('AsynchronousInsertQueueSize', 'PendingAsyncInsert')

Query id: a711dd83-b48d-4ad5-8031-fa59b21a7c38

┌─value─┐
│    18 │
│    23 │
└───────┘
```

```
SELECT value
FROM system.metrics
WHERE metric IN ('AsynchronousInsertQueueSize', 'AsynchronousInsertQueueBytes')

Query id: b35a7ceb-2bb5-46ad-b301-e6cf03508699

┌─value─┐
│    28 │
│  1372 │
└───────┘
```
2024-02-01 22:45:09 +00:00
Julia Kartseva
04c8bd1be5 Adaptive asynchronous insert timeouts
Implement the algorithm described in #56783 for adaptive asynchronous
insert timeouts.
- The adaptive async insert timeout can take values within
[async_insert_busy_timeout_min_ms, async_insert_busy_timeout_max_ms].
- The initial value is set to async_insert_busy_timeout_min_ms.
- If the elapsed time since the most recent queue insert was
  greater than the maximum timeout, process the queue content immediately,
  and reduce the timeout.
- If the elapsed time was long enough (longer than a would-be decreased
  timeout), decrease the timeout.
- The adaptive timeout is changes exponentially based on the
  async_insert_busy_timeout_{increase|decrease}_rate.

Fixes: https://github.com/ClickHouse/ClickHouse/issues/56783
2024-02-01 22:45:06 +00:00
Alexey Milovidov
3fcfcd469a
Merge pull request #59499 from ClickHouse/binary-better
Fixes for binary.html
2024-02-01 21:50:08 +01:00
Alexey Milovidov
15467f2efb
Merge pull request #59451 from ClickHouse/remove-unused-headers
CLion says these headers are unused
2024-02-01 21:47:17 +01:00
Alexey Milovidov
667256a67d Fixes for binary.html 2024-02-01 20:36:38 +01:00
Alexey Milovidov
6100e4a0ca
Merge pull request #59479 from ClickHouse/revert-59386-update_libxml2
Revert "Update libxml2 version to address some bogus security issues"
2024-02-01 19:21:25 +01:00
Alexey Milovidov
847eb86298
Merge pull request #59299 from nickitat/upd_aws_sdk
Update AWS SDK to 1.11.234
2024-02-01 19:20:42 +01:00
Kseniia Sumarokova
e029021696
Merge pull request #59446 from ClickHouse/s3-queue-allow-to-add-start-point
Allow to define a starting point for s3queue ordered mode at creation
2024-02-01 16:46:24 +01:00
Raúl Marín
1438dc2f2d
Merge pull request #59461 from Algunenano/parallel_replicas_cte_fix
Fix problem detected by UBSAN
2024-02-01 16:00:33 +01:00
Nikolai Kochetov
7e77c52c75
Merge pull request #59375 from kitaisreal/poco-logger-small-refactoring
Poco Logger small refactoring
2024-02-01 14:52:00 +01:00
Raúl Marín
e6061fa9f9
Revert "Update libxml2 version to address some bogus security issues" 2024-02-01 14:46:16 +01:00
Alexey Milovidov
f52b08070f Merge branch 'master' into remove-unused-headers 2024-02-01 13:42:37 +01:00
Mikhail f. Shiryaev
81fe2f330c
Merge pull request #59444 from azat/fix-stripped-stacktraces
Fix stacktraces for binaries without debug symbols
2024-02-01 13:38:09 +01:00
Alexander Gololobov
6e82dc81fc Use fixed seed in test 2024-02-01 13:03:20 +01:00
Robert Schulze
82a4fa0dfc
Smaller fixups 2024-02-01 11:58:43 +00:00
robot-ch-test-poll
97f715f8ee
Merge pull request #59459 from bobmoff/patch-1
Update configuration-files.md
2024-02-01 12:46:22 +01:00
robot-clickhouse
fe829cac48 Automatic style fix 2024-02-01 11:43:55 +00:00