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 somes cases, when alerts with a high number of observables is imported, TheHive become unreachable, despite CPUs with 8 cores. TheHive distributes importing tasks on several threads in order to use full capabilities of multi-core CPU : it directly depends from the number of cores. Importing an event create a task for each observable and then monopolize almost all threads. Other tasks have to wait for threads to become free.
Solution
The solution is use dedicated thread pool for all tasks that requires high number of threads. This allocates new threads for dedicated tasks.
The text was updated successfully, but these errors were encountered:
Issue
In somes cases, when alerts with a high number of observables is imported, TheHive become unreachable, despite CPUs with 8 cores. TheHive distributes importing tasks on several threads in order to use full capabilities of multi-core CPU : it directly depends from the number of cores. Importing an event create a task for each observable and then monopolize almost all threads. Other tasks have to wait for threads to become free.
Solution
The solution is use dedicated thread pool for all tasks that requires high number of threads. This allocates new threads for dedicated tasks.
The text was updated successfully, but these errors were encountered: