Skip to content

Commit

Permalink
Merge pull request #66 from ExpediaGroup/feature/add-scheduler-proper…
Browse files Browse the repository at this point in the history
…ties

Feature/add scheduler properties
  • Loading branch information
haroldjimenez authored Jan 2, 2025
2 parents 87d3629 + fe558e1 commit ac6b8db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [TBD]
### Added
- Added `metastore-uri` properties to `beekeeper-scheduler-apiary-config.json`.

## [5.2.0] - 2024-11-25
### Added
- Added new variable `beekeeper_db_external_hostname` to support external DB host.
Expand Down
1 change: 1 addition & 0 deletions config-templates.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ data "template_file" "beekeeper_scheduler_apiary_config" {
db_name = var.beekeeper_db_name
db_username = var.db_username
queue = aws_sqs_queue.beekeeper.id
metastore_uri = var.metastore_uri
graphite_config = var.graphite_enabled == "false" ? "" : data.template_file.beekeeper_graphite_config.rendered
}
}
Expand Down
3 changes: 2 additions & 1 deletion files/beekeeper-scheduler-apiary-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"username": "${db_username}"
},
"properties": {
"apiary.queue-url": "${queue}"
"apiary.queue-url": "${queue}",
"metastore-uri": "${metastore_uri}"
}${graphite_config}
}

0 comments on commit ac6b8db

Please sign in to comment.