Taskcluster/Deprecated/Query Historical Tasks: Difference between revisions
Jump to navigation
Jump to search
(Created page with "_NOTE_: this is currently a proof-of-concept, and this data is not available via an API or anything like that. [https://github.com/taskcluster/taskcluster-rfcs/issues/49 Soon...") |
ChrisCooper (talk | contribs) m (ChrisCooper moved page Taskcluster/Operations/How-To/Query Historical Tasks to Taskcluster/Deprecated/Query Historical Tasks: Tool no longer exists) |
(No difference)
|
Latest revision as of 23:01, 28 September 2020
_NOTE_: this is currently a proof-of-concept, and this data is not available via an API or anything like that. Soon!
heroku psql -a taskcluster-task-analysis
The `tasks` table is the one you want to look at. Use `\d tasks` to see its columns. It is not particularly well-indexed, so queries may take a while! Temporary tables are helpful (they will be dropped when you exit the session):
create temporary table mystuff as select ...