Skip to content

Commit

Permalink
feat(kinesis): Prefix time path control (#1867)
Browse files Browse the repository at this point in the history
Add the ability to include the year, month, day and hour in the prefix.

While the time path is added automatically when not using partitioning,
it must be explicitly added when partitioning is used.
  • Loading branch information
ml019 authored Nov 20, 2021
1 parent aa8be5c commit af9d67c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion providers/shared/components/datafeed/id.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"Names" : "Order",
"Description" : "The order of the included prefixes",
"Types" : ARRAY_OF_STRING_TYPE,
"Default" : [ "AccountId", "ComponentPath" ]
"Default" : [ "AccountId", "ComponentPath", "TimePath" ]
}
{
"Names" : "AccountId",
Expand All @@ -73,6 +73,12 @@
"Description" : "The full component path defaults",
"Types": BOOLEAN_TYPE,
"Default" : false
},
{
"Names" : "TimePath",
"Description" : "The time path defaults",
"Types": BOOLEAN_TYPE,
"Default" : false
}
]
}
Expand Down

0 comments on commit af9d67c

Please sign in to comment.