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

Record the amount of time spent in row serialization and deserialization #509

Closed
joshua-spacetime opened this issue Oct 31, 2023 · 1 comment

Comments

@joshua-spacetime
Copy link
Collaborator

joshua-spacetime commented Oct 31, 2023

For example, in the case of iter_by_col_eq we want to measure the time spent here

for result in results {
bsatn::to_writer(&mut bytes, result.view()).unwrap();
}

We can either measure the serialization time directly or the entire time of the syscall, including the row serialization time.

@joshua-spacetime
Copy link
Collaborator Author

We already record the time of each syscall which includes both serialization and copying data into wasm memory. At this point we probably don't need to get more fine grained than that.

@joshua-spacetime joshua-spacetime closed this as not planned Won't fix, can't repro, duplicate, stale Nov 3, 2023
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

No branches or pull requests

1 participant