Link to home
Start Free TrialLog in
Avatar of vvsrk76
vvsrk76

asked on

antcall is slow in linux

<antcall target = " "> is suddenly slow in Linux from yesterday .It is use to be very fast.

Below is my script

<target name="netchange-load-partinterchange" depends="netchange-resolve-partinterchange">
    <for param="file">
      <path>
        <fileset dir="${load.xml.dir}">
          <include name="${date}-xrefs-*.xml.resolved" />
          <include name="${date}-unspaced-*.xml.resolved" />
        </fileset>
      </path>
      <sequential>
        <antcall target="massload-update">
          <param name="massload.file" value="@{file}" />
        </antcall>
      </sequential>
    </for>  
  </target>
One difference is  we have more files in the  our directory "load.xml.dir"(5000 files).
Is this causing the slowness?

Please help me in this.
ASKER CERTIFIED SOLUTION
Avatar of jlevie
jlevie

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vvsrk76
vvsrk76

ASKER

Thank you..