This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/tokio-1.43.1
in repository https://gitbox.apache.org/repos/asf/horaedb.git
discard 57bab996 chore(deps): bump tokio from 1.40.0 to 1.43.1
add 9cec5636 feat: add hand-written Prometheus remote write request parser
(#1628)
add 7f725d3b chore(deps): bump tokio from 1.40.0 to 1.43.1
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (57bab996)
\
N -- N -- N refs/heads/dependabot/cargo/tokio-1.43.1 (7f725d3b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci.yml | 2 +
.gitignore | 1 +
Cargo.lock | 238 ++++++++-
Cargo.toml | 68 +--
LICENSE | 4 +-
.../assets/remote-write-concurrent-performance.png | Bin 0 -> 578747 bytes
docs/assets/remote-write-memory-performance.png | Bin 0 -> 119032 bytes
.../assets/remote-write-sequential-performance.png | Bin 0 -> 620542 bytes
licenserc.toml | 2 +
src/benchmarks/Cargo.toml | 25 +
src/benchmarks/benches/bench.rs | 107 +++-
src/benchmarks/build.rs | 106 ++++
src/benchmarks/config.toml | 5 +
src/benchmarks/remote_write_memory_bench.py | 237 +++++++++
src/benchmarks/src/bin/parser_mem.rs | 138 +++++
src/benchmarks/src/bin/pool_stats.rs | 82 +++
src/benchmarks/src/config.rs | 8 +
src/benchmarks/src/lib.rs | 15 +-
src/benchmarks/src/remote_write_bench.rs | 175 +++++++
src/benchmarks/src/util.rs | 125 +++++
src/pb_types/build.rs | 5 +-
src/pb_types/protos/remote_write.proto | 77 +++
src/pb_types/src/lib.rs | 5 +
src/{pb_types => remote_write}/Cargo.toml | 15 +-
src/remote_write/README.md | 291 +++++++++++
src/{benchmarks => remote_write}/src/lib.rs | 9 +-
src/remote_write/src/pb_reader.rs | 565 +++++++++++++++++++++
src/remote_write/src/pooled_parser.rs | 73 +++
src/remote_write/src/pooled_types.rs | 192 +++++++
src/remote_write/src/repeated_field.rs | 534 +++++++++++++++++++
src/remote_write/tests/equivalence_test.rs | 177 +++++++
.../tests/workloads/1709380533560664458.data | Bin 0 -> 1690278 bytes
.../tests/workloads/1709380533705807779.data | Bin 0 -> 1687445 bytes
33 files changed, 3216 insertions(+), 65 deletions(-)
create mode 100644 docs/assets/remote-write-concurrent-performance.png
create mode 100644 docs/assets/remote-write-memory-performance.png
create mode 100644 docs/assets/remote-write-sequential-performance.png
create mode 100644 src/benchmarks/build.rs
create mode 100644 src/benchmarks/remote_write_memory_bench.py
create mode 100644 src/benchmarks/src/bin/parser_mem.rs
create mode 100644 src/benchmarks/src/bin/pool_stats.rs
create mode 100644 src/benchmarks/src/remote_write_bench.rs
create mode 100644 src/pb_types/protos/remote_write.proto
copy src/{pb_types => remote_write}/Cargo.toml (79%)
create mode 100644 src/remote_write/README.md
copy src/{benchmarks => remote_write}/src/lib.rs (90%)
create mode 100644 src/remote_write/src/pb_reader.rs
create mode 100644 src/remote_write/src/pooled_parser.rs
create mode 100644 src/remote_write/src/pooled_types.rs
create mode 100644 src/remote_write/src/repeated_field.rs
create mode 100644 src/remote_write/tests/equivalence_test.rs
create mode 100644 src/remote_write/tests/workloads/1709380533560664458.data
create mode 100644 src/remote_write/tests/workloads/1709380533705807779.data
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]