-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current data structure for stats #109
Comments
but is result cached? I am not opposed to this, but you need to think about caching results On Mar 22, 2013, at 3:55 PM, lee212 [email protected] wrote:
|
Cloud Metrics keeps result dict unless 'clear' command executed. I am trying to improve current data structure for results since it does not seem well organized in a hierarchical view. I will think about that carefully. |
Cloud Metrics shell returns dict data structure once calculation is finished.
Example 1. Total usage of wall-clock hours for entire period
Example 2. Monthly usage of wall-clock hours for project groups
Current data structure ought to be replaced to a new data structure.
In a nutshell,
current data structure keeps everything in a single dictionary,
it will be changed to
single analysis query keeps a single dictionary. It will lead us to have separated dictionaries for multiple analysis queries.
Proposed new data structure is following:
Updated example 1. Total usage of wall-clock hours for entire period
Updated example 2. Monthly usage of wall-clock hours for project groups
This might help to look up prior analyzed data without re-calculating it again.
The text was updated successfully, but these errors were encountered: