Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] add Health Check for Range over gRPC Connection Loop #2828

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .gitfiles
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
.github/workflows/semver-major-minor.yaml
.github/workflows/semver-patch.yaml
.github/workflows/test-hack.yaml
.github/workflows/unit-test-rust.yaml
.github/workflows/unit-test.yaml
.github/workflows/update-deps.yaml
.github/workflows/update-protobuf.yaml
Expand Down Expand Up @@ -157,7 +158,23 @@ Makefile.d/test.mk
Makefile.d/tools.mk
README.md
SECURITY.md
apis/docs/buf.gen.doc.yaml
apis/docs/buf.gen.payload.yaml
apis/docs/buf.gen.tmpl.yaml
apis/docs/v1/doc.tmpl
apis/docs/v1/docs.md
apis/docs/v1/filter.md
apis/docs/v1/flush.md
apis/docs/v1/index.md
apis/docs/v1/insert.md
apis/docs/v1/mirror.md
apis/docs/v1/object.md
apis/docs/v1/payload.md.tmpl
apis/docs/v1/payload.tmpl
apis/docs/v1/remove.md
apis/docs/v1/search.md
apis/docs/v1/update.md
apis/docs/v1/upsert.md
apis/grpc/v1/agent/core/agent.go
apis/grpc/v1/agent/core/agent.pb.go
apis/grpc/v1/agent/core/agent_vtproto.pb.go
Expand Down Expand Up @@ -1931,6 +1948,7 @@ rust/bin/agent/src/handler.rs
rust/bin/agent/src/handler/common.rs
rust/bin/agent/src/handler/index.rs
rust/bin/agent/src/handler/insert.rs
rust/bin/agent/src/handler/object.rs
rust/bin/agent/src/handler/remove.rs
rust/bin/agent/src/handler/search.rs
rust/bin/agent/src/handler/update.rs
Expand All @@ -1949,6 +1967,11 @@ rust/libs/algorithms/ngt/build.rs
rust/libs/algorithms/ngt/src/input.cpp
rust/libs/algorithms/ngt/src/input.h
rust/libs/algorithms/ngt/src/lib.rs
rust/libs/algorithms/qbg/Cargo.toml
rust/libs/algorithms/qbg/build.rs
rust/libs/algorithms/qbg/src/input.cpp
rust/libs/algorithms/qbg/src/input.h
rust/libs/algorithms/qbg/src/lib.rs
rust/libs/observability/Cargo.toml
rust/libs/observability/src/config.rs
rust/libs/observability/src/lib.rs
Expand Down
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ assignees: ""
- Vald Version: v1.7.16
- Go Version: v1.24.0
- Rust Version: v1.84.1
- Docker Version: v27.4.0
- Kubernetes Version: v1.32.0
- Helm Version: v3.16.3
- NGT Version: v2.3.5
- Faiss Version: v1.9.0
- Docker Version: v27.5.1
- Kubernetes Version: v1.32.1
- Helm Version: v3.17.0
- NGT Version: v2.3.11
- Faiss Version: v1.10.0
11 changes: 6 additions & 5 deletions .github/ISSUE_TEMPLATE/security_issue_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ assignees: ""
- Vald Version: v1.7.16
- Go Version: v1.24.0
- Rust Version: v1.84.1
- Docker Version: v27.4.0
- Kubernetes Version: v1.32.0
- Helm Version: v3.16.3
- NGT Version: v2.3.5
- Faiss Version: v1.9.0
- Docker Version: v27.5.1
- Kubernetes Version: v1.32.1
- Helm Version: v3.17.0
- NGT Version: v2.3.11
- Faiss Version: v1.10.0

10 changes: 5 additions & 5 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
- Vald Version: v1.7.16
- Go Version: v1.24.0
- Rust Version: v1.84.1
- Docker Version: v27.4.0
- Kubernetes Version: v1.32.0
- Helm Version: v3.16.3
- NGT Version: v2.3.5
- Faiss Version: v1.9.0
- Docker Version: v27.5.1
- Kubernetes Version: v1.32.1
- Helm Version: v3.17.0
- NGT Version: v2.3.11
- Faiss Version: v1.10.0

### Checklist

Expand Down
3 changes: 2 additions & 1 deletion Makefile.d/functions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,8 @@ define update-github-actions
VERSION="master"; \
else \
REPO_NAME=`echo $$ACTION_NAME | cut -d'/' -f1-2`; \
VERSION=`curl -fsSL https://api.github.com/repos/$$REPO_NAME/releases/latest | grep -Po '"tag_name": "\K.*?(?=")' | sed 's/v//g' | sed -E 's/[^0-9.]+//g'`;\
echo "$$ACTION_NAME to $$REPO_NAME"; \
VERSION=`curl -fsSL https://api.github.com/repos/$$REPO_NAME/tags | grep -Po '"name": "\K.*?(?=")' | head -n1 | sed 's/v//g' | sed -E 's/[^0-9.]+//g'`;\
fi; \
if [ -n "$$VERSION" ]; then \
OLD_VERSION=`cat $(ROOTDIR)/versions/actions/$$FILE_NAME`; \
Expand Down
5 changes: 4 additions & 1 deletion Makefile.d/k3d.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
K3D_CLUSTER_NAME = "vald-cluster"
K3D_COMMAND = k3d
K3D_NODES = 5
K3D_NETWORK = bridge
K3D_PORT = 6550
K3D_HOST = localhost
K3D_INGRESS_PORT = 8081
Expand All @@ -29,7 +30,7 @@ k3d/install: $(BINDIR)/k3d

$(BINDIR)/k3d: update/k3d
mkdir -p $(BINDIR)
curl -fsSL https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v$(K3D_VERSION) bash
curl -fsSL https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | TAG=v$(K3D_VERSION) K3D_INSTALL_DIR=$(BINDIR) bash
chmod a+x $(BINDIR)/$(K3D_COMMAND)

.PHONY: k3d/start
Expand All @@ -41,6 +42,8 @@ k3d/start:
--host-pid-mode=$(K3D_HOST_PID_MODE) \
--api-port $(K3D_HOST):$(K3D_PORT) \
-v "/lib/modules:/lib/modules" \
--k3s-arg '--kubelet-arg=eviction-hard=imagefs.available<1%,nodefs.available<1%@agent:*' \
--k3s-arg '--kubelet-arg=eviction-minimum-reclaim=imagefs.available=1%,nodefs.available=1%@agent:*' \
$(K3D_OPTIONS)
@make k3d/config

Expand Down
2 changes: 1 addition & 1 deletion apis/docs/v1/insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ service Insert {

## Insert RPC

Inset RPC is the method to add a new single vector.
Insert RPC is the method to add a new single vector.

### Input

Expand Down
10 changes: 5 additions & 5 deletions apis/grpc/v1/agent/core/agent.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions apis/grpc/v1/agent/sidecar/sidecar.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions apis/grpc/v1/discoverer/discoverer.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions apis/grpc/v1/filter/egress/egress_filter.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading