Skip to content

Commit

Permalink
[CLN] Cleanup frontend after query pushdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Sicheng Pan committed Dec 17, 2024
1 parent d431c5f commit b680440
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 894 deletions.
15 changes: 0 additions & 15 deletions chromadb/execution/executor/distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ def count(self, plan: CountPlan) -> int:
try:
count_result = executor.Count(convert.to_proto_count_plan(plan))
except grpc.RpcError as rpc_error:
if (
rpc_error.code() == grpc.StatusCode.INTERNAL
and "version mismatch" in rpc_error.details()
):
raise VersionMismatchError()
raise rpc_error
return convert.from_proto_count_result(count_result)

Expand All @@ -71,11 +66,6 @@ def get(self, plan: GetPlan) -> GetResult:
try:
get_result = executor.Get(convert.to_proto_get_plan(plan))
except grpc.RpcError as rpc_error:
if (
rpc_error.code() == grpc.StatusCode.INTERNAL
and "version mismatch" in rpc_error.details()
):
raise VersionMismatchError()
raise rpc_error
records = convert.from_proto_get_result(get_result)

Expand Down Expand Up @@ -118,11 +108,6 @@ def knn(self, plan: KNNPlan) -> QueryResult:
try:
knn_result = executor.KNN(convert.to_proto_knn_plan(plan))
except grpc.RpcError as rpc_error:
if (
rpc_error.code() == grpc.StatusCode.INTERNAL
and "version mismatch" in rpc_error.details()
):
raise VersionMismatchError()
raise rpc_error
results = convert.from_proto_knn_batch_result(knn_result)

Expand Down
Loading

0 comments on commit b680440

Please sign in to comment.