forked from Velocidex/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More multi-frontend optimizations (Velocidex#1393)
* More multi-frontend optimizations * Client info manager now also keeps track of LastHuntTimestamp and LastEventTableVersion for each client. This means we do not need to send an UpdateForeman message to the client since the server keeps track * Client info manager now keeps track of the state of client queues. If no new messages are queued for the client, the frontend is able to skip making an IO operation on the data store. * Replication service now writes the events to storage by itself. This ensures that minions are able to take on the writing work for event queries. * Replication service now receives an update on all Watchers in the master, and avoids sending any events to the master than no watches are interested in. This reduces the number of gRPC calls between minion and master and therefore improves performance.
- Loading branch information
Showing
52 changed files
with
833 additions
and
548 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: Server.Internal.ClientTasks | ||
description: | | ||
This event will be fired when a client has new tasks scheduled. | ||
type: INTERNAL | ||
column_types: | ||
- name: ClientId |
Oops, something went wrong.