Skip to content

Commit

Permalink
rm debug=true
Browse files Browse the repository at this point in the history
  • Loading branch information
caiocamatta-stripe committed Dec 13, 2023
1 parent 64f220b commit 79eeecf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flink/src/main/scala/ai/chronon/flink/FlinkJob.scala
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ class FlinkJob[T](eventSrc: FlinkSource[T],
.sideOutputLateData(tilingLateEventsTag)
.aggregate(
// See Flink's "ProcessWindowFunction with Incremental Aggregation"
preAggregator = new FlinkRowAggregationFunction(groupByServingInfoParsed.groupBy, inputSchema, debug = true),
windowFunction = new FlinkRowAggProcessFunction(groupByServingInfoParsed.groupBy, inputSchema, debug = true)
preAggregator = new FlinkRowAggregationFunction(groupByServingInfoParsed.groupBy, inputSchema),
windowFunction = new FlinkRowAggProcessFunction(groupByServingInfoParsed.groupBy, inputSchema)
)
.uid(s"tiling-01-$featureGroupName")
.name(s"Tiling for $featureGroupName")
Expand Down

0 comments on commit 79eeecf

Please sign in to comment.