mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	Longer (5 vs 0.2s) guard_cycle for Django-Q
To reduce average CPU load. Given paperless is mostly idling and when not, just spawns long-running operations (e.g., OCR), a 0.2s health-check of the Django-Q cluster is unnecessary. See also #1084
This commit is contained in:
		@@ -458,6 +458,7 @@ PAPERLESS_WORKER_RETRY: Final[int] = __get_int(
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Q_CLUSTER = {
 | 
					Q_CLUSTER = {
 | 
				
			||||||
    "name": "paperless",
 | 
					    "name": "paperless",
 | 
				
			||||||
 | 
					    "guard_cycle": 5,
 | 
				
			||||||
    "catch_up": False,
 | 
					    "catch_up": False,
 | 
				
			||||||
    "recycle": 1,
 | 
					    "recycle": 1,
 | 
				
			||||||
    "retry": PAPERLESS_WORKER_RETRY,
 | 
					    "retry": PAPERLESS_WORKER_RETRY,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user