I am having multiple jetty server instances to a load balancer. I am setting the following temp directory in jetty.xml
<Call name="setAttribute">
<Arg>javax.servlet.context.tempdir</Arg>
<Arg>/some/dir/foo</Arg>
</Call>
Can multiple servers instances point to the same temp directory?
Yes, multiple server instances can point to the same temp directory. If you are trying to pull something from what directory I'd recommend persisting the temp directory as explained in the documentation you linked.