Skip to content

Commit

Permalink
Merge pull request #1580 from eiffel777/queue-dimension-performance-i…
Browse files Browse the repository at this point in the history
…mprovements

Performance improvements to ETLv2 action that loads queues for jobs realm
  • Loading branch information
eiffel777 authored Dec 17, 2021
2 parents 1d04de1 + 78214db commit 0251f62
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion configuration/etl/etl_action_defs.d/jobs/xdw/queue.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@
"queue_origin_id": "COALESCE(queue, 'NA')"
},
"joins": [
{
"name": "hpcdb_jobs_to_ingest",
"schema": "${SOURCE_SCHEMA}",
"alias": "ji"
},
{
"name": "hpcdb_jobs",
"schema": "${SOURCE_SCHEMA}",
"alias": "j"
"alias": "j",
"type": "INNER",
"on": "ji.job_id = j.job_id"
}
],
"where": [
Expand Down

0 comments on commit 0251f62

Please sign in to comment.