mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 18:06:56 +08:00
parent
ad1f92d8c7
commit
61218552f1
16
apps/ApacheDoris/2.0.0/data.yml
Normal file
16
apps/ApacheDoris/2.0.0/data.yml
Normal file
@ -0,0 +1,16 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: 8030
|
||||
envKey: PANEL_APP_PORT_HTTP_WEB
|
||||
labelEn: Port
|
||||
labelZh: WEB端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 9030
|
||||
envKey: PANEL_APP_PORT_HTTP_query_port
|
||||
labelEn: Port
|
||||
labelZh: query端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
41
apps/ApacheDoris/2.0.0/docker-compose.yml
Normal file
41
apps/ApacheDoris/2.0.0/docker-compose.yml
Normal file
@ -0,0 +1,41 @@
|
||||
version: '3'
|
||||
services:
|
||||
docker-fe-01:
|
||||
image: "apache/doris:2.0.0_alpha-fe-x86_64"
|
||||
container_name: "doris-fe-01"
|
||||
hostname: "fe-01"
|
||||
environment:
|
||||
- FE_SERVERS=fe1:172.20.80.2:9010
|
||||
- FE_ID=1
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP_WEB}:8030
|
||||
- ${PANEL_APP_PORT_HTTP_query_port}:9030
|
||||
volumes:
|
||||
- ./data/fe-01/doris-meta:/opt/apache-doris/fe/doris-meta
|
||||
- ./data/fe-01/log:/opt/apache-doris/fe/log
|
||||
networks:
|
||||
doris_net:
|
||||
ipv4_address: 172.20.80.2
|
||||
docker-be-01:
|
||||
image: "apache/doris:2.0.0_alpha-be-x86_64"
|
||||
container_name: "doris-be-01"
|
||||
hostname: "be-01"
|
||||
depends_on:
|
||||
- docker-fe-01
|
||||
environment:
|
||||
- FE_SERVERS=fe1:172.20.80.2:9010
|
||||
- BE_ADDR=172.20.80.5:9050
|
||||
ports:
|
||||
- 8041:8040
|
||||
volumes:
|
||||
- ./data/be-01/storage:/opt/apache-doris/be/storage
|
||||
- ./data/be-01/script:/docker-entrypoint-initdb.d
|
||||
- ./data/be-01/log:/opt/apache-doris/be/log
|
||||
networks:
|
||||
doris_net:
|
||||
ipv4_address: 172.20.80.5
|
||||
networks:
|
||||
doris_net:
|
||||
ipam:
|
||||
config:
|
||||
- subnet: 172.20.80.0/24
|
20
apps/ApacheDoris/README.md
Normal file
20
apps/ApacheDoris/README.md
Normal file
@ -0,0 +1,20 @@
|
||||
Apache Doris 是一个基于 MPP 架构的高性能、实时的分析型数据库,以极速易用的特点被人们所熟知,仅需亚秒级响应时间即可返回海量数据下的查询结果,不仅可以支持高并发的点查询场景,也能支持高吞吐的复杂分析场景。基于此,Apache Doris 能够较好的满足报表分析、即席查询、统一数仓构建、数据湖联邦查询加速等使用场景,用户可以在此之上构建用户行为分析、AB 实验平台、日志检索分析、用户画像分析、订单分析等应用。
|
||||
Apache Doris is a high-performance, real-time analytical database based on MPP architecture, known for its extreme speed and ease of use. It only requires a sub-second response time to return query results under massive data and can support not only high-concurrent point query scenarios but also high-throughput complex analysis scenarios. All this makes Apache Doris an ideal tool for scenarios including report analysis, ad-hoc query, unified data warehouse, and data lake query acceleration. On Apache Doris, users can build various applications, such as user behavior analysis, AB test platform, log retrieval analysis, user portrait analysis, and order analysis.
|
||||
|
||||
前期环境准备
|
||||
需在宿主机执行如下命令
|
||||
`sysctl -w vm.max_map_count=2000000`
|
||||
|
||||
|
||||
查看 FE 运行状态
|
||||
你可以通过下面的命令来检查 Doris 是否启动成功
|
||||
`curl http://127.0.0.1:8030/api/bootstrap`
|
||||
这里 IP 和 端口分别是 FE 的 IP 和 http_port(默认8030),如果是你在 FE 节点执行,直接运行上面的命令即可。
|
||||
如果返回结果中带有 "msg":"success" 字样,则说明启动成功。
|
||||
你也可以通过 Doris FE 提供的Web UI 来检查,在浏览器里输入地址
|
||||
http:// fe_ip:8030
|
||||
|
||||
|
||||
使用mysql客户端连接
|
||||
初始账号: root
|
||||
初始密码: 留空
|
20
apps/ApacheDoris/data.yml
Normal file
20
apps/ApacheDoris/data.yml
Normal file
@ -0,0 +1,20 @@
|
||||
name: ApacheDoris
|
||||
tags:
|
||||
- 数据库
|
||||
title: 基于 MPP 架构的高性能、实时的分析型数据库
|
||||
type: 数据库
|
||||
description: Apache Doris 是一个基于 MPP 架构的高性能、实时的分析型数据库
|
||||
additionalProperties:
|
||||
key: ApacheDoris
|
||||
name: Apache Doris-单机版
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 基于 MPP 架构的高性能、实时的分析型数据库
|
||||
shortDescEn: a high-performance, real-time analytical database based on MPP architecture
|
||||
type: tool
|
||||
crossVersionUpdate: false
|
||||
limit: 1
|
||||
recommend: 4
|
||||
website: https://doris.apache.org/
|
||||
github: https://github.com/apache/doris
|
||||
document: https://doris.apache.org/zh-CN/docs/dev/get-starting/
|
BIN
apps/ApacheDoris/logo.png
Normal file
BIN
apps/ApacheDoris/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 59 KiB |
Loading…
Reference in New Issue
Block a user