Skip to content

Commit 7f7ac76

Browse files
committedNov 17, 2020
📝 readme
1 parent e0d21de commit 7f7ac76

11 files changed

+27
-3
lines changed
 

‎doc/img/AST.png

382 KB
Loading

‎doc/img/CURD.png

559 KB
Loading

‎doc/img/DruidParser.png

1.42 MB
Loading

‎doc/img/Neo4j1.png

289 KB
Loading

‎doc/img/ParserExample.png

1.42 MB
Loading

‎doc/img/SqlExample.png

346 KB
Loading

‎doc/img/整体结构.png

267 KB
Loading

‎doc/img/结果树.png

85.1 KB
Loading

‎doc/img/血缘模型.png

302 KB
Loading

‎doc/kafka/docker-compose.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: '3'
2+
services:
3+
zookeeper:
4+
image: wurstmeister/zookeeper
5+
ports:
6+
- "2181:2181"
7+
kafka:
8+
image: wurstmeister/kafka
9+
depends_on: [ zookeeper ]
10+
ports:
11+
- "9092:9092"
12+
environment:
13+
KAFKA_ADVERTISED_HOST_NAME: 本级内网ip
14+
KAFKA_CREATE_TOPICS: "lineage:3:1"
15+
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
16+
volumes:
17+
- $PWD/docker.sock:/var/run/docker.sock
18+
- $PWD/kafka:/kafka
19+
# kafka-manager:
20+
# image: sheepkiller/kafka-manager
21+
# environment:
22+
# ZK_HOSTS: 10.211.55.2:2181
23+
# ports:
24+
# - "9000:9000"

‎lineage-main/src/main/resources/application.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spring:
4040
lineage:
4141
datasource:
4242
0_gp:
43-
jdbc-url: jdbc:postgresql://172.23.16.68:5432/test
44-
username: hdsp
45-
password: hdsp
43+
jdbc-url: jdbc:postgresql://127.0.0.1:5432/test
44+
username: xxx
45+
password: xxx
4646
driver-class-name: org.postgresql.Driver

0 commit comments

Comments
 (0)