Certain advanced aspects of Structure's behavior might not have dedicated configuration pages, being controlled by application properties or system properties instead. This page lists Structure-related properties and describes how to set them.

Setting Application Properties with the Structure Dark Features and Fine Tuning Interface

The easiest way to add and manage custom Structure properties and dark features is to use the Structure dark features and Fine Tuning interface.

To access the interface, you must have Jira Administration permissions and enter the interface location directly into your browser: https://YOUR_JIRA_ADDRESS/secure/admin/StructureDarkFeatures.jspa

Guidelines for Adding/Removing Property and Values

Setting System Properties

You can set System properties during Startup or using Script Runner.

Both of the following methods can also be used to set Structure properties; but we recommend using the admin interface.

Setting System Properties on Startup

You can set System properties using the -D JIRA startup option, for example:

-Dstructure.sync.guard.email.admin.cycles=5

Configuring JIRA startup options is described in this article. You will need to restart JIRA for the properties to take effect.

Setting System Properties with Script Runner

You can also set system properties using the Script Runner add-on.

  1. Install Script Runner.
  2. Go to Administration | Add-Ons | Script Runner | Script Console.
  3. Select Groovy as the Script Engine.
  4. Enter the following code into the Script text box, adjust property name and value as needed, and click Run Now.
System.setProperty("structure.sync.guard.email.admin.cycles", "5")

The changes take effect after you restart the Structure, but the properties will be reset to their default values when you restart JIRA. In some cases for settings to take effect you have to reinstall the Structure. But If you want the changes to be permanent, please use the -D startup option as described above.

Structure size limit

PropertyDefaultExplanation
com.almworks.jira.structure.AOBasedStructureManager.forestSizeLimit
100000
The maximum number of rows that one structure can contain. Size exceeding operations will be blocked.

Structure Automation limits

PropertyDefaultExplanation
structure.gfs.generationTimeHardLimit
600
The maximum amount of time that can be spent for Structure generation (in seconds).

Automation Defaults

PropertyDefaultExplanation
structure.generator.defaults.disableUpdates
false

When adding generators:

  • If set to "false" (default) - the "allow changes" box is initially checked.
  • If set to "true" - the "allow changes" box is initially unchecked.

Manual adjustments

PropertyDefaultExplanation
structure.gfs.manualAdjustments.enable
true
Setting this property to false will disable manual adjustments for the entire Jira Instance. All adjustment-related UI elements and controls will disappear. Existing manual adjustments will be kept in the database, but will not be applied.
structure.gfs.manualAdjustments.maxAdjustmentsPerStructure2000The maximum number of manual adjustments per one structure. When this limit is reached adding new manual adjustments will be impossible. If you reduce this limit, you may have to remove all manual adjustments for the structures that exceed it.
structure.gfs.manualAdjustments.maxAdjustmentsPerAction200

The maximum number of manual adjustments per one user action. If this limit is exceeded the action will be aborted without making any changes.

Hidden Issue Links

PropertyDefaultExplanation
structure.feature.hiddenLinks.enabled
false
Set to true to enable support for hidden issue links.

Index Consistency Checks

PropertyDefaultExplanation
structure.indexConsistencyChecker.disabled
false
Set to true to disable periodical checks of Lucene index consistency.

Synchronizers

Synchronization lets you keep Structure issue hierarchy in sync with some other issue properties.

PropertyDefaultExplanation
structure.feature.synchronizers.enabled
false
Set to true to enable Synchronizers within Structure.

Synchronizer Cycle Guard

The cycle guard is a component that detects conflicting synchronizers and prevents them from cycling forever, overriding each other's changes. The table below describes the system properties that control the cycle guard.

PropertyDefaultExplanation
structure.sync.guard.disable
false
Set to true to disable the cycle guard. Conflicting synchronizers will not be prevented from running forever. Not recommended.
structure.sync.guard.maxAutosyncsWithoutUserChanges
10
The maximum number of times that a synchronizer is allowed to run, processing the changes generated by another synchronizer. If this limit is exceeded, the two synchronizers are considered to be in conflict.
structure.sync.guard.stop.disable
false
If true, conflicting synchronizers will not be disabled automatically. The cycling may repeat after a user-generated change.
structure.sync.guard.email.owner.disable
false
If true, the cycle guard will never send e-mail notifications to synchronizer owners.
structure.sync.guard.email.admin.disable
false
If true, the cycle guard will never send e-mail notifications to JIRA administrators.
structure.sync.guard.email.admin.cycles
10

The minimum number of times a cycle must be detected for a synchronizer before an e-mail notification about that synchronizer is sent to JIRA administrators.

The counter is reset when a synchronizer is automatically disabled, so if this number is greater than 1 and automatic disabling is on, the administrators will not be notified.