mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* 12336 make region API calls atomic * 12336 switch to pg locks * 12336 add locks to all views using mptt models * 12336 fix ADVISORY_LOCK_KEYS reference * 12336 review changes * Tweak advisory lock numbering --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
30 lines
880 B
Python
30 lines
880 B
Python
# Prefix for nested serializers
|
|
NESTED_SERIALIZER_PREFIX = 'Nested'
|
|
|
|
# RQ queue names
|
|
RQ_QUEUE_DEFAULT = 'default'
|
|
RQ_QUEUE_HIGH = 'high'
|
|
RQ_QUEUE_LOW = 'low'
|
|
|
|
# Keys for PostgreSQL advisory locks. These are arbitrary bigints used by the advisory_lock
|
|
# context manager. When a lock is acquired, one of these keys will be used to identify said lock.
|
|
# When adding a new key, pick something arbitrary and unique so that it is easily searchable in
|
|
# query logs.
|
|
ADVISORY_LOCK_KEYS = {
|
|
# Available object locks
|
|
'available-prefixes': 100100,
|
|
'available-ips': 100200,
|
|
'available-vlans': 100300,
|
|
'available-asns': 100400,
|
|
|
|
# MPTT locks
|
|
'region': 105100,
|
|
'sitegroup': 105200,
|
|
'location': 105300,
|
|
'tenantgroup': 105400,
|
|
'contactgroup': 105500,
|
|
'wirelesslangroup': 105600,
|
|
'inventoryitem': 105700,
|
|
'inventoryitemtemplate': 105800,
|
|
}
|