-
Notifications
You must be signed in to change notification settings - Fork 166
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
status -3 io.grpc.StatusRuntimeException: UNIMPLEMENTED: unknown service milvus.proto.milvus.MilvusService #363
Comments
I get this on linux with version 2.2.0. This happens in linux and works well in Mac.
|
@abratnap please check if there is a mismatch between Milvus and Milvus SDK version. This also happens to me with Milvus and PyMilvus in Python, as specified in https://github.com/milvus-io/pymilvus |
Check the release note here https://milvus.io/docs/release_notes.md. |
Did you solve this problem(unknown method GetLoadingProgress for service)? What solved it? @abratnap |
@yhmo |
I think this error is raised from CheckHealth interface. This CheckHealth interface was added lately in milvus which might not be available in old version of Milvus. Since you are using older version of milvus, i think upgrading Milvus to latest version will solve this issue. |
Facing the same issue when I load the data into collection using collection.load() I have tried upgrading and downgrading them but any other combination results in compatiblity issue Error: pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=<_MultiThreadedRendezvous of RPC that terminated with: |
The GetLoadingProgress API is available from Milvus v2.2.1. You will get this error if you are using Milvus 2.1.x. |
bug content bellow: milvus version: 2.4.14 |
final MilvusServiceClient milvusClient = new MilvusServiceClient(
ConnectParam.newBuilder()
.withHost("...")
.withPort(19531)
.build());
boolean exist = milvusClient.hasCollection(
HasCollectionParam.newBuilder().withCollectionName(tableName).build()
).getData();
when i execute this code,the response have a exception : status -3 io.grpc.StatusRuntimeException: UNIMPLEMENTED: unknown service milvus.proto.milvus.MilvusService
SDK versions these two sdk version i had tried ,both response have these exception
io.milvus milvus-sdk-java 2.0.4 io.milvus milvus-sdk-java 2.0.2 milvus version 2.0.2The text was updated successfully, but these errors were encountered: