Skip to content

Commit c58d95e

Browse files
authored
Bump infinity to 0.6.4 (infiniflow#11104)
### What problem does this PR solve? Bump infinity to 0.6.4 Fixed infiniflow/infinity#3048 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
1 parent edbc396 commit c58d95e

File tree

6 files changed

+3393
-3390
lines changed

6 files changed

+3393
-3390
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
fi
7575
fi
7676
fi
77-
else
77+
elif [[ "$GITHUB_EVENT_NAME" = "pull_request" ]]; then
7878
PR_NUMBER=${{ github.event.pull_request.number }}
7979
PR_SHA_FP=${RUNNER_WORKSPACE_PREFIX}/artifacts/${GITHUB_REPOSITORY}/PR_${PR_NUMBER}
8080
# Calculate the hash of the current workspace content

docker/docker-compose-base.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ services:
7272
infinity:
7373
profiles:
7474
- infinity
75-
image: infiniflow/infinity:v0.6.2
75+
image: infiniflow/infinity:v0.6.4
7676
volumes:
7777
- infinity_data:/var/infinity
7878
- ./infinity_conf.toml:/infinity_conf.toml
@@ -120,8 +120,8 @@ services:
120120
healthcheck:
121121
test: ["CMD", "curl", "http://localhost:9385/healthz"]
122122
interval: 10s
123-
timeout: 5s
124-
retries: 5
123+
timeout: 10s
124+
retries: 120
125125
restart: on-failure
126126

127127
mysql:
@@ -149,7 +149,7 @@ services:
149149
test: ["CMD", "mysqladmin" ,"ping", "-uroot", "-p${MYSQL_PASSWORD}"]
150150
interval: 10s
151151
timeout: 10s
152-
retries: 3
152+
retries: 120
153153
restart: on-failure
154154

155155
minio:
@@ -169,9 +169,9 @@ services:
169169
restart: on-failure
170170
healthcheck:
171171
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
172-
interval: 30s
173-
timeout: 20s
174-
retries: 3
172+
interval: 10s
173+
timeout: 10s
174+
retries: 120
175175

176176
redis:
177177
# swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/valkey/valkey:8
@@ -187,10 +187,9 @@ services:
187187
restart: on-failure
188188
healthcheck:
189189
test: ["CMD", "redis-cli", "-a", "${REDIS_PASSWORD}", "ping"]
190-
interval: 5s
191-
timeout: 3s
192-
retries: 3
193-
start_period: 10s
190+
interval: 10s
191+
timeout: 10s
192+
retries: 120
194193

195194

196195
tei-cpu:

docker/infinity_conf.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = "0.6.2"
2+
version = "0.6.4"
33
time_zone = "utc-8"
44

55
[network]

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ ragflow:
9696
infinity:
9797
image:
9898
repository: infiniflow/infinity
99-
tag: v0.6.2
99+
tag: v0.6.4
100100
pullPolicy: IfNotPresent
101101
pullSecrets: []
102102
storage:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies = [
4848
"html-text==0.6.2",
4949
"httpx[socks]>=0.28.1,<0.29.0",
5050
"huggingface-hub>=0.25.0,<0.26.0",
51-
"infinity-sdk==0.6.2",
51+
"infinity-sdk==0.6.4",
5252
"infinity-emb>=0.0.66,<0.0.67",
5353
"itsdangerous==2.1.2",
5454
"json-repair==0.35.0",

0 commit comments

Comments
 (0)