Anybody has any clue, what is this jira property ?
jira.index.background.batch.size
when I look at this, the default value was set as : 1000. what happens if the default value increased or decreased ?
Thanks
Hi,
The property is set in the file:<JIRA-INST>/atlassian-jira/WEB-INF/classes/jpm.xml
and looks like:
<property>
            <key>jira.index.background.batch.size</key>
            <description>The number of issues to read from the database at once during background indexing.</description>
            <default-value>1000</default-value>
            <type>uint</type>
            <admin-editable>false</admin-editable>
                        <sysadmin-editable>true</sysadmin-editable>
            <requires-restart>false</requires-restart>
        </property>
So it seems that it defines the number of items to read at once from the database during a background index.
Hope that helped!
// Svante
 
 
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.