feat: 增加ClickHouse数据库 (#499)

* feat: 增加ClickHouse数据库

* feat: 增加Kafka中间件
This commit is contained in:
刘瑞斌
2023-11-02 16:33:22 +08:00
committed by GitHub
parent ed2ae51128
commit 42e1f305b5
10 changed files with 147 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
additionalProperties:
formFields:
- default: 19000
envKey: PANEL_APP_PORT_TCP
labelEn: Port
labelZh: TCP 端口
required: true
rule: paramPort
type: number
- default: 18123
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: API 端口
required: true
rule: paramPort
type: number
@@ -0,0 +1,23 @@
version: '3'
services:
clickhouse:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8123"
- "${PANEL_APP_PORT_TCP}:9000"
volumes:
- ./clickhouse:/var/lib/clickhouse/
- ./clickhouse-server:/var/log/clickhouse-server/
image: clickhouse/clickhouse-server:23.9.1-alpine
ulimits:
nofile:
soft: 262144
hard: 262144
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true
+21
View File
@@ -0,0 +1,21 @@
# ClickHouse
ClickHouse 一个用于联机分析(OLAP)的列式数据库管理系统(DBMS)
## 主要功能:
- 真正的列式数据库管理系统
- 数据压缩
- 数据的磁盘存储
- 多核心并行处理
- 多服务器分布式处理
- 支持SQL
- 向量引擎
- 实时的数据更新
- 索引
- 适合在线查询
- 支持近似计算
- 自适应连接算法
- 支持数据复制和数据完整性
- 角色的访问控制
+19
View File
@@ -0,0 +1,19 @@
name: ClickHouse
tags:
- 数据库
title: ClickHouse 一个用于联机分析(OLAP)的列式数据库管理系统(DBMS)
type: 数据库
description: ClickHouse 是一个用于联机分析(OLAP)的列式数据库管理系统(DBMS)
additionalProperties:
key: clickhouse
name: ClickHouse
tags:
- Database
shortDescZh: ClickHouse 一个用于联机分析(OLAP)的列式数据库管理系统(DBMS)
shortDescEn: ClickHouse® is a high-performance, column-oriented SQL database management system (DBMS) for online analytical processing (OLAP).
type: runtime
crossVersionUpdate: false
limit: 0
website: https://clickhouse.com/
github: https://github.com/ClickHouse/ClickHouse
document: https://clickhouse.com/docs/zh
Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B