mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-12 12:37:14 +00:00
feat(datasource): Database connection Renewal (#2359)
Co-authored-by: aries_ckt <916701291@qq.com> Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: ‘yanzhiyonggit config --global user.email git config --global user.name ‘yanzhiyong <zhiyong.yan@clife.cn>
This commit is contained in:
21
docker/datasources/hive/docker-compose.yml
Normal file
21
docker/datasources/hive/docker-compose.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
version: '3.10'
|
||||
|
||||
services:
|
||||
hiveserver2:
|
||||
image: apache/hive:4.0.1
|
||||
container_name: hiveserver2
|
||||
environment:
|
||||
- SERVICE_NAME=hiveserver2
|
||||
ports:
|
||||
- "10000:10000" # HiveServer2 JDBC Port
|
||||
- "10002:10002" # HiveServer2 Web UI Port
|
||||
volumes:
|
||||
- hive-warehouse:/opt/hive/data/warehouse # Persist Hive data
|
||||
networks:
|
||||
- hive-network
|
||||
|
||||
volumes:
|
||||
hive-warehouse: # For Hive data persistence
|
||||
|
||||
networks:
|
||||
hive-network: # Custom network for Hive services
|
Reference in New Issue
Block a user