Skip to content

Commit

Permalink
Increase maximum queue name length (#1460)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpalmer authored Nov 5, 2020
1 parent 4c7eaa7 commit a4bd013
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
17 changes: 17 additions & 0 deletions configuration/etl/etl.d/xdmod-migration-9_0_0-9_5_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,23 @@
"schema": "moddb"
}
}
},
{
"name": "update-modw-tables",
"description": "Update modw tables",
"class": "ManageTables",
"definition_file_list": [
"jobs/xdw/job-records.json",
"jobs/xdw/queue.json"
],
"endpoints": {
"destination": {
"type": "mysql",
"name": "Data Warehouse Database",
"config": "datawarehouse",
"schema": "modw"
}
}
}
]
}
2 changes: 1 addition & 1 deletion configuration/etl/etl_tables.d/jobs/xdw/job-records.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
},
{
"name": "queue",
"type": "varchar(32)",
"type": "varchar(255)",
"comment": "Resource queue where the job ran",
"nullable": true
},
Expand Down
2 changes: 1 addition & 1 deletion configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
{
"name": "queue",
"type": "char(50)",
"type": "char(255)",
"nullable": false,
"comment": "DIMENSION: The queue of the resource on which the jobs ran."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
},
{
"name": "queue",
"type": "char(50)",
"type": "char(255)",
"nullable": false,
"comment": "DIMENSION: The queue of the resource on which the jobs ran."
},
Expand Down
4 changes: 2 additions & 2 deletions configuration/etl/etl_tables.d/jobs/xdw/queue.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"columns": [
{
"name": "id",
"type": "char(50)",
"type": "char(255)",
"nullable": false,
"default": "",
"comment": "The name of the queue."
Expand All @@ -19,7 +19,7 @@
},
{
"name": "queue_origin_id",
"type": "char(50)",
"type": "char(255)",
"nullable": true
}
],
Expand Down

0 comments on commit a4bd013

Please sign in to comment.