1. statement_info is account-level accessable, but all account's data is in one phy table. Hard to count each account's storage usage, and also leads to scan others accounts' data.
2. current index is `cluster by (request_at, account)`, while the correct one shoulde be `cluster by(account, request_at)` or `cluster by (request_at)`
Is there an existing issue for the same tech request?
Does this tech request not affect user experience?
What would you like to be added ?
ref https://github.com/matrixorigin/MO-Cloud/issues/2005
Why is this needed ?
~solution 1~
seprate accounts' data into individul table.
solustion 2
corrent the
cluster by
index defineAdditional information
No response