Skip to content

Update sentry-rust monorepo to 0.48.0#8715

Open
hash-worker[bot] wants to merge 1 commit into
mainfrom
deps/rs/sentry-rust-monorepo
Open

Update sentry-rust monorepo to 0.48.0#8715
hash-worker[bot] wants to merge 1 commit into
mainfrom
deps/rs/sentry-rust-monorepo

Conversation

@hash-worker
Copy link
Copy Markdown
Contributor

@hash-worker hash-worker Bot commented May 13, 2026

This PR contains the following updates:

Package Type Update Change
sentry (source) workspace.dependencies minor 0.47.00.48.0
sentry-core (source) workspace.dependencies minor 0.47.00.48.0
sentry-types (source) workspace.dependencies minor 0.47.00.48.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

getsentry/sentry-rust (sentry)

v0.48.2

Compare Source

New Features
  • Added rustls-no-provider feature flag in the sentry crate to allow using the rustls transport with a different crypto provider (#​1103).
Fixes
  • Serialize attachment envelope headers as JSON to correctly encode header values (#​1109).
  • Use checked arithmetic to handle possible overflows (#​1119, #​1121, #​1122).

v0.48.1

Compare Source

Fixes
  • Changed ClientOptions::enable_metrics to default to true, aligning metrics behavior with other Sentry SDKs (#​1106). Metric capture APIs still require the metrics feature flag at compile time.

v0.48.0

Compare Source

Breaking Changes
New Features

📊📈💯 The Sentry-Rust SDK now supports emitting Sentry Metrics (#​1073)!

To get started, you will need to add the metrics feature flag when compiling the sentry crate. You will also need to enable metrics when initializing the SDK, like so:

use sentry::ClientOptions;

let _guard = sentry::init((
    "(your DSN here)",
    ClientOptions {
        enable_metrics: true,
        // ... other options ...
        ..Default::default()
    },
));

You can then capture metrics as follows:

use sentry::metrics;
use sentry::types::protocol::latest::Unit;

// We support counter, gauge, and distribution metrics.
metrics::counter("example.counter", 1).capture();
metrics::gauge("connections", 20).capture();
metrics::distribution("response.time", 123.4)
    .unit(Unit::Millisecond) // units can also be set on gauges
    .attribute("http.status", 200) // attributes can be set on all metric types
    .capture();
Fixes
  • Fixed several feature additivity SemVer violations, where enabling a feature flag could have introduced breaking changes. All known violations are fixed now, so simply enabling an additional feature flag in any Sentry SDK crate should no longer cause any public API breakages. Fixing these issues required us to break the public API in some places; those breakages are detailed above.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 4am every weekday,every weekend"
  • Automerge
    • "before 4am every weekday,every weekend"

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@hash-worker hash-worker Bot enabled auto-merge May 13, 2026 00:01
@vercel
Copy link
Copy Markdown

vercel Bot commented May 13, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
hash Ready Ready Preview, Comment May 25, 2026 9:50am
hashdotdesign-tokens Ready Ready Preview, Comment May 25, 2026 9:50am
petrinaut Ready Ready Preview, Comment May 25, 2026 9:50am

@hash-worker hash-worker Bot requested a review from a team May 13, 2026 00:01
@cursor
Copy link
Copy Markdown

cursor Bot commented May 13, 2026

PR Summary

Low Risk
Dependency-only observability SDK upgrade; existing init uses struct update syntax, and the diff does not enable new metrics APIs or change runtime logic.

Overview
Bumps the workspace Sentry Rust stack from 0.47 to 0.48 (sentry, sentry-core, sentry-types) and refreshes Cargo.lock so the resolved crates are 0.48.2 (plus a transitive tempfile / getrandom pin change). No application source is edited—only dependency versions.

The main in-repo consumer is hash-telemetry, which still initializes Sentry via ClientOptions { …, ..Default::default() }, so new 0.48 options (e.g. metrics-related fields, default enable_metrics) apply via defaults unless you opt in later. The workspace sentry feature set is unchanged (no metrics feature added in this diff).

Reviewed by Cursor Bugbot for commit 8a476b9. Bugbot is set up for automated code reviews on this repo. Configure here.

@github-actions github-actions Bot added the area/deps Relates to third-party dependencies (area) label May 13, 2026
@augmentcode
Copy link
Copy Markdown

augmentcode Bot commented May 13, 2026

🤖 Augment PR Summary

Summary: Updates the Rust Sentry SDK workspace dependencies to the 0.48.x line.

Changes:

  • Bumped sentry, sentry-core, and sentry-types from 0.47.00.48.0 in the workspace Cargo.toml
  • Regenerated Cargo.lock accordingly

Technical Notes: Sentry 0.48 introduces upstream API changes (notably around ClientOptions/Scope and new metrics-related options); this PR itself is dependency-only and relies on downstream crates compiling cleanly against the updated SDK.

🤖 Was this summary useful? React with 👍 or 👎

Copy link
Copy Markdown

@augmentcode augmentcode Bot left a comment

Choose a reason for hiding this comment

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

Review completed. No suggestions at this time.

Comment augment review to trigger a new review at any time.

@codecov
Copy link
Copy Markdown

codecov Bot commented May 13, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 58.82%. Comparing base (b9ecc19) to head (8a476b9).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #8715      +/-   ##
==========================================
- Coverage   58.82%   58.82%   -0.01%     
==========================================
  Files        1328     1328              
  Lines      126882   126882              
  Branches     5790     5790              
==========================================
- Hits        74644    74642       -2     
- Misses      51357    51359       +2     
  Partials      881      881              
Flag Coverage Δ
apps.hash-ai-worker-ts 1.41% <ø> (ø)
apps.hash-api 0.00% <ø> (ø)
blockprotocol.type-system 40.84% <ø> (ø)
local.claude-hooks 0.00% <ø> (ø)
local.harpc-client 51.24% <ø> (ø)
local.hash-backend-utils 2.81% <ø> (ø)
local.hash-graph-sdk 9.63% <ø> (ø)
local.hash-isomorphic-utils 0.00% <ø> (ø)
rust.antsi 0.00% <ø> (ø)
rust.error-stack 90.87% <ø> (ø)
rust.harpc-codec 84.70% <ø> (ø)
rust.harpc-net 96.19% <ø> (-0.04%) ⬇️
rust.harpc-tower 67.03% <ø> (ø)
rust.harpc-types 0.00% <ø> (ø)
rust.harpc-wire-protocol 92.23% <ø> (ø)
rust.hash-codec 72.76% <ø> (ø)
rust.hash-graph-api 2.52% <ø> (ø)
rust.hash-graph-authorization 62.34% <ø> (ø)
rust.hash-graph-postgres-store 26.81% <ø> (ø)
rust.hash-graph-store 37.76% <ø> (ø)
rust.hash-graph-temporal-versioning 47.95% <ø> (ø)
rust.hash-graph-types 0.00% <ø> (ø)
rust.hash-graph-validation 83.45% <ø> (ø)
rust.hashql-ast 87.23% <ø> (ø)
rust.hashql-compiletest 29.63% <ø> (ø)
rust.hashql-core 79.25% <ø> (ø)
rust.hashql-diagnostics 72.53% <ø> (ø)
rust.hashql-eval 77.88% <ø> (ø)
rust.hashql-hir 89.06% <ø> (ø)
rust.hashql-mir 86.76% <ø> (ø)
rust.hashql-syntax-jexpr 94.06% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@codspeed-hq
Copy link
Copy Markdown

codspeed-hq Bot commented May 13, 2026

Merging this PR will not alter performance

✅ 80 untouched benchmarks


Comparing deps/rs/sentry-rust-monorepo (8a476b9) with main (e2c4acf)

Open in CodSpeed

@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results

@rust/hash-graph-benches – Integrations

policy_resolution_large

Function Value Mean Flame graphs
resolve_policies_for_actor user: empty, selectivity: high, policies: 2002 $$27.0 \mathrm{ms} \pm 198 \mathrm{μs}\left({\color{gray}-3.175 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: low, policies: 1 $$3.42 \mathrm{ms} \pm 21.7 \mathrm{μs}\left({\color{gray}-2.695 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: medium, policies: 1001 $$12.1 \mathrm{ms} \pm 75.5 \mathrm{μs}\left({\color{lightgreen}-9.550 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: high, policies: 3314 $$42.6 \mathrm{ms} \pm 313 \mathrm{μs}\left({\color{gray}-2.673 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: low, policies: 1 $$13.8 \mathrm{ms} \pm 94.1 \mathrm{μs}\left({\color{lightgreen}-5.406 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: medium, policies: 1526 $$23.3 \mathrm{ms} \pm 146 \mathrm{μs}\left({\color{lightgreen}-5.763 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: high, policies: 2078 $$27.9 \mathrm{ms} \pm 168 \mathrm{μs}\left({\color{gray}-3.346 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: low, policies: 1 $$3.73 \mathrm{ms} \pm 22.1 \mathrm{μs}\left({\color{gray}-1.645 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: medium, policies: 1033 $$13.5 \mathrm{ms} \pm 101 \mathrm{μs}\left({\color{lightgreen}-6.902 \mathrm{\%}}\right) $$ Flame Graph

policy_resolution_medium

Function Value Mean Flame graphs
resolve_policies_for_actor user: empty, selectivity: high, policies: 102 $$3.78 \mathrm{ms} \pm 22.9 \mathrm{μs}\left({\color{gray}-1.523 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: low, policies: 1 $$2.96 \mathrm{ms} \pm 17.1 \mathrm{μs}\left({\color{gray}-3.276 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: medium, policies: 51 $$3.33 \mathrm{ms} \pm 18.6 \mathrm{μs}\left({\color{gray}-2.145 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: high, policies: 269 $$5.19 \mathrm{ms} \pm 31.7 \mathrm{μs}\left({\color{gray}-2.564 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: low, policies: 1 $$3.50 \mathrm{ms} \pm 16.8 \mathrm{μs}\left({\color{gray}-2.009 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: medium, policies: 107 $$4.14 \mathrm{ms} \pm 30.2 \mathrm{μs}\left({\color{gray}-1.632 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: high, policies: 133 $$4.48 \mathrm{ms} \pm 32.6 \mathrm{μs}\left({\color{gray}-1.312 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: low, policies: 1 $$3.36 \mathrm{ms} \pm 16.5 \mathrm{μs}\left({\color{gray}-4.922 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: medium, policies: 63 $$4.08 \mathrm{ms} \pm 30.3 \mathrm{μs}\left({\color{gray}-2.239 \mathrm{\%}}\right) $$ Flame Graph

policy_resolution_none

Function Value Mean Flame graphs
resolve_policies_for_actor user: empty, selectivity: high, policies: 2 $$2.71 \mathrm{ms} \pm 17.4 \mathrm{μs}\left({\color{gray}-2.652 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: low, policies: 1 $$2.67 \mathrm{ms} \pm 15.4 \mathrm{μs}\left({\color{gray}-0.744 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: medium, policies: 1 $$2.75 \mathrm{ms} \pm 12.8 \mathrm{μs}\left({\color{gray}-3.570 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: high, policies: 8 $$3.04 \mathrm{ms} \pm 15.6 \mathrm{μs}\left({\color{gray}-0.262 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: low, policies: 1 $$2.83 \mathrm{ms} \pm 13.0 \mathrm{μs}\left({\color{gray}-1.830 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: medium, policies: 3 $$3.10 \mathrm{ms} \pm 13.3 \mathrm{μs}\left({\color{gray}-1.992 \mathrm{\%}}\right) $$ Flame Graph

policy_resolution_small

Function Value Mean Flame graphs
resolve_policies_for_actor user: empty, selectivity: high, policies: 52 $$3.11 \mathrm{ms} \pm 18.2 \mathrm{μs}\left({\color{gray}-1.588 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: low, policies: 1 $$2.79 \mathrm{ms} \pm 13.7 \mathrm{μs}\left({\color{gray}-0.434 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: empty, selectivity: medium, policies: 25 $$2.95 \mathrm{ms} \pm 16.5 \mathrm{μs}\left({\color{gray}-1.909 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: high, policies: 94 $$3.52 \mathrm{ms} \pm 15.4 \mathrm{μs}\left({\color{gray}-1.045 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: low, policies: 1 $$3.06 \mathrm{ms} \pm 18.8 \mathrm{μs}\left({\color{gray}0.753 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: seeded, selectivity: medium, policies: 26 $$3.30 \mathrm{ms} \pm 16.9 \mathrm{μs}\left({\color{gray}-0.327 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: high, policies: 66 $$3.46 \mathrm{ms} \pm 18.6 \mathrm{μs}\left({\color{gray}-3.439 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: low, policies: 1 $$3.04 \mathrm{ms} \pm 18.7 \mathrm{μs}\left({\color{gray}-0.856 \mathrm{\%}}\right) $$ Flame Graph
resolve_policies_for_actor user: system, selectivity: medium, policies: 29 $$3.39 \mathrm{ms} \pm 21.0 \mathrm{μs}\left({\color{gray}-2.024 \mathrm{\%}}\right) $$ Flame Graph

read_scaling_complete

Function Value Mean Flame graphs
entity_by_id;one_depth 1 entities $$44.5 \mathrm{ms} \pm 224 \mathrm{μs}\left({\color{gray}-3.590 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;one_depth 10 entities $$82.4 \mathrm{ms} \pm 320 \mathrm{μs}\left({\color{gray}-1.870 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;one_depth 25 entities $$49.7 \mathrm{ms} \pm 196 \mathrm{μs}\left({\color{gray}-2.272 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;one_depth 5 entities $$53.3 \mathrm{ms} \pm 389 \mathrm{μs}\left({\color{gray}0.109 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;one_depth 50 entities $$62.0 \mathrm{ms} \pm 359 \mathrm{μs}\left({\color{gray}-1.059 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;two_depth 1 entities $$45.9 \mathrm{ms} \pm 218 \mathrm{μs}\left({\color{gray}-3.439 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;two_depth 10 entities $$433 \mathrm{ms} \pm 723 \mathrm{μs}\left({\color{gray}-1.249 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;two_depth 25 entities $$99.7 \mathrm{ms} \pm 509 \mathrm{μs}\left({\color{gray}-4.392 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;two_depth 5 entities $$90.3 \mathrm{ms} \pm 452 \mathrm{μs}\left({\color{gray}-3.071 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;two_depth 50 entities $$291 \mathrm{ms} \pm 722 \mathrm{μs}\left({\color{lightgreen}-10.531 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;zero_depth 1 entities $$19.1 \mathrm{ms} \pm 107 \mathrm{μs}\left({\color{lightgreen}-6.234 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;zero_depth 10 entities $$19.8 \mathrm{ms} \pm 132 \mathrm{μs}\left({\color{gray}-4.015 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;zero_depth 25 entities $$19.9 \mathrm{ms} \pm 98.4 \mathrm{μs}\left({\color{gray}-2.406 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;zero_depth 5 entities $$19.7 \mathrm{ms} \pm 102 \mathrm{μs}\left({\color{gray}-3.432 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id;zero_depth 50 entities $$24.4 \mathrm{ms} \pm 128 \mathrm{μs}\left({\color{gray}-1.764 \mathrm{\%}}\right) $$ Flame Graph

read_scaling_linkless

Function Value Mean Flame graphs
entity_by_id 1 entities $$19.4 \mathrm{ms} \pm 109 \mathrm{μs}\left({\color{gray}-0.920 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id 10 entities $$19.3 \mathrm{ms} \pm 118 \mathrm{μs}\left({\color{gray}-1.985 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id 100 entities $$19.1 \mathrm{ms} \pm 113 \mathrm{μs}\left({\color{gray}-3.154 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id 1000 entities $$19.8 \mathrm{ms} \pm 144 \mathrm{μs}\left({\color{gray}-4.178 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id 10000 entities $$25.7 \mathrm{ms} \pm 207 \mathrm{μs}\left({\color{gray}-4.870 \mathrm{\%}}\right) $$ Flame Graph

representative_read_entity

Function Value Mean Flame graphs
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/block/v/1 $$33.9 \mathrm{ms} \pm 275 \mathrm{μs}\left({\color{lightgreen}-5.599 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/book/v/1 $$35.3 \mathrm{ms} \pm 278 \mathrm{μs}\left({\color{gray}3.23 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/building/v/1 $$35.1 \mathrm{ms} \pm 332 \mathrm{μs}\left({\color{gray}1.17 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/organization/v/1 $$33.1 \mathrm{ms} \pm 270 \mathrm{μs}\left({\color{lightgreen}-5.983 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/page/v/2 $$35.8 \mathrm{ms} \pm 327 \mathrm{μs}\left({\color{gray}4.66 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/person/v/1 $$35.3 \mathrm{ms} \pm 318 \mathrm{μs}\left({\color{gray}1.57 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/playlist/v/1 $$34.9 \mathrm{ms} \pm 277 \mathrm{μs}\left({\color{gray}-1.226 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/song/v/1 $$34.5 \mathrm{ms} \pm 298 \mathrm{μs}\left({\color{lightgreen}-6.405 \mathrm{\%}}\right) $$ Flame Graph
entity_by_id entity type ID: https://blockprotocol.org/@alice/types/entity-type/uk-address/v/1 $$34.2 \mathrm{ms} \pm 257 \mathrm{μs}\left({\color{lightgreen}-8.163 \mathrm{\%}}\right) $$ Flame Graph

representative_read_entity_type

Function Value Mean Flame graphs
get_entity_type_by_id Account ID: bf5a9ef5-dc3b-43cf-a291-6210c0321eba $$8.60 \mathrm{ms} \pm 46.7 \mathrm{μs}\left({\color{gray}-1.284 \mathrm{\%}}\right) $$ Flame Graph

representative_read_multiple_entities

Function Value Mean Flame graphs
entity_by_property traversal_paths=0 0 $$96.9 \mathrm{ms} \pm 562 \mathrm{μs}\left({\color{gray}-0.779 \mathrm{\%}}\right) $$
entity_by_property traversal_paths=255 1,resolve_depths=inherit:1;values:255;properties:255;links:127;link_dests:126;type:true $$150 \mathrm{ms} \pm 572 \mathrm{μs}\left({\color{gray}-1.378 \mathrm{\%}}\right) $$
entity_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:0;properties:0;links:0;link_dests:0;type:false $$105 \mathrm{ms} \pm 602 \mathrm{μs}\left({\color{gray}-1.609 \mathrm{\%}}\right) $$
entity_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:0;properties:0;links:1;link_dests:0;type:true $$113 \mathrm{ms} \pm 455 \mathrm{μs}\left({\color{gray}-0.369 \mathrm{\%}}\right) $$
entity_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:0;properties:2;links:1;link_dests:0;type:true $$122 \mathrm{ms} \pm 464 \mathrm{μs}\left({\color{gray}0.623 \mathrm{\%}}\right) $$
entity_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:2;properties:2;links:1;link_dests:0;type:true $$129 \mathrm{ms} \pm 467 \mathrm{μs}\left({\color{gray}-0.708 \mathrm{\%}}\right) $$
link_by_source_by_property traversal_paths=0 0 $$103 \mathrm{ms} \pm 543 \mathrm{μs}\left({\color{gray}-0.081 \mathrm{\%}}\right) $$
link_by_source_by_property traversal_paths=255 1,resolve_depths=inherit:1;values:255;properties:255;links:127;link_dests:126;type:true $$130 \mathrm{ms} \pm 576 \mathrm{μs}\left({\color{gray}-2.903 \mathrm{\%}}\right) $$
link_by_source_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:0;properties:0;links:0;link_dests:0;type:false $$109 \mathrm{ms} \pm 587 \mathrm{μs}\left({\color{gray}-2.145 \mathrm{\%}}\right) $$
link_by_source_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:0;properties:0;links:1;link_dests:0;type:true $$117 \mathrm{ms} \pm 562 \mathrm{μs}\left({\color{gray}-0.958 \mathrm{\%}}\right) $$
link_by_source_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:0;properties:2;links:1;link_dests:0;type:true $$118 \mathrm{ms} \pm 527 \mathrm{μs}\left({\color{gray}-2.673 \mathrm{\%}}\right) $$
link_by_source_by_property traversal_paths=2 1,resolve_depths=inherit:0;values:2;properties:2;links:1;link_dests:0;type:true $$120 \mathrm{ms} \pm 610 \mathrm{μs}\left({\color{gray}-3.180 \mathrm{\%}}\right) $$

scenarios

Function Value Mean Flame graphs
full_test query-limited $$130 \mathrm{ms} \pm 420 \mathrm{μs}\left({\color{lightgreen}-7.731 \mathrm{\%}}\right) $$ Flame Graph
full_test query-unlimited $$144 \mathrm{ms} \pm 498 \mathrm{μs}\left({\color{lightgreen}-5.726 \mathrm{\%}}\right) $$ Flame Graph
linked_queries query-limited $$104 \mathrm{ms} \pm 606 \mathrm{μs}\left({\color{red}40.3 \mathrm{\%}}\right) $$ Flame Graph
linked_queries query-unlimited $$544 \mathrm{ms} \pm 1.76 \mathrm{ms}\left({\color{gray}-4.036 \mathrm{\%}}\right) $$ Flame Graph

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/deps Relates to third-party dependencies (area)

Development

Successfully merging this pull request may close these issues.

2 participants