-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comment on "acquireTriggersWithinLock" property #1
Comments
Do you mean only in Non-Cluster mode? Because if you are in clustered mode, we automatically use the DB lock already. |
Closing outdated, unresolved issues. Please, reopen if still relevant. |
MaxQuartzField
pushed a commit
to MaxQuartzField/quartz
that referenced
this issue
Jun 8, 2022
[Description:]resolve XMLSchedulingDataProcessorTest issue [Binary Source:]NA
MaxQuartzField
pushed a commit
to MaxQuartzField/quartz
that referenced
this issue
Jun 9, 2022
[Description:]Signed-off-by:maxquartzfieldmaxquartzfield@huawei.com [Binary Source:]NA
MaxQuartzField
pushed a commit
to MaxQuartzField/quartz
that referenced
this issue
Jun 9, 2022
[Description:]resolve XMLSchedulingDataProcessorTest issue [Binary Source:]NA Signed-off-by: l00380069 <lizhengyong1@huawei.com>
MaxQuartzField
pushed a commit
to MaxQuartzField/quartz
that referenced
this issue
Jun 9, 2022
[Description:]Signed-off-by:maxquartzfieldmaxquartzfield@huawei.com [Binary Source:]NA Signed-off-by: l00380069 <lizhengyong1@huawei.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/**
* Whether or not the query and update to acquire a Trigger for firing
* should be performed after obtaining an explicit DB lock (to avoid
* possible race conditions on the trigger's db row). This is the
* behavior prior to Quartz 1.6.3, but is considered unnecessary for most
* databases (due to the nature of the SQL update that is performed),
* and therefore a superfluous performance hit.
*/
public boolean isAcquireTriggersWithinLock() {
return acquireTriggersWithinLock;
}
The property must be set for databases where simple SELECTs are never blocked (for ex. Oracle), it would be very helpful if this information was reflected somewhere in documentation.
The text was updated successfully, but these errors were encountered: