[GLUTEN-10546][FLINK] Support all flink operators for nexmark#10548
[GLUTEN-10546][FLINK] Support all flink operators for nexmark#10548shuai-xu merged 12 commits intoapache:mainfrom
Conversation
philo-he
left a comment
There was a problem hiding this comment.
Some minor comments. Thanks.
...va/org/apache/flink/table/planner/plan/nodes/exec/stream/StreamExecGroupWindowAggregate.java
Outdated
Show resolved
Hide resolved
| int rowtimeIndex = -1; | ||
| int windowType = -1; | ||
| WindowSpec windowSpec = windowing.getWindow(); | ||
| System.out.println("WindowSpec " + windowSpec); |
| final ZoneId shiftTimeZone = | ||
| TimeWindowUtil.getShiftTimeZone( | ||
| windowing.getTimeAttributeType(), TableConfigUtils.getLocalTimeZone(config)); | ||
| final WindowAssigner windowAssigner = createWindowAssigner(windowing, shiftTimeZone); |
There was a problem hiding this comment.
shiftTimeZone and windowAssigner are not used after the modification. Maybe, we can remove it.
There was a problem hiding this comment.
shiftTimeZone is used, so keep it.
...va/org/apache/flink/table/planner/plan/nodes/exec/stream/StreamExecGroupWindowAggregate.java
Outdated
Show resolved
Hide resolved
|
try to run but it seems to fail due to memory leak error: |
It seems this is not the root reason, the job may fail by some other reason, you can check the log. |
What changes are proposed in this pull request?
This pr contains:
How was this patch tested?
This pr is tested by manually run nexmark tests.