You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If non-zero, the server will return a page of results containing// at most this many items. If zero, the server will choose a// reasonable page size. Must never be negative.
int64 max_results = 2;
Looks like nodejs (unlike other langs) returns just a single channel by default:
Confirmed this behavior in grpc-nodejs v1.7.x and v1.9.x
We've never noticed it, because the framework automatically lists all pages. However, we can remove extra an RPC by setting default max_results to something like 10.
From channelz.proto
Looks like nodejs (unlike other langs) returns just a single channel by default:
Confirmed this behavior in grpc-nodejs v1.7.x and v1.9.x
We've never noticed it, because the framework automatically lists all pages. However, we can remove extra an RPC by setting default
max_results
to something like 10.cc @murgatroid99
The text was updated successfully, but these errors were encountered: