This is an automated email from the ASF dual-hosted git repository. mblow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/asterixdb.git
commit 672a36b64a0632b72aa4b4df59635ceaa0e340de Author: Ali Alsuliman <[email protected]> AuthorDate: Mon Dec 9 11:16:33 2019 -0800 [ASTERIXDB-2686][RT] Run files are not removed on time - user model changes: no - storage format changes: no - interface changes: no Details: Remove run files on time. Change-Id: Iacff5cef38cee147712bc1ff947ffa40efb0d162 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/4423 Tested-by: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Dmitry Lychagin <[email protected]> --- .../hyracks/algebricks/runtime/operators/win/WindowPartitionWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/win/WindowPartitionWriter.java b/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/win/WindowPartitionWriter.java index b3eb317..6a75f3c 100644 --- a/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/win/WindowPartitionWriter.java +++ b/hyracks-fullstack/algebricks/algebricks-runtime/src/main/java/org/apache/hyracks/algebricks/runtime/operators/win/WindowPartitionWriter.java @@ -104,7 +104,7 @@ final class WindowPartitionWriter { copyToFrame(frameBuffer, writerFrame); } else { if (fileWriter == null) { - FileReference file = ctx.getJobletContext().createManagedWorkspaceFile(fileNamePrefix); + FileReference file = ctx.createManagedWorkspaceFile(fileNamePrefix); fileWriter = new RunFileWriter(file, ctx.getIoManager()); fileWriter.open(); }
