As I see in docs:
"Each site deployment and application client can also override the
default property values via tachyon-site.properties file. Note that,
this file must be in the classpath of the Java VM in which Tachyon is
running. The easiest way is to put the site properties file in
directory $TACHYON_HOME/conf."
So, try to put TTL value in that file and you're done. If it's not there, try to add it.
You can also set environment variable in tachyon-env.sh
.
# Worker size set to 512 MB
# Set worker folder to /Volumes/ramdist/tachyonworker
# Set TTL to your value
export TACHYON_JAVA_OPTS="
-Dtachyon.worker.memory.size=512MB
-Dtachyon.worker.data.folder=/Volumes/ramdisk/tachyonworker/
-Dtachyon.master.ttlchecker.interval.ms=<YOUR TTL VALUE>
"