Skip to content
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

fix: Refresh symcache when bcsymbolmap status changes #493

Merged
merged 4 commits into from
Jul 15, 2021

Conversation

Swatinem
Copy link
Member

@Swatinem Swatinem commented Jul 14, 2021

This fetches the symbolmaps before trying to fetch the symcache. The symcache internally persists whether it was using a bcsymbolmap when it was created. That way we can detect if that state changes to refuse to load the cache file and have it regenerate.

@Swatinem Swatinem marked this pull request as ready for review July 14, 2021 19:44
@Swatinem Swatinem requested a review from a team July 14, 2021 19:44
@Swatinem Swatinem merged commit d82fce3 into master Jul 15, 2021
@Swatinem Swatinem deleted the fix/refresh-symcache branch July 15, 2021 11:46
SymCache::parse(data)
.map(|symcache| symcache.is_latest())
.map(|symcache| {
symcache.is_latest() && had_symbolmap == self.bcsymbolmap_handle.is_some()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will also recompute if previously there was a symbolmap but now we didn't fetch one. this can happen because the derived cache lives longer than the download cache. Not sure how serious an issue it is.

@@ -295,11 +290,26 @@ impl SymCacheActor {

match meta {
Some(handle) => {
// TODO: while there is some caching *internally* in the bitcode_svc, the *complete*
// fetch request is not cached
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if this can be further reduced by checking https://docs.rs/symbolic/8.3.0/symbolic/debuginfo/macho/struct.MachObject.html#method.requires_symbolmap first, obviously only for macho symbol files too. that's probably sufficient rather than introduce an entire new cache which costs a lot of duplicate disk space.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don’t think we have a proper MachObject at this point in the code?

crates/symbolicator/src/services/symcaches.rs Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants