milvus-io/milvus-sdk-node

How to specify grpc ChannelOptions

logidelic opened this issue · 1 comments

Hello!

While using milvus-sdk-node, I'm frequently running into the grpc issue mentioned here.

It looks like there's a workaround to the problem by overriding the default grpc channelOptions. Are these somehow exposed by the Milvus SDK?

Thank you!

Hello!

While using milvus-sdk-node, I'm frequently running into the grpc issue mentioned here.

It looks like there's a workaround to the problem by overriding the default grpc channelOptions. Are these somehow exposed by the Milvus SDK?

Thank you!

We haven't exposed this in the release.

Here is the code,

'grpc.max_receive_message_length': -1, // set max_receive_message_length to unlimited

And also I think the params of the client constructor should be an object other than 4 parameters. We will do it in the next release.

If you would like to contribute to this, that will be great.