-
Notifications
You must be signed in to change notification settings - Fork 8
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
next encoder #187
Draft
ruslandoga
wants to merge
6
commits into
master
Choose a base branch
from
next-encoder
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
next encoder #187
Conversation
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
ruslandoga
commented
Jul 14, 2024
@@ -42,8 +42,9 @@ jobs: | |||
- run: mix deps.get --only $MIX_ENV | |||
- run: mix compile --warnings-as-errors | |||
- run: mkdir results | |||
- run: mix run bench/insert.exs | tee results/insert.txt | |||
- run: mix run bench/stream.exs | tee results/stream.txt | |||
- run: mix run bench/encode.exs | tee results/encode.txt |
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.
Current results from CI
Operating System: Linux
CPU Information: AMD EPYC 7763 64-Core Processor
Number of Available Cores: 4
Available memory: 15.61 GB
Elixir 1.17.2
Erlang 27.0.1
JIT enabled: true
Benchmark suite executing with the following configuration:
warmup: 2 s
time: 5 s
memory time: 0 ns
reduction time: 0 ns
parallel: 1
inputs: pageview
Estimated total run time: 14 s
Benchmarking current encoder with input pageview ...
Benchmarking next encoder with input pageview ...
Calculating statistics...
Formatting results...
##### With input pageview #####
Name ips average deviation median 99th %
next encoder 2.48 M 0.40 μs ±15125.35% 0.20 μs 0.39 μs
current encoder 0.36 M 2.80 μs ±2322.17% 1.76 μs 3.65 μs
Comparison:
next encoder 2.48 M
current encoder 0.36 M - 6.95x slower +2.40 μs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Trying out some ideas for a more efficient RowBinary encoder.
Idea 1: speed up encoding of
DateTime.utc_now()
(datetimes that are close to "now" by pre-generating unix offsets)Idea 2: macro to generate single-call encoding function for an Ecto.Schema struct, e.g.