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
To resolve a name identifier (koyeb app get appname) or a short-uuid identifier (koyeb app get <short uuid>) to a full-uuid, the idmapper consumes performs a list query, consumes all the pagination and store the items in a tree.
This behavior doesn't scale when there are many resources.
Instead, we need to:
update our APIs, to allow filtering items by name or short uuid
update the idmapper to use these new filters instead of consuming all the pagination, and doing the filter locally
The text was updated successfully, but these errors were encountered:
To resolve a name identifier (
koyeb app get appname
) or a short-uuid identifier (koyeb app get <short uuid>
) to a full-uuid, the idmapper consumes performs a list query, consumes all the pagination and store the items in a tree.This behavior doesn't scale when there are many resources.
Instead, we need to:
The text was updated successfully, but these errors were encountered: