You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In both cases (dedicated DB or containerized), if you are self-hosting, it is recommended that you implement and create periodic backups of your data.
@@ -55,7 +65,7 @@ concurrent connections.
55
65
56
66
### Celery worker
57
67
58
-
By default, a single mono-process celery worker is spawned. When storing a large amount of findings, leveraging async functions (like deduplication), or both. Eventually, it is important to adjust these parameters to prevent resource starvation.
68
+
By default, a single mono-process celery worker is spawned. When storing a large amount of findings, leveraging async functions (like deduplication), or both. Eventually, it is important to adjust these parameters to prevent resource starvation.
59
69
60
70
The following variables can be changed to increase worker performance, while keeping a single celery container.
61
71
@@ -80,8 +90,8 @@ and see what is in effect.
80
90
81
91
<spanstyle="background-color:rgba(242, 86, 29, 0.3)">This experimental feature has been deprecated as of DefectDojo 2.44.0 (March release). Please exercise caution if using this feature with an older version of DefectDojo, as results may be inconsistent.</span>
82
92
83
-
Import and Re-Import can also be configured to handle uploads asynchronously to aid in
84
-
processing especially large scans. It works by batching Findings and Endpoints by a
93
+
Import and Re-Import can also be configured to handle uploads asynchronously to aid in
94
+
processing especially large scans. It works by batching Findings and Endpoints by a
85
95
configurable amount. Each batch will be be processed in separate celery tasks.
86
96
87
97
The following variables impact async imports.
@@ -90,7 +100,7 @@ The following variables impact async imports.
90
100
-`DD_ASYNC_FINDING_IMPORT_CHUNK_SIZE` defaults to 100
91
101
92
102
When using asynchronous imports with dynamic scanners, Endpoints will continue to "trickle" in
93
-
even after the import has returned a successful response. This is because processing continues
103
+
even after the import has returned a successful response. This is because processing continues
94
104
to occur after the Findings have already been imported.
95
105
96
106
To determine if an import has been fully completed, please see the progress bar in the appropriate test.
0 commit comments