Actions
Bug #5560
open[DRAFT] [API] Good API for accessing the old_ and new_attributes in Logs table properties column
Start date:
Due date:
% Done:
0%
Estimated time:
Story points:
2.0
Description
Problems with the
old_attributes
and new_attributes
hashes in the properties hash:
- They don't look quite close enough to "what the API response to GET would have looked like at the time" for clients to reuse code to interpret/display them (e.g., timestamp formats can be different, computed properties are not present, locators in manifests are not signed).
- The
*_attributes
hashes can be huge (notably for collection updates, where there are two copies of the manifest). This uses a lot of database space, and (worse) makes it very slow for clients to retrieve logs (unless they useselect
to avoid retrieving any properties). - Even the associated
old_etag
andnew_etag
fields are not indexable or searchable.
Possible approach:
Add a version table (either a single one, or a table per model type), indexed by etag. Store the attributes in the version table. In the logs table, just store the old and new etags. Provide a distinct API for retrieving a specific version of an object (in the usual API response format for that object type) by giving its etag. Optionally, provide an API for retrieving the logs and the object versions referenced by the logs in one request (this would be as complete as the current behavior -- but that isn't necessarily important).
Updated by Tom Clegg almost 10 years ago
- Description updated (diff)
- Category set to API
Updated by Tom Clegg almost 10 years ago
- Target version changed from Arvados Future Sprints to 2015-04-29 sprint
Updated by Tom Clegg over 9 years ago
- Target version changed from 2015-04-29 sprint to Arvados Future Sprints
Updated by Ward Vandewege over 3 years ago
- Target version deleted (
Arvados Future Sprints)
Actions