Graph aborted on ext sort component

Hello,

I try to use the ext short component but I have an error “java.lang.RuntimeException : IOException”.

My graph

<?xml version="1.0" encoding="UTF-8"?>

Log:
GRAVE: !!! Fatal Error !!! - graph execution is aborting
3 août 2006 13:51:48 org.jetel.graph.WatchDog watch
GRAVE: Node EXT_SORT0 finished with fatal error: java.lang.RuntimeException : IOException when closing tape in carousel: java.io.IOException: Can’t delete TMP file: C:\DOCUME~1\APO\LOCALS~1\Temp\.fbufclv29264.tmp
3 août 2006 13:51:48 org.jetel.graph.WatchDog abort

Hi !

That indicates some problem with your TMP directory - ExtSort uses external (on disk) sorting if it can’t fit all records into memory. This means that it created temp file for it but can’t delete it at the end of processing - a bit strange since it was able to create it at first place.

Try to change your environment variable pointing to TEMP dir or run Clover (java) with following option set:
java -Djava.io.tmpdir=C:\temp

(change c:\temp to whatever directory you want).

David.