Compare commits

...

2 Commits

Author SHA1 Message Date
Adam LaCombe
0348c49626
Merge e13c4a9233 into fb54d8b549 2023-05-22 17:41:46 -05:00
Adam LaCombe
e13c4a9233 fix typo magicRecsNotfication > magicRecsNotification 2023-03-31 22:53:03 +00:00
4 changed files with 5 additions and 5 deletions

View File

@ -492,7 +492,7 @@ object ExternalDataSources {
}
}
def magicRecsNotficationOpenOrClickEventsSource(
def magicRecsNotificationOpenOrClickEventsSource(
implicit dateRange: DateRange
): TypedPipe[MagicRecsNotificationLite] = {
DAL

View File

@ -491,7 +491,7 @@ object AssembleMultiTypeGraph {
// user-MRNotifOpenOrClick events from last 7 days
val userMRNotifOpenOrClickEvents: TypedPipe[MagicRecsNotificationLite] =
ExternalDataSources.magicRecsNotficationOpenOrClickEventsSource(dateRange =
ExternalDataSources.magicRecsNotificationOpenOrClickEventsSource(dateRange =
DateRange(dateRange.end - Days(7), dateRange.end))
// user-searchQuery strings from last 7 days

View File

@ -236,13 +236,13 @@ object ExternalDataSources {
}
}
def magicRecsNotficationOpenOrClickEventsSource(
def magicRecsNotificationOpenOrClickEventsSource(
interval: Interval
)(
implicit sc: ScioContext
): SCollection[MagicRecsNotificationLite] = {
sc.customInput(
"ReadMagicRecsNotficationOpenOrClickEventsSource",
"ReadMagicRecsNotificationOpenOrClickEventsSource",
DAL
.read(MagicrecsNotificationLite1DayLagScalaDataset, interval, DAL.Environment.Prod))
.filter { entry =>

View File

@ -423,7 +423,7 @@ trait AssembleMultiTypeGraphScioBaseApp extends ScioBeamJob[DateRangeOptions] {
// user-MRNotifOpenOrClick events from last 7 days
val userMRNotifOpenOrClickEvents =
ExternalDataSources.magicRecsNotficationOpenOrClickEventsSource(interval_7days)
ExternalDataSources.magicRecsNotificationOpenOrClickEventsSource(interval_7days)
// user-searchQuery strings from last 7 days
val userSearchQueryEdges =