mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
Merge branch 'master' into hanfei/fix-async-flaky
This commit is contained in:
commit
ad9bb83464
@ -33,6 +33,13 @@ On Ubuntu/Debian you can use the automatic installation script (check [official
|
|||||||
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note: in case of troubles, you can also use this:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo apt-get install software-properties-common
|
||||||
|
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||||||
|
```
|
||||||
|
|
||||||
For other Linux distribution - check the availability of the [prebuild packages](https://releases.llvm.org/download.html) or build clang [from sources](https://clang.llvm.org/get_started.html).
|
For other Linux distribution - check the availability of the [prebuild packages](https://releases.llvm.org/download.html) or build clang [from sources](https://clang.llvm.org/get_started.html).
|
||||||
|
|
||||||
#### Use the latest clang for Builds
|
#### Use the latest clang for Builds
|
||||||
|
@ -9,7 +9,7 @@ slug: /en/install
|
|||||||
You have two options for getting up and running with ClickHouse:
|
You have two options for getting up and running with ClickHouse:
|
||||||
|
|
||||||
- **[ClickHouse Cloud](https://clickhouse.com/cloud/):** the official ClickHouse as a service, - built by, maintained, and supported by the creators of ClickHouse
|
- **[ClickHouse Cloud](https://clickhouse.com/cloud/):** the official ClickHouse as a service, - built by, maintained, and supported by the creators of ClickHouse
|
||||||
- **[Self-managed ClickHouse](https://github.com/ClickHouse/ClickHouse):** ClickHouse can run on any Linux, FreeBSD, or Mac OS X with x86_64, AArch64, or PowerPC64LE CPU architecture
|
- **[Self-managed ClickHouse](#self-managed-install):** ClickHouse can run on any Linux, FreeBSD, or Mac OS X with x86_64, AArch64, or PowerPC64LE CPU architecture
|
||||||
|
|
||||||
## ClickHouse Cloud
|
## ClickHouse Cloud
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ def configure_from_zk(zk, querier=None):
|
|||||||
zk.create(path=path, value=value, makepath=True)
|
zk.create(path=path, value=value, makepath=True)
|
||||||
has_changed = True
|
has_changed = True
|
||||||
except NodeExistsError:
|
except NodeExistsError:
|
||||||
if zk.get(path) != value:
|
if zk.get(path)[0] != value:
|
||||||
zk.set(path=path, value=value)
|
zk.set(path=path, value=value)
|
||||||
has_changed = True
|
has_changed = True
|
||||||
if has_changed and querier is not None:
|
if has_changed and querier is not None:
|
||||||
|
@ -482,12 +482,14 @@ th
|
|||||||
tmp
|
tmp
|
||||||
tokenization
|
tokenization
|
||||||
toml
|
toml
|
||||||
|
toolchain
|
||||||
toolset
|
toolset
|
||||||
tskv
|
tskv
|
||||||
tsv
|
tsv
|
||||||
tui
|
tui
|
||||||
turbostat
|
turbostat
|
||||||
txt
|
txt
|
||||||
|
ubuntu
|
||||||
uint
|
uint
|
||||||
unary
|
unary
|
||||||
unencrypted
|
unencrypted
|
||||||
|
Loading…
Reference in New Issue
Block a user