Describe the bug
In meta/client/tidbclient/bucket.go, function ListObjects get every objects after get a list, and it causes high latency. Could it return directly after get a full list?
no, plz check the code in https://github.com/journeymidnight/yig/blob/master/meta/client/tidbclient/bucket.go#L164
It will limit the entries int the select sql.
Describe the bug In meta/client/tidbclient/bucket.go, function ListObjects get every objects after get a list, and it causes high latency. Could it return directly after get a full list?