-
Notifications
You must be signed in to change notification settings - Fork 327
Waypoint job list receives large message, errors #3439
Comments
BTW - this will be true for any endpoint that returns a lot of data. Eventually we should be handling this through pagination, but a temp fix might be piping through a limit param for any Another thing that would be good is to detect the size of the response and return an error if it's too large so we can give a better error to the user when we exceed the grpc size limit. |
exactly the same issue
Server logs
But a couple of days ago it worked as expected, and I even deployed an app. But now it just stopped working. |
Hi, it is supposed to be fixed in the latest Waypoint version (https://github.com/hashicorp/waypoint/releases/tag/v0.11.0):
but ...
Huh? Am I missing something ? 😃 |
The issue seems to be that the actual pagination isn't yet implemented on the server side. It's possible to workaround this by setting the |
Still an issue 😭
|
After your Waypoint server has accumulated enough jobs, the CLI command
waypoint job list
will start to fail:$ waypoint job list ! grpc: received message larger than max (14681194 vs. 4194304)
The
limit
option is performed client side, so unfortunately it is no help:$ waypoint job list -limit=1 ! grpc: received message larger than max (14759844 vs. 4194304)
We should provide a better error message here if possible, or better, expand the
job list
to do the limiting server side. Bonus points for pagination, but that's probably much more non-trivialThe text was updated successfully, but these errors were encountered: