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
Is your feature request related to a problem? Please describe.
The filestream client waits for a request to fully complete before terminating the thread. This counts towards the concurrency limit. When streaming a large volume of files, and additionally not using/collecting Strelka events on the client side e.g. "Discard" mode, the client should not wait for events. This should vastly increase throughput for busy systems like network sensors.
Describe the solution you'd like
If the filestream client has no response entries in the config file (response: dict is emtpy), the client should immediately terminate the request after sending the file.
Describe alternatives you've considered
It may be possible to set the Filestream client timeout to a low threshold to quickly release waiting requests. However, that may negatively impact requests with large file sizes.
ryanohoro
changed the title
[REQUEST] Make Filestream Client Requests Optionally Asyncronous
[REQUEST] Make Filestream Client Requests With No Logging Asynchronous
Sep 26, 2023
Is your feature request related to a problem? Please describe.
The filestream client waits for a request to fully complete before terminating the thread. This counts towards the concurrency limit. When streaming a large volume of files, and additionally not using/collecting Strelka events on the client side e.g. "Discard" mode, the client should not wait for events. This should vastly increase throughput for busy systems like network sensors.
Describe the solution you'd like
If the filestream client has no response entries in the config file (response: dict is emtpy), the client should immediately terminate the request after sending the file.
Describe alternatives you've considered
It may be possible to set the Filestream client timeout to a low threshold to quickly release waiting requests. However, that may negatively impact requests with large file sizes.
Additional context
Relevant code sections
strelka/src/go/cmd/strelka-filestream/main.go
Lines 80 to 107 in 0ca89f8
strelka/src/go/pkg/rpc/rpc.go
Lines 195 to 208 in 0ca89f8
The text was updated successfully, but these errors were encountered: