Hi Damian,
tdbloader3 uses the directory you specify as temporary directory to
spill stuff on disk (via DataBags contributed by Stephen).
On many systems /tmp is limited (for good reasons), therefore we need to
give users somehow the opportunity to set the java.io.tmpdir property.

Paolo

On 08/08/12 23:35, Damian Steer wrote:
> Andy,
>
> tdbloader3 has the following addition:
>
> # TMP on Windows, and TMPDIR on linux.
> T=
> if [ "$TMP" != "" ]
> then
>     T="$TMP"
>     fi
> if [ "$TMPDIR" != "" ]
> then
>     T="$TMPDIR"
>     fi
>
> # ---- Setup
> JVM_ARGS=${JVM_ARGS:--Xmx1024M}
> if [ "$T" != "" ]
> then
>     JVM_ARGS="$JVM_ARGS -Djava.io.tmpdir=$T"
>     fi
>
> Shall I roll this back to the template? Why was this change made?
>
> Damian
>

Reply via email to