-
Notifications
You must be signed in to change notification settings - Fork 8
ct-fetch: support for tiled logs #359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Just a couple of questions.
While testing in the dev instance we ran out of memory in Redis (tiled logs are fast...). Turns out there was also a bug where log state updates were sent to Redis on a different thread than certificate entries, so they were not guaranteed to be ordered correctly. Hence, on something like an OOM failure, the log state in redis could be ahead of the log entries that had actually been written to cache. I've added a couple patches here to fix this. Redis is single-threaded so there's no performance penalty in sequencing operations in |
Resolves #358