Skip to content

Commit

Permalink
Merge pull request #1500 from eiffel777/add-indexes-for-federation
Browse files Browse the repository at this point in the history
Add indexes that will help federated module ingest be faster
  • Loading branch information
eiffel777 authored Feb 26, 2021
2 parents a9145bb + 2dafe72 commit 338c7fb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions configuration/etl/etl_tables.d/jobs/xdw/hosts.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@
],
"type": "BTREE",
"is_unique": true
},
{
"name": "host_origin_id_idx",
"columns": [
"host_origin_id"
],
"type": "BTREE",
"is_unique": false
}
],
"triggers": []
Expand Down
8 changes: 8 additions & 0 deletions configuration/etl/etl_tables.d/jobs/xdw/job-tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,14 @@
],
"type": "BTREE",
"is_unique": true
},
{
"name": "job_id_origin_id_idx",
"columns": [
"job_id_origin_id"
],
"type": "BTREE",
"is_unique": false
}
],
"triggers": []
Expand Down

0 comments on commit 338c7fb

Please sign in to comment.