Sidebar

My first-in/first-out file receiver logs a message that sorting may take awhile if I have more than 2,500 files.

0 votes
321 views
asked Nov 25, 2014 by david-f-5427 (1,600 points)
Can I change this number?

1 Answer

0 votes
 
Best answer

You can use the Java start option "qie.sortWarningThreshold" to specify a different threshold. For example:

-Dqie.sortWarningThreshold=1000

NB: The value specified must be a number. If an invalid value is specified or this start option is missing, the default value of 2500 (files) is used.

answered Nov 25, 2014 by david-f-5427 (1,600 points)
...