-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently, it is not possible to set a parameter to resolve to a mapping: ``` dp.from = df.now ``` It does not get translated to a real time. It remains as "df.now" This translation is interesting for data recovery. We can parameterize prunning of bronze tables with default arguments, like ``` dp.from = df.start_of_today dp.to = df.now ``` When we want to recover from a loss in some window of time, we can manually run the glue job manually in AWS glue, passing the boundaries of the window: ``` dp.from = "2023-07-27T09:34:00" dp.to = "2023-07-28T10:04:00" ```
- Loading branch information
Showing
4 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
path = ${?raw_bucket}"/tmp" | ||
pathy = ${dp.raw_bucket}/tmp | ||
time = ${dp.time} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
path = ${?raw_bucket}"/tmp" | ||
|
||
time = ${df.now} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters