forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecise-code-intel.dot
117 lines (102 loc) · 2.43 KB
/
precise-code-intel.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
digraph architecture {
label="Sourcegraph Code Intelligence Architecture Overview"
rankdir=TD
ratio=fill
concentrate=true
ranksep=1.4
nodesep=0.4
stylesheet="/assets/architecture.css"
graph [
fontname="Iosevka"
fontsize=12
pad=0.2
]
node [
colorscheme="set312"
style="filled"
fillcolor="white"
shape="rectangle"
fontname="Iosevka"
fontsize=10
margin=0.15
target="_blank"
]
edge [
colorscheme="set312"
penwidth=0.6
arrowtail=invis
arrowsize=1.35
]
subgraph cluster_frontend {
label="Sourcegraph frontend"
rank="same"
graph [style="dotted"]
node [fillcolor="1"]
frontend_graphqlbackend [
label="graphql backend"
]
frontend_gitserver_proxy [
label="gitserver proxy"
]
frontend_config [
label="config"
]
}
subgraph cluster_services {
label="Precise code intel system"
rank="same"
graph [style="dotted"]
node [fillcolor="2"]
api_server [
label="api server"
fillcolor="3"
URL="https://github.com/sourcegraph/sourcegraph/tree/master/cmd/precise-code-intel/src/server"
]
worker [
label="worker"
fillcolor="4"
URL="https://github.com/sourcegraph/sourcegraph/tree/master/cmd/precise-code-intel/src/worker"
]
bundle_manager [
label="bundle manager"
fillcolor="5"
URL="https://github.com/sourcegraph/sourcegraph/tree/master/cmd/precise-code-intel/src/bundle-manager"
]
}
subgraph cluster_databases {
label="Databases"
rank="same"
graph [style="dotted"]
node [shape="cylinder"]
postgres [label="postgres"]
volume [label="volume"]
}
frontend_graphqlbackend -> {
api_server
} [
fillcolor="1"
]
api_server -> {
bundle_manager,
postgres,
frontend_config
} [
fillcolor="3"
]
worker -> {
bundle_manager,
postgres,
frontend_gitserver_proxy,
frontend_config
} [
fillcolor="4"
]
bundle_manager -> {
api_server,
volume,
postgres,
frontend_config
} [
fillcolor="5"
]
}