KevinHuSh
commited on
Commit
·
f6d3d52
1
Parent(s):
f1ccc7f
rm some sensitive info (#157)
Browse files- conf/mapping.json +28 -1
- conf/service_conf.yaml +7 -7
- docker/service_conf.yaml +2 -2
conf/mapping.json
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
{
|
2 |
"settings": {
|
3 |
"index": {
|
4 |
"number_of_shards": 4,
|
@@ -29,6 +29,33 @@
|
|
29 |
}
|
30 |
}
|
31 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
{
|
33 |
"numeric": {
|
34 |
"match": "*_flt",
|
|
|
1 |
+
{
|
2 |
"settings": {
|
3 |
"index": {
|
4 |
"number_of_shards": 4,
|
|
|
29 |
}
|
30 |
}
|
31 |
},
|
32 |
+
{
|
33 |
+
"ulong": {
|
34 |
+
"match": "*_ulong",
|
35 |
+
"mapping": {
|
36 |
+
"type": "unsigned_long",
|
37 |
+
"store": "true"
|
38 |
+
}
|
39 |
+
}
|
40 |
+
},
|
41 |
+
{
|
42 |
+
"long": {
|
43 |
+
"match": "*_long",
|
44 |
+
"mapping": {
|
45 |
+
"type": "long",
|
46 |
+
"store": "true"
|
47 |
+
}
|
48 |
+
}
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"short": {
|
52 |
+
"match": "*_short",
|
53 |
+
"mapping": {
|
54 |
+
"type": "short",
|
55 |
+
"store": "true"
|
56 |
+
}
|
57 |
+
}
|
58 |
+
},
|
59 |
{
|
60 |
"numeric": {
|
61 |
"match": "*_flt",
|
conf/service_conf.yaml
CHANGED
@@ -5,23 +5,23 @@ mysql:
|
|
5 |
name: 'rag_flow'
|
6 |
user: 'root'
|
7 |
password: 'infini_rag_flow'
|
8 |
-
host: '
|
9 |
-
port:
|
10 |
max_connections: 100
|
11 |
stale_timeout: 30
|
12 |
minio:
|
13 |
user: 'rag_flow'
|
14 |
password: 'infini_rag_flow'
|
15 |
-
host: '
|
16 |
es:
|
17 |
-
hosts: 'http://
|
18 |
user_default_llm:
|
19 |
-
factory: '
|
20 |
api_key: 'sk-xxxxxxxxxxxxx'
|
21 |
oauth:
|
22 |
github:
|
23 |
-
client_id:
|
24 |
-
secret_key:
|
25 |
url: https://github.com/login/oauth/access_token
|
26 |
authentication:
|
27 |
client:
|
|
|
5 |
name: 'rag_flow'
|
6 |
user: 'root'
|
7 |
password: 'infini_rag_flow'
|
8 |
+
host: 'mysql'
|
9 |
+
port: 3306
|
10 |
max_connections: 100
|
11 |
stale_timeout: 30
|
12 |
minio:
|
13 |
user: 'rag_flow'
|
14 |
password: 'infini_rag_flow'
|
15 |
+
host: 'minio:9000'
|
16 |
es:
|
17 |
+
hosts: 'http://es01:9200'
|
18 |
user_default_llm:
|
19 |
+
factory: 'Tongyi-Qianwen'
|
20 |
api_key: 'sk-xxxxxxxxxxxxx'
|
21 |
oauth:
|
22 |
github:
|
23 |
+
client_id: xxxxxxxxxxxxxxxxxxxxxxxxx
|
24 |
+
secret_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
25 |
url: https://github.com/login/oauth/access_token
|
26 |
authentication:
|
27 |
client:
|
docker/service_conf.yaml
CHANGED
@@ -20,8 +20,8 @@ user_default_llm:
|
|
20 |
api_key: 'sk-xxxxxxxxxxxxx'
|
21 |
oauth:
|
22 |
github:
|
23 |
-
client_id:
|
24 |
-
secret_key:
|
25 |
url: https://github.com/login/oauth/access_token
|
26 |
authentication:
|
27 |
client:
|
|
|
20 |
api_key: 'sk-xxxxxxxxxxxxx'
|
21 |
oauth:
|
22 |
github:
|
23 |
+
client_id: xxxxxxxxxxxxxxxxxxxxxxxxx
|
24 |
+
secret_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
25 |
url: https://github.com/login/oauth/access_token
|
26 |
authentication:
|
27 |
client:
|