File tree 1 file changed +14
-0
lines changed
org.knime.core/src/eclipse/org/knime/core/data/container
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -2019,6 +2019,13 @@ synchronized void clear() {
2019
2019
m_lifecycle .onClear ();
2020
2020
}
2021
2021
2022
+ /** @return true if {@link #clear()} has been called */
2023
+ boolean isCleared () {
2024
+ synchronized (m_isClearedLock ) {
2025
+ return m_isClearedLock .booleanValue ();
2026
+ }
2027
+ }
2028
+
2022
2029
private static final int MAX_FILES_TO_CREATE_BEFORE_GC = 10000 ;
2023
2030
2024
2031
private static final AtomicInteger FILES_CREATED_COUNTER = new AtomicInteger (0 );
@@ -2925,6 +2932,10 @@ public final Void call() throws Exception {
2925
2932
/** Buffer was already discarded (no rows added) */
2926
2933
return null ;
2927
2934
}
2935
+ if (buffer .isCleared ()) { // added as part of AP-22244 (especially noted during test execution)
2936
+ LOGGER .debug ("Attempting to swap a Buffer that has been cleared ... will ignore." );
2937
+ return null ;
2938
+ }
2928
2939
// START debug AP-13181 buffers not being cleared when workflow is closed and cleaned up
2929
2940
if (m_nodeContext != null ) {
2930
2941
final WorkflowManager wfm = m_nodeContext .getWorkflowManager ();
@@ -2933,6 +2944,9 @@ public final Void call() throws Exception {
2933
2944
if (workflowContext != null ) {
2934
2945
final File tempLocation = workflowContext .getTempLocation ();
2935
2946
if (!tempLocation .isDirectory ()) {
2947
+ if (buffer .isCleared ()) {
2948
+ return null ; // clearing happens asynchronously
2949
+ }
2936
2950
throw new IOException (
2937
2951
"Workflow temp directory " + tempLocation .toString () + " has been deleted." );
2938
2952
}
You can’t perform that action at this time.
0 commit comments