Skip to content

Execute queries without explicit session creation #1827

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

Merged
merged 19 commits into from
Jul 11, 2025
Merged

Conversation

kprokopenko
Copy link
Collaborator

Pull request type

Server feature: Execute queries without explicit session creation

Please check the type of change your PR introduces:

  • Bugfix
  • Feature
  • Code style update (formatting, renaming)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • Documentation content changes
  • Other (please describe):

What is the current behavior?

Issue Number: #1804

What is the new behavior?

Other information

Copy link

github-actions bot commented Jul 4, 2025

github.com/ydb-platform/ydb-go-sdk/v3/query

compatible changes

AllowImplicitSessions: added

summary

Base version: v3.112.0 (master)
Suggested version: v3.113.0

@codecov-commenter
Copy link

codecov-commenter commented Jul 4, 2025

Codecov Report

Attention: Patch coverage is 89.65517% with 6 lines in your changes missing coverage. Please review.

Project coverage is 70.81%. Comparing base (e7e1a2b) to head (0db3f15).

Files with missing lines Patch % Lines
internal/query/client.go 91.48% 2 Missing and 2 partials ⚠️
query/client.go 0.00% 2 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #1827      +/-   ##
==========================================
- Coverage   70.95%   70.81%   -0.15%     
==========================================
  Files         386      386              
  Lines       40291    40329      +38     
==========================================
- Hits        28587    28557      -30     
- Misses      10538    10591      +53     
- Partials     1166     1181      +15     
Flag Coverage Δ
experiment 70.36% <89.65%> (-0.24%) ⬇️
go-1.21.x 68.55% <89.65%> (-0.08%) ⬇️
go-1.24.x 70.76% <89.65%> (-0.19%) ⬇️
integration 53.51% <53.44%> (-0.47%) ⬇️
macOS 40.85% <81.03%> (+0.39%) ⬆️
ubuntu 70.80% <89.65%> (-0.15%) ⬇️
unit 40.89% <81.03%> (+0.41%) ⬆️
windows 40.82% <81.03%> (+0.36%) ⬆️
ydb-24.4 52.58% <53.44%> (-0.64%) ⬇️
ydb-25.1 53.26% <53.44%> (-0.63%) ⬇️
ydb-latest 53.00% <53.44%> (-0.23%) ⬇️
ydb-nightly 70.36% <89.65%> (-0.24%) ⬇️

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.

@kprokopenko kprokopenko requested review from rekby and asmyasnikov July 7, 2025 15:58
@asmyasnikov asmyasnikov requested a review from Copilot July 9, 2025 16:29
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR introduces executing queries using implicit sessions, removing the need for explicit session creation in user code.

  • Added WithImplicitSessions option and configuration fields to enable implicit session usage.
  • Updated the query client to route calls through a dedicated implicit session pool.
  • Added supporting tests, benchmarks, and test utilities, plus versioning and changelog updates.

Reviewed Changes

Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
testutil/driver.go Added QueryExecuteQuery mapping and MockClientStream helper
tests/integration/implicit_session_bench_test.go Added benchmarks for queries with implicit sessions
internal/query/config/options.go Introduced WithImplicitSessions query option
internal/query/config/config.go Added implicitSession field and IsImplicitSession accessor
internal/query/client_test.go Added unit tests covering implicit session scenarios
internal/query/client.go Routed query methods to implicitSessionPool and implemented pool
VERSIONING.md Documented volatility of the testutil package
CHANGELOG.md Added entry for the new implicit session feature
Comments suppressed due to low confidence (1)

CHANGELOG.md:2

  • [nitpick] The nested bullet uses an extra *, which may render incorrectly. Adjust to proper Markdown nesting, e.g. indent two spaces then * added ....
  * added `config.WithImplicitSessions` query option for execute queries with implicit sessions

@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@ydb-platform ydb-platform deleted a comment from github-actions bot Jul 10, 2025
@asmyasnikov asmyasnikov requested a review from Copilot July 10, 2025 16:48
Copilot

This comment was marked as outdated.

@asmyasnikov asmyasnikov requested a review from Copilot July 10, 2025 18:04
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR introduces the ability to execute queries without explicitly creating sessions by adding an implicit session pool and a new AllowImplicitSessions option.

  • Exposed a new public query.AllowImplicitSessions() option and updated the changelog.
  • Extended query.Client to maintain both explicit and implicit session pools and route calls based on the option.
  • Added integration benchmarks and client tests to cover implicit-session behavior.

Reviewed Changes

Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
tests/integration/query_allow_implicit_sessions_bench_test.go Added benchmarks comparing implicit vs. explicit sessions
query/client.go Added public AllowImplicitSessions option
internal/query/config/options.go Introduced AllowImplicitSessions config option
internal/query/config/config.go Added allowImplicitSessions field and getter
internal/query/client_test.go Added unit tests for implicit-session execution paths
internal/query/client.go Implemented implicit vs. explicit pool logic and pool selector
VERSIONING.md Updated note about testutil package stability
CHANGELOG.md Documented the new AllowImplicitSessions feature

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for native-table:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 822 --> 1105
    line [913.604,946.937,996.902,1000.069,1000.034,1000.138,1000,1000.034,1000,1000,1000.034,1000.034,1000.034,1000,1000.034,1000.103,999.966,1000.034,999.966,1000,999.966,999.931,1000,1000.034,1000,1000,999.931,999.966,1000.034,1000.034,1000,1000,999.828,1000,1000,999.931,1000,1000.034,1000.034,1000.034,1000.034,1000,1000,1000,999.966,1000.069,1000,1000.034,1000.034,1000.034,1000.069,1000,1000.034,1000.034,1000,1000.069,1000.034,1000,999.966,999.966,1000,1000.138,1000.034,1000.034,1000.103,1000,999.966,999.966,999.931,999.966,1000,1000,1000,1000,999.931,1000.034,1000,1000,999.966,1000.034,1000.034,1000,999.966,1000.034,1000,1000,999.966,1000,1000.069,999.966,1000.034,999.966,999.966,1000,1000,995.828,1000,1000.034,1000,999.966,1000.034,1000.034,1000,1000.069,1000,1000,999.966,1000.034,999.966,1000,999.931,1000.034,1000,1000.034,1000,1000.034,1000,1000,1000,1000.034,1000.034,1000,999.966,1000.034,1004.172,1000.034,1000,1000.034,1000,999.966,999.966,1000.034,999.966,1000,1000,999.966,999.966,1000.034,1000,1000.069,1000,1000,999.966,1000,1000.034,1000,999.931,1000.069,1000,999.966,1000.034,1000.034,999.966,1000.034,999.897,999.793,999.966,1000.034,1000,999.966,1000,1000.034,999.966,1000.034,1000.069,1000.069,1000,999.931,1000,999.931,1000,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000.069,1000.241,1000.034,1000,1000.034,1000.034,999.966,999.966,1000.034,999.966,999.966,999.966,1000,1000.069,1000,1000.069,1000,1000.034,1000,1000,1000,1000.034,999.966,1000.034,999.828,1000,1000,1000,1000,1000,1000,1000,999.966,1000,1000.034,999.966,1000.034,999.966,999.966,1000.034,1000,999.966,999.862,999.966,1000,1000,999.966,1000,999.966,999.966,1000,1000.034,1000,1000.207,1000,1000,1000.034,1000,1000.034,1000,999.966,1000.034,1000,999.966,1000.069,999.966,1000.034,1000.069,1000,1000,1000,1000.138,1000,999.966,1000,1000.034,1000,1000.034,1000.034,1000,1000,999.828,1000,1000,1000,1000,999.966,1000,1000,1000.034,1000,1000,1000,1000,1000.034,1000,1000,1000,1000.034,999.966,1000,1000.034,1000,999.966,1000,1000,1000,999.966,1000,1000,1000.172,1000,999.966,1000,1000,1000,999.966,1000,1000,1000,1000,1000.034,1000,1000.034,999.966,1000,999.966,1000,1000.069,999.966,1000,1000.034,1000.034,1000,1000,1000,1000.034,999.966,999.966,999.966,1000,1000.034,1000,1000,1000.034,1000.034,999.966,1000,1000,1000,999.966,1000.034,999.966,1000.034,1000,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000.034,1000,999.966,999.966,1000,1000,999.966,1000,999.966,1000,1000.069,999.966,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,999.966,999.966,1000.034,1000.034,1000,1000,1000.069,1000,1000.034,999.966,1000,1000,1000,1000,1000.034,1000,1000.034,1000,1000,1000,999.931,1000,999.966,1000,1000.034,1000.034,999.966,999.931,999.931,1000,1000.034,999.897,999.966,1000,1000,1000,1000,999.897,1000.034,999.931,1000,1000,1000,999.897,999.966,999.966,1000,1000,1000.034,1000.034,1000,1000.034,1000,999.931,1000,1000,1000.103,1000,1000,1000.034,1000.103,1000.034,1000,1000,999.966,1000,1000.103,1000,1000.034,1000,1000,1000,1000.069,1000.034,1000,1000,1000,999.897,1000.069,1000,1000.034,1000.034,1000.034,999.966,1000.034,1000,1000,1000,1000,1000,999.931,1000,1000,1000.034,1000.034,1000,1000,1000,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000.069,999.966,1000,999.966,999.966,1000,1000,999.966,999.966,1000.034,1000.034,999.966,1000,1000.034,1000,1000,1000,999.966,1000,999.966,999.966,1000,999.966,1000.034,1000,999.966,1000,1000,999.931,1000,1000,1000,1000,1000,1000,1000,1000,1000.034,1000,999.966,1000.034,1000,1000.069,1000,1000,1000,1000,999.966,1000.069,1000.034,1000,1000.034,999.966,1000,999.966,1000,1000,1000.034,1000,1000.034,1000,1000.034,1000,1000,1000.034,1000,999.966,1000.034,999.966,999.931,1000.034,999.966,1000,1000.034,1000,1000.034,1000.034,999.966,1000,1000,999.966,1000,1000,1000.034,1000,1000]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 82 --> 111
    line [91.353,94.687,99.687,100,100,100.034,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,99.993,100,100,100,100,100,99.966,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.007,100,100,100,100,100,100.034,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.586,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100.414,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.99,100,100,100,100,100,100,100,100,100,100,100.069,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.01,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,99.99,100,100,100,100,100,99.99,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100.01,100,100,100,100,99.966,100.01,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 1 --> 4
    line [2.257,2.26,2.313,2.238,2.302,2.277,2.236,2.327,2.329,2.289,2.329,2.338,2.332,2.335,2.359,2.351,2.273,2.375,2.37,2.349,2.369,2.385,2.434,2.422,2.431,2.493,2.4,2.487,2.48,2.466,2.453,2.454,2.444,2.416,2.369,2.689,2.672,2.716,2.721,2.708,2.744,2.75,2.732,2.728,2.742,2.746,2.676,2.714,2.717,2.755,2.771,2.764,2.769,2.772,2.735,2.759,2.701,2.761,2.835,2.856,2.905,2.916,2.922,2.924,2.721,2.7,2.676,2.719,2.729,2.701,2.733,2.736,2.73,2.721,2.732,2.729,2.703,2.722,2.683,2.649,2.638,2.631,2.621,2.612,2.6,2.598,2.537,2.548,2.513,2.436,2.421,2.383,2.389,2.368,2.38,2.521,2.842,2.874,2.873,2.828,2.845,2.841,2.837,2.823,2.84,2.84,2.815,2.825,2.82,2.824,2.848,2.857,2.86,2.855,2.854,2.849,2.759,2.798,2.822,2.816,2.846,2.86,2.856,2.838,2.788,2.403,2.365,2.424,2.45,2.472,2.52,2.529,2.529,2.528,2.539,2.545,2.526,2.569,2.551,2.519,2.521,2.55,2.547,2.546,2.553,2.551,2.513,2.529,2.521,2.482,2.457,2.496,2.517,2.62,2.609,2.638,2.817,2.821,2.787,2.745,2.747,2.787,2.786,2.785,2.798,2.793,2.748,2.748,2.75,2.752,2.759,2.804,2.811,2.808,2.808,2.798,2.762,2.762,2.758,2.752,2.715,2.709,2.451,2.426,2.356,2.066,2.021,2.029,2.041,2.02,1.997,1.997,1.995,1.995,1.997,1.998,1.998,1.998,1.996,1.991,1.988,1.988,1.986,1.986,1.988,1.989,1.99,1.991,1.995,1.995,1.993,1.996,1.998,1.997,1.996,1.997,1.999,1.998,2,2,2.007,2.062,2.05,2.014,2.018,2,2,1.998,1.999,1.998,1.996,2.021,2.015,1.999,1.997,1.996,1.995,1.992,1.994,1.994,1.991,1.993,1.992,1.992,1.991,1.988,1.989,1.987,1.988,1.985,1.981,1.983,1.985,1.984,1.986,1.985,1.985,1.985,1.986,1.986,1.98,1.984,1.984,1.986,1.988,1.988,1.988,1.991,1.994,1.994,1.991,1.995,1.995,1.995,1.995,1.996,1.999,1.997,2,2.025,1.999,2.018,2.002,2.025,2.047,2.053,2.035,2.03,2.069,2.075,2.014,2.061,2.022,2.003,1.999,1.999,1.996,1.993,1.996,1.997,1.993,1.994,1.995,1.994,1.994,1.99,1.989,1.986,1.985,1.984,1.982,1.984,1.981,1.98,1.981,1.982,1.982,1.979,1.979,1.979,1.975,1.977,1.979,1.98,1.98,1.98,1.979,1.977,1.978,1.978,1.976,1.978,1.979,1.979,1.979,1.981,1.981,1.981,1.985,1.986,1.984,1.985,1.985,1.984,1.984,1.984,1.985,1.986,1.988,1.988,1.985,1.985,1.985,1.986,1.986,1.985,1.986,1.985,1.987,1.988,1.985,1.986,1.988,1.989,1.988,1.988,1.986,1.983,1.985,1.987,1.987,1.988,1.989,1.988,1.989,1.989,1.988,1.987,1.99,1.993,1.991,1.992,1.991,1.99,1.99,1.989,1.99,1.991,1.991,1.991,1.989,1.991,1.99,1.991,1.991,1.992,1.991,1.988,1.99,1.99,1.988,1.989,1.99,1.991,1.991,1.992,1.991,1.989,1.989,1.989,1.99,1.99,1.993,1.995,1.995,1.992,1.991,1.99,1.993,2.012,1.998,1.999,2.031,2.026,2.018,2.038,2.066,2.019,2.044,2.06,2.04,2.028,2.031,2.037,2.041,2.04,2.044,2.01,2.01,1.999,1.999,1.997,1.998,1.998,1.999,2,2.082,2.139,2.027,2.017,2.005,1.998,1.998,1.998,1.998,1.997,1.997,1.995,1.995,1.998,1.997,1.994,1.996,1.995,1.995,1.994,1.995,2.035,2.055,2.12,2.106,2.083,2.147,2.148,2.135,2.04,1.998,1.997,1.997,1.999,1.998,1.998,2.002,2,1.999,1.999,1.998,1.997,1.994,1.999,2.004,1.998,2.038,2.032,2.073,2.081,1.998,1.997,1.992,1.995,1.995,1.991,1.994,1.995,1.996,1.996,1.996,1.997,1.995,1.997,1.998,1.995,1.996,1.996,1.996,1.998,1.999,1.999,1.997,2.02,2.051,2.108,2.163,2.157,2.148,2.139,2.144,2.138,2.1,2.111,2.095,2.039,2.065,2.075,2.064,2.056,2.077,2.08,2.051,2.078,2.081,2.047,2.098,2.094,2.054,2.04,2.036,1.999,1.994,1.993,1.986,1.984,1.986,1.986,1.987,1.987,1.988,1.987,1.985,1.987,1.988,1.985,1.984,1.984,1.985,1.982,1.982,1.982,1.98,1.981,1.982,1.979,1.982]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 3 --> 7
    line [4.143,4.125,4.212,4.13,4.174,4.194,4.11,4.225,4.26,4.183,4.247,4.293,4.312,4.342,4.383,4.385,4.237,4.413,4.4,4.333,4.359,4.44,4.505,4.478,4.5,4.566,4.463,4.594,4.58,4.545,4.55,4.54,4.516,4.479,4.379,4.812,4.774,4.826,4.824,4.819,4.84,4.865,4.843,4.843,4.873,4.876,4.775,4.821,4.856,4.929,4.948,4.939,4.948,4.991,4.964,4.991,4.886,4.956,5.174,5.216,5.372,5.503,5.578,5.564,4.984,4.959,4.922,4.992,4.992,4.969,5.04,5.06,5.041,5.041,5.12,5.061,4.984,4.977,4.906,4.842,4.836,4.814,4.784,4.752,4.708,4.712,4.613,4.624,4.567,4.455,4.39,4.266,4.32,4.286,4.286,4.506,4.932,5,5.127,4.96,4.981,4.971,4.961,4.921,4.93,4.939,4.912,4.946,5,5.032,5.097,5.125,5.125,5.154,5.156,5.185,4.939,4.988,5,5.032,5.127,5.156,5.154,5.154,4.992,4.309,4.246,4.315,4.38,4.41,4.543,4.554,4.55,4.568,4.6,4.636,4.578,4.575,4.523,4.493,4.5,4.536,4.529,4.54,4.556,4.534,4.465,4.529,4.5,4.446,4.446,4.528,4.548,4.707,4.653,4.711,4.911,4.932,4.857,4.762,4.774,4.814,4.8,4.847,4.843,4.831,4.795,4.805,4.791,4.791,4.813,4.89,4.878,4.889,4.892,4.887,4.833,4.853,4.844,4.828,4.764,4.773,4.393,4.394,4.259,3.974,3.958,3.964,3.954,3.941,3.923,3.931,3.904,3.893,3.911,3.905,3.902,3.902,3.901,3.859,3.846,3.855,3.842,3.841,3.839,3.846,3.85,3.852,3.888,3.89,3.873,3.903,3.901,3.894,3.897,3.906,3.91,3.909,3.915,3.908,3.904,3.931,3.943,3.938,3.951,3.944,3.944,3.924,3.943,3.931,3.92,3.944,3.937,3.923,3.912,3.905,3.902,3.866,3.879,3.88,3.85,3.856,3.848,3.842,3.83,3.819,3.815,3.812,3.831,3.81,3.779,3.791,3.798,3.785,3.801,3.787,3.796,3.783,3.797,3.795,3.759,3.776,3.787,3.809,3.812,3.822,3.829,3.843,3.864,3.865,3.855,3.885,3.883,3.879,3.891,3.894,3.916,3.912,3.942,3.954,3.937,3.941,3.935,3.94,3.951,3.948,3.941,3.938,3.949,3.959,3.958,3.983,3.976,3.976,3.969,3.952,3.93,3.927,3.948,3.963,3.937,3.949,3.957,3.943,3.946,3.923,3.921,3.896,3.892,3.888,3.867,3.875,3.858,3.848,3.854,3.866,3.856,3.837,3.833,3.822,3.78,3.787,3.792,3.791,3.809,3.815,3.81,3.789,3.796,3.801,3.779,3.804,3.816,3.819,3.816,3.825,3.822,3.821,3.84,3.846,3.829,3.837,3.842,3.837,3.826,3.841,3.851,3.862,3.869,3.859,3.843,3.854,3.866,3.877,3.865,3.851,3.864,3.848,3.863,3.874,3.843,3.85,3.848,3.867,3.844,3.847,3.831,3.804,3.828,3.862,3.849,3.861,3.863,3.873,3.88,3.88,3.866,3.876,3.901,3.924,3.912,3.914,3.906,3.911,3.922,3.914,3.932,3.933,3.937,3.934,3.922,3.932,3.922,3.926,3.928,3.936,3.945,3.92,3.919,3.919,3.9,3.905,3.914,3.915,3.919,3.925,3.916,3.905,3.899,3.895,3.887,3.883,3.892,3.901,3.903,3.876,3.869,3.871,3.879,3.918,3.909,3.918,3.931,3.942,3.935,3.937,3.94,3.934,3.943,3.946,3.945,3.939,3.932,3.927,3.929,3.931,3.937,3.93,3.932,3.937,3.931,3.932,3.927,3.918,3.94,3.947,3.997,4.139,4,3.993,3.987,3.973,3.966,3.969,3.954,3.953,3.943,3.934,3.928,3.943,3.943,3.94,3.947,3.929,3.927,3.925,3.926,3.962,3.963,3.981,3.963,3.959,4.013,3.991,3.979,3.929,3.892,3.887,3.892,3.914,3.918,3.91,3.927,3.937,3.934,3.94,3.943,3.949,3.929,3.953,3.953,3.952,3.983,3.983,3.983,3.983,3.949,3.942,3.919,3.93,3.931,3.888,3.904,3.917,3.92,3.917,3.924,3.93,3.913,3.915,3.918,3.9,3.909,3.912,3.905,3.925,3.934,3.94,3.933,3.97,3.971,3.992,4.117,4.143,4.139,4.117,4.115,4.141,4.141,4.177,4.177,4.082,4.135,4.178,4.141,4.097,4.099,4.058,4.044,4.07,4.085,4.028,4.132,4.132,4.043,4.029,4,3.976,3.931,3.936,3.883,3.861,3.888,3.885,3.892,3.892,3.883,3.873,3.853,3.879,3.877,3.858,3.86,3.858,3.859,3.85,3.855,3.847,3.837,3.846,3.851,3.826,3.848]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for database-sql-table:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,99.997,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.997,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.997,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.997,100,100,100,100,100,100,100,99.997,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.986,99.986,99.986,99.986,99.986,99.99,99.986,99.983,99.986,99.99,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,99.997,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,99.997,100,100,100,100,100,100.003,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,99.997,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100.003,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,99.997,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.965,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 844 --> 1104
    line [938.602,971.867,1000.034,1000,1000,1000,999.966,1000,1000.034,1000,1000.034,999.897,999.966,1000,999.966,999.966,1000.034,1000.034,1000.034,1000.034,999.931,1000.069,1000.034,1000,1000,1000,999.931,1000.034,1000.103,1000,1000.034,1000,1000.034,1000.034,1000,1000.034,1000,1000.034,1000,1000,1000.069,1000,1000,1000.034,1000,999.966,1000,999.966,1000,1000.034,999.966,999.966,1000,1000,999.966,1000.034,999.966,1000.034,999.966,1000,1000.034,999.931,1000,1000.034,1000,1000.034,1000,999.966,1000,1000,1000,1000,999.966,1000,1000.034,1000,1000.034,999.966,1000.034,1000.034,1000,1000,1000.034,1000.034,1000,996.724,1000,1000,1000,999.966,1000.103,1000,999.966,999.966,999.966,1000,1000.034,1000.034,1000,1000,1000.034,1000,1000.034,1000,1000,999.966,1000,1000,1000,1000,1000.034,999.966,1000,1000.034,1003.276,1000,1000,1000.034,1000.034,999.966,999.966,1000.034,1000.034,1000.034,999.966,1000,1000,999.966,1000.034,999.966,1000.034,999.966,1000,999.966,1000,1000,999.966,1000,1000,1000,1000.034,1000,1000,999.966,1000,999.552,999.966,999.931,1000,1000.034,999.966,999.966,999.966,999.966,1000,999.966,1000.034,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000,1000,1000,1000.034,1000,999.931,999.966,999.966,1000.034,1000,1000.483,1000.034,1000.034,1000.034,999.966,1000.034,1000.034,1000,1000.034,1000,1000,1000.034,999.966,1000,1000,1000.034,1000,999.966,999.966,1000,1000.034,1000,999.966,999.966,1000.034,1000,1000.034,1000,1000.034,999.966,999.966,1000.034,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000,1000,1000.069,1000.034,1000.034,1000,1000,1000,1000.034,1000,1000.034,999.931,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000,999.966,1000.034,999.966,1000,1000,999.966,1000,1000,1000,999.966,1000,1000,1000,999.966,999.966,999.966,1000,1000,1000.034,999.966,1000.069,999.966,999.897,1000.034,1000,1000,999.931,1000,999.966,1000,1000,1000,999.966,1000,1000,1000.034,1000,1000,1000,999.931,999.966,999.931,1000,1000.034,1000.034,1000,999.966,1000,1000.034,999.966,1000.034,1000.034,1000,1000,1000,1000,1000,1000,1000,1000,999.966,1000,999.966,1000,1000,1000,1000.034,1000,1000.069,1000.034,1000.069,1000.034,999.966,999.966,1000.034,1000,999.966,1000,1000,999.966,1000.069,999.966,999.966,999.966,1000.034,999.966,1000,1000.034,1000,1000.069,1000,1000.069,1000.034,1000,1000.034,999.966,1000.034,1000,1000,999.966,999.966,1000.034,1000.034,1000,1000.034,1000.069,1000,1000,1000.069,999.966,1000.034,1000,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000,1000.034,999.931,1000,1000,999.966,1000,1000,999.966,999.966,1000.034,1000.034,999.966,1000,1000,999.966,999.931,1000,1000,999.931,1000.034,1000,999.966,999.931,1000,999.655,999.966,1000,999.966,999.828,999.966,1000,999.931,999.966,1000.034,1000,999.966,1000.034,1000,999.966,999.931,1000.069,999.966,999.966,1000,1000.034,1000,1000,1000,1000,1000,1000.034,1000.034,999.966,1000.345,1000.034,1000,1000.034,1000.138,1000.034,1000,1000.034,1000.034,1000,1000.034,999.931,999.966,1000.034,1000.034,1000.069,999.966,1000,1000.034,1000.034,999.966,1000,1000,1000,999.966,1000,1000.034,1000.034,1000,999.931,999.966,1000.034,999.966,1000.034,999.966,1000.034,1000.034,1000,999.966,1000,1000.138,1000.034,999.966,999.966,999.966,1000.034,1000.034,1000,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000,1000,1000,1000.069,1000,999.931,1000.034,1000,1000.069,1000,1000,1000,1000,999.966,999.931,1000,1000,1000,1000.034,999.966,1000,999.966,999.966,1000,999.966,1000,999.966,1000,1000.034,999.966,999.931,1000.034,1000,1000,1000.069,999.966,1000,999.966,1000,1000,999.966,1000,1000.034,999.931,999.966,1000.034,1000.034,999.966,1000,999.931,1000.034,1000.034,1000,1000.034,1000,1000,1000,999.966,1000.034,1000.034,1000,1000,1000,1000,1000,999.966,999.966,1000,1000,1000.034,1000.034,1000,1000.103,1000,1000,1000,1000.069,999.966,1000.034,999.966,999.966,1000,999.966,1000,1000,1000.069,1000.069,1000.034,1000.034,1000,999.966,1000,999.966,1000,1000.034,1000.034,999.966,1000,1000.034,1000,1000,1000,1000.034,1000,1000,999.931,1000.034,1000.034]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 84 --> 111
    line [93.853,97.187,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.724,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.276,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.069,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 1 --> 5
    line [2.994,3.006,2.98,2.959,2.974,2.964,3.061,3.145,3.192,3.268,3.315,3.362,3.39,3.488,3.528,3.485,3.523,3.529,3.528,3.532,3.531,3.511,3.48,3.449,3.41,3.671,3.714,3.691,3.647,3.619,3.581,3.554,3.526,3.477,3.414,3.187,3.128,3.065,2.989,2.965,2.941,2.92,2.851,2.802,2.775,2.736,2.751,2.767,2.762,2.763,2.771,2.767,2.763,2.764,2.473,2.391,2.4,2.425,2.418,2.406,2.421,2.42,2.415,2.41,2.411,2.381,2.393,2.43,2.423,2.4,2.419,2.418,2.417,2.427,2.431,2.411,2.395,2.417,2.42,2.41,2.422,2.506,2.51,2.495,2.487,2.572,2.81,2.837,2.849,2.852,2.864,2.872,2.873,2.878,2.879,2.875,2.864,2.888,2.896,2.891,2.9,2.9,2.903,2.9,2.895,2.893,2.879,2.882,2.874,2.861,2.805,2.8,2.799,2.794,2.711,2.473,2.434,2.424,2.406,2.407,2.405,2.414,2.403,2.397,2.395,2.391,2.339,2.36,2.37,2.348,2.366,2.391,2.39,2.411,2.417,2.43,2.421,2.462,2.476,2.486,2.5,2.538,2.559,2.567,2.58,2.613,2.944,2.963,2.978,2.98,2.983,2.988,2.991,2.994,2.995,2.996,2.987,2.989,2.985,2.984,2.97,2.971,2.964,2.962,2.958,2.953,2.943,2.948,2.937,2.93,2.909,2.899,2.902,2.889,2.855,2.407,2.353,2.269,2.24,2.199,2.136,2.097,2.041,2.024,2,1.999,1.996,1.996,1.995,1.994,1.994,1.994,1.992,1.991,1.992,1.991,1.99,1.99,1.99,1.989,1.988,1.988,1.988,1.987,1.986,1.985,1.984,1.985,1.984,1.984,1.985,1.986,1.986,1.986,1.987,1.987,1.985,1.987,1.987,1.987,1.986,1.987,1.988,1.987,1.987,1.987,1.986,1.986,1.986,1.984,1.983,1.984,1.984,1.984,1.985,1.984,1.982,1.982,1.982,1.981,1.981,1.982,1.982,1.983,1.984,1.984,1.983,1.985,1.985,1.985,1.987,1.989,1.99,1.991,1.992,1.993,1.994,1.997,1.997,1.997,1.999,2.014,2.037,2.047,2.059,2.092,2.087,2.129,2.14,2.15,2.155,2.169,2.155,2.153,2.155,2.166,2.153,2.175,2.173,2.175,2.159,2.156,2.182,2.172,2.164,2.145,2.118,2.155,2.183,2.158,2.156,2.166,2.161,2.15,2.129,2.127,2.094,2.103,2.096,2.075,2.075,2.105,2.098,2.103,2.096,2.1,2.067,2.076,2.051,2.026,2.021,2.001,2,2,2.003,2,1.997,1.996,1.994,1.993,1.991,1.991,1.992,1.992,1.992,1.992,1.991,1.991,1.99,1.989,1.987,1.988,1.988,1.988,1.987,1.987,1.986,1.986,1.987,1.986,1.984,1.986,1.986,1.986,1.985,1.986,1.984,1.985,1.985,1.985,1.984,1.986,1.986,1.986,1.986,1.986,1.986,1.987,1.988,1.987,1.985,1.987,1.986,1.987,1.986,1.987,1.987,1.986,1.99,1.99,1.989,1.991,1.992,1.992,1.993,1.993,1.994,1.995,1.997,1.997,1.995,2,2.1,2.128,2.148,2.166,2.2,2.216,2.253,2.269,2.26,2.287,2.324,2.344,2.341,2.343,2.354,2.339,2.362,2.366,2.366,2.393,2.414,2.416,2.421,2.419,2.416,2.402,2.417,2.427,2.386,2.351,2.349,2.343,2.332,2.307,2.294,2.268,2.274,2.26,2.231,2.201,2.211,2.211,2.211,2.203,2.188,2.154,2.169,2.151,2.106,2.096,2.109,2.13,2.144,2.15,2.152,2.137,2.163,2.162,2.145,2.147,2.177,2.191,2.187,2.195,2.197,2.185,2.21,2.217,2.205,2.188,2.189,2.185,2.185,2.18,2.176,2.153,2.152,2.14,2.111,2.079,2.072,2.049,2.036,2.032,2.024,1.998,1.999,1.998,1.996,1.995,1.996,1.997,1.997,1.998,1.999,1.998,2.034,2.046,2.04,2.06,2.095,2.104,2.106,2.116,2.129,2.132,2.182,2.19,2.197,2.193,2.241,2.267,2.282,2.297,2.32,2.311,2.329,2.333,2.324,2.326,2.341,2.337,2.334,2.325,2.338,2.297,2.308,2.317,2.318,2.313,2.338,2.352,2.357,2.358,2.357,2.323,2.355,2.358,2.352,2.324,2.327,2.315,2.306,2.283,2.278,2.256,2.275,2.261,2.22,2.195,2.192,2.19,2.178,2.144,2.142,2.119,2.108,2.088,2.058,2.002,2.026,2.009,2,1.999,1.999,1.996,1.996,1.994,1.993,1.992,1.993,1.993,1.994,1.994,1.995,1.993,1.996,1.998,1.999,2,2.016,2.031,2.045,2.04,2.048,2.048,2.076,2.082,2.091,2.061,2.095]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 2 --> 6
    line [4.009,4.04,3.985,3.954,3.975,3.959,4.091,4.21,4.214,4.314,4.352,4.38,4.442,4.529,4.591,4.532,4.583,4.59,4.597,4.597,4.6,4.574,4.532,4.509,4.491,4.784,4.818,4.796,4.752,4.765,4.735,4.716,4.688,4.659,4.602,4.375,4.299,4.27,4.141,4.045,4.03,3.99,3.911,3.826,3.812,3.756,3.761,3.763,3.761,3.77,3.786,3.779,3.772,3.757,3.323,3.195,3.224,3.248,3.234,3.217,3.208,3.234,3.216,3.202,3.203,3.112,3.091,3.195,3.205,3.152,3.202,3.231,3.252,3.282,3.301,3.26,3.25,3.298,3.309,3.331,3.362,3.469,3.486,3.489,3.496,3.606,3.906,3.937,3.933,3.94,3.941,3.941,3.947,3.942,3.942,3.92,3.894,3.926,3.933,3.92,3.928,3.923,3.928,3.916,3.922,3.921,3.896,3.924,3.915,3.895,3.828,3.827,3.816,3.807,3.677,3.354,3.279,3.319,3.322,3.347,3.362,3.381,3.37,3.373,3.384,3.387,3.31,3.362,3.371,3.315,3.319,3.338,3.345,3.382,3.397,3.427,3.4,3.427,3.422,3.444,3.439,3.491,3.522,3.536,3.561,3.633,3.995,4.043,4.16,4.16,4.146,4.167,4.167,4.163,4.125,4.167,4.068,4.087,4.146,4.18,4.083,4.14,4.083,4.043,3.988,3.976,3.981,3.994,3.968,3.968,3.921,3.911,3.904,3.889,3.804,3.189,3.128,3.009,3.036,2.999,2.996,2.996,2.993,2.991,2.99,2.991,2.988,2.988,2.987,2.987,2.987,2.988,2.988,2.988,2.991,2.99,2.987,2.989,2.988,2.988,2.988,2.989,2.99,2.988,2.989,2.989,2.989,2.987,2.988,2.991,2.99,2.993,2.993,2.993,2.993,2.994,2.992,2.991,2.992,2.992,2.993,2.993,2.992,2.993,2.994,2.995,2.994,2.994,2.992,2.99,2.989,2.99,2.991,2.99,2.989,2.986,2.984,2.984,2.982,2.98,2.978,2.978,2.978,2.979,2.979,2.98,2.982,2.982,2.982,2.981,2.982,2.984,2.983,2.982,2.983,2.983,2.983,2.986,2.984,2.982,2.982,2.984,2.984,2.987,2.988,2.991,2.99,2.992,2.993,2.994,2.994,2.996,2.995,2.996,2.995,2.996,2.994,2.994,2.994,2.993,2.994,2.994,2.999,2.997,2.997,2.996,2.996,3,3.091,3.071,3.09,3.17,3.157,3.165,3.119,3.136,3.119,3.142,3.159,3.142,3.151,3.2,3.185,3.209,3.218,3.214,3.191,3.223,3.232,3.206,3.217,3.194,3.192,3.183,3.208,3.189,3.133,3.13,3.13,3.074,3,3.022,3.033,3.011,3.011,2.998,2.995,2.994,2.993,2.99,2.988,2.991,2.99,2.988,2.988,2.987,2.984,2.985,2.984,2.982,2.979,2.982,2.982,2.982,2.982,2.983,2.979,2.979,2.976,2.977,2.976,2.979,2.98,2.979,2.981,2.982,2.981,2.982,2.984,2.982,2.979,2.98,2.981,2.981,2.983,2.985,2.984,2.985,2.99,2.99,2.987,2.992,2.992,2.991,2.99,2.991,2.992,2.995,2.997,2.997,2.991,2.998,3.104,3.111,3.103,3.12,3.149,3.176,3.219,3.208,3.194,3.212,3.25,3.254,3.235,3.248,3.259,3.206,3.244,3.252,3.218,3.295,3.343,3.346,3.351,3.364,3.357,3.347,3.381,3.411,3.316,3.265,3.27,3.278,3.237,3.22,3.184,3.133,3.19,3.163,3.118,3.121,3.146,3.165,3.147,3.118,3.109,3.044,3.054,3.043,2.996,2.994,2.994,2.994,2.993,2.993,2.992,2.99,2.99,2.989,2.987,2.986,2.988,2.989,2.989,2.99,2.99,2.989,2.992,2.993,2.992,2.991,2.989,2.99,2.991,2.99,2.99,2.989,2.987,2.986,2.986,2.985,2.987,2.986,2.984,2.985,2.983,2.981,2.983,2.982,2.981,2.98,2.981,2.983,2.982,2.982,2.983,2.981,2.984,2.985,2.985,2.988,2.99,2.99,2.99,2.99,2.991,2.995,3,2.999,3,2.999,3.088,3.167,3.212,3.235,3.256,3.241,3.243,3.254,3.223,3.235,3.25,3.259,3.289,3.277,3.325,3.301,3.336,3.339,3.336,3.32,3.37,3.372,3.385,3.383,3.368,3.328,3.363,3.363,3.361,3.289,3.302,3.281,3.272,3.259,3.281,3.296,3.31,3.31,3.264,3.25,3.241,3.214,3.205,3.147,3.121,3.03,3.029,2.999,2.996,2.993,2.997,2.996,2.996,2.996,2.995,2.991,2.99,2.989,2.988,2.985,2.987,2.988,2.989,2.987,2.987,2.986,2.989,2.991,2.991,2.994,2.995,2.995,2.995,2.996,2.997,2.995,2.997,2.999,2.999,2.997,3]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for gorm-table:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100.003,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.986,99.983,99.983,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.983,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,99.986,100,100.003,100,100,100,100,100,100,100,100,100.003,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.972,99.972,99.976,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.976,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100.003,100,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,99.997,100,100,99.997,100,100,100,100,100,100,100.003,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,99.997,100,100,100,100,100,99.997,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 810 --> 1112
    line [900.539,933.904,967.235,1002.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000,1000,1000,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000,999.966,1000,1000,1000.034,1000,1000,1000,1000.034,1000,999.966,999.931,1000,999.966,989.345,991.379,1000.069,1000,1000.069,999.966,1000.069,1000,999.931,1000,1000.138,999.931,1000.069,1000.034,1000,1000,1000.034,1000.034,1000.069,1000.034,1000,1000.034,1000.034,1000,1000.034,1000.069,1000.069,1000.069,1000,1010.69,1008.69,999.966,1000,999.862,1000.103,1000,1000,1000.138,1000.034,1000.034,1000.069,1000,1000,1000.034,1000.034,1000.034,1000,999.966,1000,1000.103,999.966,1000.034,1000,1000.034,1000,1000,999.966,1000.069,1000,999.966,999.966,999.862,1000.103,1000,999.966,991.379,1000.034,1000,1000,1000.034,1000.034,1000.034,1000.034,999.931,1000.034,1000.069,1000.034,1000,1000,1000,1000,1000,991.379,1000.034,1000,1000.034,1000,1000,1000.069,1000.034,1000.138,1000.034,1000.034,1000.069,1008.655,999.966,999.966,1000,1000.034,999.966,1000.034,999.966,1000.069,999.966,1000,1000.034,1000,999.966,1000.034,1000.034,1000.069,1008.621,1000,1000.034,1000,1000,1000.034,999.931,1000.034,1000.034,1000.034,999.414,999.931,1000,999.966,1000.034,1000.034,999.966,1000,1000,1000.034,999.931,1000.034,999.966,1000,1000.034,1000.034,1000.034,1000,1000,1000.034,999.966,999.966,1000,1000.034,1000,1000.034,1000,1000.034,999.966,1000.552,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000.034,999.897,999.931,1000.103,1000,1000.034,1000.034,1000,1000,999.966,1000,999.966,1000,1000.034,1000.069,1000,999.966,1000,1000,1000.034,999.931,1000,1000.034,1000,1000,1000,1000,1000,991.414,999.966,1000.103,1000.069,999.966,1000,1000,999.931,999.966,999.966,1000.034,1000,1000.034,1000,999.897,1000,1000,1000,999.966,1000.034,999.966,1000.034,1000,1000,1000,999.966,1000,1000,1000.034,1008.517,1000.069,999.966,991.379,1000.034,1000,1000,1000.034,999.966,1000.034,999.966,999.966,999.897,1000,1000.069,1000,1000.069,1000,999.966,999.966,991.414,1000,1000,999.966,1000,999.966,1000.034,1000,1000.034,1000.138,999.966,1000.034,1008.586,1000.034,1000,999.966,1000,1000.069,999.966,1000.034,1000.034,1000.138,1000,1000.034,1000.034,999.966,1000.034,1000.069,1000.069,1008.621,1000.034,1000.069,1000.034,1000.069,1000.069,1000,1000,999.966,999.966,1000.034,999.966,1000.034,1000,1000,991.414,1000,999.966,1000.034,1000,1000.034,999.966,1000.034,1000,999.966,1000,1000.034,1000.034,999.966,1000,1000,999.966,1000.034,999.966,1000.034,1000,1000,1000.034,1000,1000,1000.069,1000,1000.034,1000,1008.621,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000,999.966,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000,1000,999.966,1000,1000.034,999.966,1000,1000,999.966,1000,999.931,1000,1000.034,1000,1000,1000,1000,1000,1000.034,1000,1000.034,999.931,1000,1000,999.966,1000.034,1000.034,1000.034,1000.034,999.966,1000.034,1000,1000.034,1000,1000,1000,1000,1000.034,1000,991.379,1000,999.897,999.966,1000.034,1000,999.966,1000,1000,1000,1000.034,1000.034,999.966,1000.034,1000,999.966,999.966,1000,999.966,1000.034,1000.034,1000,999.966,999.966,1000,1000,991.345,999.966,1000.034,1008.621,1000,991.448,1000,999.931,1000,1000.034,1000.034,999.931,1000,999.966,999.966,1000.034,1000,1000.034,1000.034,1000.069,1000,1000,1000,999.966,999.931,1000,1000,1000,1000,1008.655,1000,999.966,999.966,1000.034,1008.655,1000,1000.069,1000.034,1000,999.966,999.966,1000,1000.034,1000.034,1000.034,1000,999.966,999.966,999.966,1000,1000.034,999.966,1000,1000.103,1000.034,1000.034,1000.069,1000.034,1000,1000,1000,1000.069,999.966,1000,1000,1000,999.931,999.966,1000.069,1000.069,999.966,999.966,1000.034,1000.034,1000,1000,1000,1000,999.897,1000,1000.034,1000,999.966,1000,1000.034,1000,1000,1000,1000,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000,999.966,991.414,1000,1000.034,999.897,999.966,1000,1000.034,1000.034,1000.034,1000.103,1000,1000,999.966,1000.034,1000,999.966,999.931,1000,1000,1000.034,1000,999.931,1000.034,1000,1000,1000,1000,1000.069,999.828,1008.621,1000,999.966,1000.103,1000,1000,999.966,1000,999.897,1000,1000,1000,1000.034,1000,1000,1000,1000,991.379,999.966,1000,1000,1000,1000,968.167]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 81 --> 112
    line [90.437,93.77,97.103,100.586,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,98.897,99.138,100,100,100,99.959,100,100,99.966,100,100.034,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,101.103,100.862,100,100,99.966,100.041,100,100,100.034,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,99.138,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.138,100,100,100,100,100,100,100,100,100,100,100,100.862,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.862,100,100,100,100,100,100,100,100,100,99.897,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100.103,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,99.138,100,100,100,99.966,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.862,100,100,99.138,100.034,100,100,100,99.966,100,100,100,100,100,100.034,100,100,100,99.966,100,99.138,100,100,100,100,100,100,100,100,100,100,100,100.862,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100.034,100,100.862,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.138,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.862,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,99.993,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.138,100,99.966,100,100,100,100,100,100,100,100,100.007,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,99.138,100,100,100.862,100,99.172,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100.034,100.862,100,100,100,100,100.862,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.138,100,100,99.966,100,100,100,100,100,100.034,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100.862,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100.034,99.138,100,100,100,99.966,100,96.817]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 2 --> 7
    line [3.165,3.113,3.063,3.017,2.917,2.873,2.903,2.905,2.9,2.812,2.76,2.761,2.759,2.76,2.76,2.724,2.767,2.765,2.759,2.77,2.768,2.773,2.773,2.777,2.793,2.752,2.792,2.803,2.797,2.805,2.806,2.838,2.892,2.931,3.065,3.95,4.285,4.357,4.385,4.551,4.757,4.801,4.826,4.85,4.867,4.851,4.986,5.025,5.091,5.239,5.326,5.369,5.401,5.441,5.494,5.422,5.424,5.431,5.428,5.431,5.407,5.328,5.257,4.864,4.022,3.909,3.898,3.874,3.792,3.665,3.621,3.58,3.541,3.481,3.389,3.174,3.142,3.025,2.96,2.933,2.907,2.868,2.822,2.771,2.754,2.736,2.748,2.755,2.75,2.748,2.75,2.753,2.755,2.757,2.745,3.111,3.333,3.337,3.318,3.322,3.363,3.367,3.376,3.392,3.387,3.31,3.351,3.401,3.392,3.406,3.447,3.467,3.46,3.466,3.487,3.449,3.458,3.552,3.558,3.56,3.578,3.574,3.575,3.588,2.883,2.84,2.852,2.852,2.85,2.837,2.862,2.861,2.862,2.864,2.863,2.856,2.854,2.859,2.856,2.85,2.872,2.88,2.88,2.88,2.885,2.885,2.856,2.857,2.85,2.845,2.869,2.869,2.867,2.868,2.871,2.987,3.146,3.142,3.133,3.007,3.046,3.024,3.021,3.021,2.996,2.985,2.981,2.976,2.973,2.968,2.98,2.983,2.982,2.975,2.975,2.966,2.96,2.965,2.964,2.938,2.997,2.996,2.995,2.993,2.839,2.784,2.78,2.79,2.793,2.777,2.795,2.795,2.793,2.795,2.795,2.799,2.801,2.805,2.779,2.762,2.774,2.776,2.775,2.766,2.761,2.764,2.756,2.768,2.767,2.693,2.704,2.705,2.7,2.686,2.678,2.689,2.672,2.681,2.68,2.657,2.685,2.692,2.688,2.686,2.674,2.672,2.668,2.678,2.669,2.646,2.66,2.659,2.664,2.669,2.671,2.671,2.655,2.665,2.663,2.655,2.678,2.68,2.68,2.683,2.674,2.674,2.66,2.668,2.681,2.649,2.656,2.662,2.661,2.664,2.665,2.664,2.653,2.671,2.67,2.653,2.68,2.677,2.675,2.675,2.684,2.689,2.685,2.69,2.69,2.672,2.689,2.691,2.69,2.688,2.689,2.692,2.687,2.689,2.692,2.68,2.719,2.719,2.72,2.721,2.72,2.722,2.706,2.714,2.717,2.696,2.709,2.713,2.704,2.695,2.69,2.691,2.683,2.688,2.686,2.665,2.675,2.687,2.688,2.688,2.689,2.681,2.668,2.685,2.689,2.649,2.659,2.667,2.671,2.667,2.668,2.671,2.659,2.667,2.66,2.651,2.652,2.673,2.68,2.68,2.678,2.681,2.678,2.689,2.695,2.686,2.685,2.704,2.705,2.705,2.712,2.714,2.695,2.704,2.702,2.696,2.7,2.703,2.705,2.703,2.702,2.704,2.694,2.734,2.732,2.727,2.717,2.721,2.724,2.727,2.726,2.727,2.715,2.726,2.728,2.72,2.714,2.73,2.727,2.721,2.719,2.722,2.71,2.718,2.715,2.705,2.703,2.71,2.708,2.708,2.706,2.704,2.663,2.671,2.669,2.663,2.661,2.67,2.668,2.668,2.662,2.67,2.654,2.661,2.657,2.645,2.637,2.668,2.668,2.666,2.671,2.675,2.665,2.665,2.674,2.669,2.668,2.697,2.697,2.697,2.698,2.698,2.692,2.721,2.721,2.716,2.703,2.726,2.723,2.726,2.715,2.711,2.71,2.722,2.723,2.714,2.712,2.808,2.865,2.892,2.942,2.974,2.993,3.146,3.245,3.324,3.401,3.432,3.435,3.436,3.441,3.435,3.395,3.408,3.426,3.43,3.395,3.413,3.411,3.414,3.425,3.419,3.413,3.414,3.43,3.398,3.227,3.146,3.066,2.979,2.949,2.922,2.867,2.827,2.778,2.694,2.678,2.694,2.689,2.682,2.677,2.678,2.67,2.653,2.665,2.668,2.649,2.668,2.668,2.669,2.673,2.669,2.672,2.661,2.675,2.677,2.647,2.673,2.678,2.68,2.678,2.682,2.683,2.664,2.671,2.667,2.65,2.672,2.675,2.681,2.682,2.682,2.687,2.676,2.679,2.681,2.665,2.688,2.687,2.683,2.689,2.691,2.69,2.676,2.694,2.701,2.68,2.701,2.705,2.709,2.704,2.703,2.707,2.701,2.71,2.707,2.711,2.721,2.734,2.738,2.741,2.744,2.743,2.736,2.75,2.754,2.735,2.755,2.755,2.754,2.749,2.753,2.754,2.74,2.748,2.743,2.723,2.735,2.739,2.75,2.756,2.758,2.759,2.748,2.767,2.767,2.813,2.81,2.811,2.81,2.806,2.812,2.813,2.807,2.818,2.82,2.806,2.814,2.816,2.816,2.817,2.817,2.818,2.809,2.82,2.825,2.811,2.811,2.814,2.815]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 5 --> 14
    line [7.267,7.241,7.192,7.201,6.717,6.552,6.64,6.658,6.655,6.298,6.106,6.111,6.102,6.12,6.125,5.968,6.189,6.204,6.181,6.198,6.235,6.265,6.25,6.227,6.295,6.123,6.3,6.328,6.307,6.327,6.286,6.455,6.705,6.883,7.129,8.677,9.27,9.342,9.407,9.534,9.786,9.816,9.846,9.866,9.869,9.888,10.714,10.796,10.877,11.111,11.475,11.68,11.875,11.875,12.061,11.746,11.746,11.746,11.746,11.746,11.68,11.186,11.03,9.898,8.72,8.377,8.34,8.276,8.05,7.661,7.524,7.472,7.451,7.411,7.355,7.236,7.204,7.117,7.019,6.922,6.819,6.696,6.496,6.237,6.142,6.064,6.128,6.178,6.138,6.139,6.159,6.123,6.124,6.129,6.095,7.036,7.233,7.226,7.201,7.213,7.276,7.263,7.288,7.312,7.301,7.261,7.305,7.322,7.309,7.333,7.369,7.38,7.38,7.412,7.423,7.399,7.4,7.45,7.441,7.441,7.471,7.471,7.481,7.471,6.747,6.578,6.616,6.622,6.605,6.502,6.589,6.592,6.585,6.592,6.613,6.57,6.571,6.598,6.601,6.601,6.694,6.724,6.724,6.754,6.759,6.781,6.685,6.712,6.709,6.678,6.756,6.736,6.729,6.711,6.73,7.224,7.351,7.363,7.382,7.344,7.327,7.314,7.313,7.265,7.233,7.216,7.209,7.155,7.104,7.096,7.135,7.134,7.09,7.06,7.033,6.978,6.931,6.929,6.896,6.821,7.019,7.036,7.036,7.005,6.365,6.088,6.08,6.164,6.165,6.095,6.193,6.194,6.236,6.229,6.249,6.317,6.324,6.362,6.264,6.181,6.25,6.263,6.27,6.257,6.25,6.276,6.229,6.317,6.304,6.055,6.088,6.097,6.097,6.04,6.088,6.111,6,6.034,6.053,5.969,6.08,6.09,6.096,6.072,5.97,5.976,5.934,5.982,5.947,5.85,5.928,5.934,5.903,5.904,5.903,5.903,5.817,5.888,5.883,5.799,5.878,5.9,5.929,5.885,5.827,5.827,5.739,5.784,5.864,5.685,5.769,5.809,5.815,5.85,5.856,5.855,5.771,5.909,5.856,5.727,5.856,5.889,5.884,5.884,5.925,5.897,5.799,5.867,5.889,5.827,5.903,5.868,5.909,5.908,5.94,5.929,5.911,5.923,5.958,5.867,6.025,6.023,5.99,6,6.003,6.038,5.925,5.987,6.032,5.911,5.971,6.016,5.997,6.003,6.027,6.073,6.045,6.076,6.08,6.009,6.057,6.071,6.069,6.073,6.103,6.071,5.988,6.021,6.033,5.839,5.89,5.919,5.928,5.913,5.928,5.932,5.909,5.923,5.919,5.865,5.828,5.918,5.908,5.902,5.855,5.854,5.823,5.885,5.88,5.828,5.828,5.899,5.904,5.889,5.936,5.959,5.904,5.956,5.956,5.928,5.967,5.985,6.003,5.997,6.003,6,5.982,6.148,6.113,6.144,6.078,6.114,6.129,6.136,6.135,6.114,6.039,6.091,6.089,6.06,6.065,6.157,6.134,6.115,6.101,6.102,6.058,6.096,6.102,6.035,5.997,5.99,5.987,5.983,5.969,5.918,5.724,5.828,5.763,5.727,5.729,5.771,5.817,5.828,5.833,5.877,5.85,5.912,5.87,5.806,5.747,5.89,5.88,5.849,5.854,5.868,5.828,5.806,5.854,5.839,5.883,5.968,5.975,5.964,5.992,6.008,5.968,6.064,6.073,6.057,6.016,6.081,6.06,6.029,6.008,5.984,5.943,6.011,6.037,5.992,5.994,6.406,6.621,6.711,6.884,6.965,7.065,7.175,7.233,7.283,7.337,7.361,7.367,7.373,7.378,7.382,7.367,7.391,7.39,7.396,7.369,7.384,7.379,7.374,7.391,7.391,7.378,7.359,7.372,7.34,7.225,7.165,7.108,6.993,6.904,6.751,6.543,6.408,6.185,5.771,5.702,5.778,5.755,5.789,5.789,5.795,5.747,5.747,5.818,5.859,5.731,5.774,5.697,5.676,5.676,5.717,5.778,5.707,5.807,5.818,5.683,5.844,5.87,5.916,5.916,5.924,5.908,5.802,5.818,5.797,5.721,5.808,5.807,5.813,5.813,5.823,5.858,5.833,5.843,5.872,5.804,5.909,5.913,5.904,5.9,5.923,5.918,5.838,5.943,5.968,5.882,5.952,5.932,5.938,5.91,5.925,5.939,5.902,5.937,5.939,5.952,5.98,6.065,6.071,6.062,6.057,5.985,5.937,5.997,6.051,6.02,6.122,6.139,6.124,6.096,6.131,6.131,6.052,6.107,6.101,6.039,6.142,6.17,6.21,6.216,6.223,6.217,6.176,6.243,6.263,6.396,6.385,6.403,6.401,6.386,6.423,6.419,6.389,6.419,6.387,6.336,6.383,6.401,6.402,6.383,6.359,6.373,6.304,6.383,6.397,6.317,6.337,6.356,6.358]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for native-query:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100.003,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100.003,99.997,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100.003,100,100,100,100,100.003,100,100,100,100,100.003,100.003,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,99.997,100,99.997,100,100.003,100,100,99.997,100,100,100,100,100,99.997,100,100.007,100,100,100,100,100,100,100,100,100.003,100,99.997,100,100,100.003,100,100,99.997,99.997,100,99.997,100,100,100,100,100,100,100,100,99.993,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,100,99.997,100,100,100,100,100,100,99.997,100.003,100,100,99.997,100,100,99.997,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100.003,99.997,100,100.003,100.003,100,100,100,99.997,100,99.997,99.997,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100,99.997,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100.003,100,100,100,100,100,100,100,100.003,100,100,99.997,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100.003,100,100.003,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100.003,99.997,100,100,100,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,99.997,100,100,99.997,100,100,100,100,100,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100.003,100,100,100,100,100,99.997,100.003,100,100,100,100,100.003,100.003,100,100,100,100,100,100,100,100,100,100,100]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.035,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 834 --> 1105
    line [927.467,960.8,999.966,999.966,1000.034,999.966,1000,1000,1000,1000,1000,1000,1000,1000.034,1000.414,1000.034,1000,1000,1000,1000.034,1000,1000,999.966,1000,1000,1000.034,1000,1000.034,1000,1000.034,1000.034,1000.103,1000.138,1000.034,1000.069,1000.034,1000.034,1000,1000.069,1000,1000.034,1000.069,1000.034,1000.034,1000,1000,1000.034,1000,1000.034,1000.069,1000.034,1000.069,999.966,1000.034,1000.069,1000.034,999.931,1000.034,1000,1000.034,999.966,999.966,999.966,1000,1000,1000,1000.034,999.966,1000,1000,999.966,1000,1000.034,1000.034,1000.034,1000,1000.069,1000,1000,1000.034,1000.034,1000.069,1000,999.931,1000,1000.069,996.31,1000.034,1000.034,1000.069,1000.069,1000.103,1000.069,1000.069,1000.069,1000.034,1000.103,1000.069,1000.034,1000.069,1000.069,1000.069,1000.069,1000.069,1000.069,1000.034,1000.069,1000.069,1000.034,1000.034,1000.103,1000.069,1000.103,1000.069,1000.069,1003.759,1000,999.966,1000,1000,999.966,1000,1000,1000,1000.034,1000,1000.034,1000,999.966,1000,1000,1000,1000,1000,999.966,999.966,1000,1000,1000,999.966,1000,999.966,1000,999.966,1000,1000.034,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,999.966,1000.034,1000,1000,1000,999.966,1000,1000,1000.034,1000,1000,1000,1000,1000.034,1000,1000.034,1000,1000.034,1000,1000,1000,1000,1000,1000,1000,999.966,1000,1000,1000,1000.034,999.966,1000.034,1000,1000,1000.034,1000,1000,1000,1000.034,999.966,1000,999.966,999.966,1000,1000,1000,1000,1000,1000,999.966,1000,1000,1000,1000,1000,999.966,1000,999.966,999.966,1000.034,999.897,1000,1000,1000.034,1000,1000,999.966,1000,1000.034,1000,1000.034,999.897,999.966,999.966,1000,1000,1000,999.966,1000.034,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000.034,1000,1000.069,999.931,1000,999.966,999.966,1000,1000.034,999.966,999.966,999.966,1000,1000.103,1000,1000.034,1000,1000,1000,1000.069,999.966,1000,1000,999.897,999.966,1000,1000.069,1000,1000,1000,1000.034,1000.034,1000.069,999.966,1000,1000.034,1000,1000,1000.069,1000.034,1000.034,1000,1000,1000.034,1000,999.966,1000,1000,999.966,1000.034,1000,1000,1000.103,1000.034,999.966,999.966,1000,1000,1000,999.966,1000.034,1000,999.931,1000,1000,1000,999.966,999.966,1000,999.966,1000,1000,1000,999.897,1000.034,1000,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,999.966,1000,1000.103,1000,999.966,999.966,1000.069,999.966,1000,1000.034,999.931,1000,1000,1000.103,999.966,999.966,1000,999.897,1000.034,1000,999.931,1000,1000.034,1000,1000,1000,1000,999.966,1000,1000,1000,1000,1000,1000.034,1000.034,999.966,1000.034,1000,1000,1000.069,999.966,1000,1000,1000.034,1000.034,1000.034,1000.103,999.966,1000,1000.069,1000,1000,1000,1000.034,1000,1000.034,999.931,1000,1000,1000,1000,1000,1000,999.828,1000.034,1000,1000,1000,1000.034,999.931,1000,1000,1000,1000.034,999.966,1000,1000,1000,999.931,1000,999.966,1000.034,999.966,1000,999.966,1000.138,1000,1000,1000,1000,1000.034,1000,1000.172,999.966,1000,999.966,1000,999.862,1000.103,1000,1000.034,1000.034,999.966,1000,999.931,1000.034,1000,1000.034,1000,1000,999.931,1000,1000.034,1000.034,999.966,999.966,1000,1000,1000,999.966,999.966,1000.034,1000.034,1000,1000.069,1000,1000.103,1000,1000,999.966,999.966,1000,1000,1000.069,999.966,999.966,1000.034,1000,1000.034,1000.069,1000.034,1000,999.966,1000,1000,1000,1000,1000,999.966,1000,1000,999.966,1000,999.966,1000,1000.034,1000,1000.034,1000,1000,1000,1000,1000.034,1000,1000.069,1000,1000,1000,999.966,999.862,1000,1000.034,1000,1000.069,1000,1000,1000,1000.034,1000.034,999.966,1000,1000,1000,1000.034,999.966,1000,999.966,1000,1000,999.966,1000,1000,1000,999.966,1000,1000,999.966,1000,1000.103,999.966,999.966,1000,999.966,1000,1000,999.966,1000,1000,1000,1000,1000,1000,999.966,1000,1000,1000.034,999.966,1000,1000,1000,999.966,1000,1000,999.966,999.966,1000.034,1000.034,999.897,999.966,1000,1000,1000,1000,1000,1000.034,999.966,1000,1000,1000,1000.034,1000,972.533]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 83 --> 111
    line [92.747,96.08,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.552,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.448,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.993,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.99,100,100,100,100,100,100,100,100,100.007,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.01,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,97.253]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 1 --> 3
    line [2.457,2.421,2.398,2.375,2.26,2.229,2.271,2.26,2.205,2.175,2.142,2.116,2.068,2.021,1.997,1.991,1.988,1.985,1.98,1.978,1.976,1.973,1.972,1.973,1.974,1.971,1.993,1.995,1.996,1.996,1.996,1.996,1.996,1.995,1.996,1.99,1.991,1.991,1.99,1.991,1.991,1.991,1.991,1.991,1.991,1.988,1.991,1.992,1.991,1.991,1.991,1.992,1.992,1.99,1.99,1.969,1.97,1.97,1.97,1.969,1.969,1.969,1.968,1.968,1.968,1.966,1.968,1.967,1.966,1.966,1.965,1.966,1.966,1.965,1.965,1.962,1.963,1.963,1.963,1.964,1.963,1.965,1.965,1.965,1.965,1.962,1.971,1.996,1.997,1.997,1.997,1.999,1.999,2.225,2.244,2.201,2.222,2.226,2.232,2.243,2.242,2.241,2.24,2.252,2.259,2.231,2.254,2.26,2.254,2.262,2.254,2.266,2.265,2.277,2.288,2.099,1.981,1.98,1.98,1.98,1.978,1.979,1.97,1.97,1.97,1.969,1.969,1.969,1.968,1.969,1.969,1.97,1.97,1.97,1.971,1.97,1.971,1.971,1.971,1.971,1.971,1.971,1.972,1.971,1.971,1.97,1.974,1.974,1.974,1.974,1.972,1.97,1.97,1.969,1.969,1.969,1.969,1.969,1.969,1.968,1.968,1.967,1.967,1.966,1.966,1.964,1.965,1.964,1.963,1.963,1.963,1.961,1.961,1.961,1.961,1.957,1.958,1.957,1.957,1.958,1.96,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.958,1.959,1.959,1.96,1.96,1.96,1.96,1.961,1.961,1.96,1.961,1.961,1.96,1.961,1.962,1.962,1.962,1.963,1.964,1.963,1.963,1.963,1.963,1.964,1.965,1.964,1.964,1.965,1.965,1.965,1.964,1.964,1.963,1.963,1.963,1.963,1.962,1.964,1.964,1.963,1.963,1.962,1.962,1.961,1.96,1.96,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.956,1.957,1.957,1.956,1.957,1.957,1.956,1.957,1.957,1.957,1.956,1.956,1.956,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.958,1.958,1.959,1.959,1.958,1.958,1.958,1.959,1.959,1.958,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.959,1.96,1.959,1.959,1.96,1.96,1.96,1.96,1.959,1.959,1.959,1.959,1.96,1.96,1.96,1.96,1.96,1.959,1.959,1.959,1.96,1.959,1.959,1.959,1.959,1.96,1.96,1.96,1.96,1.959,1.96,1.961,1.961,1.961,1.961,1.961,1.961,1.962,1.962,1.961,1.962,1.961,1.961,1.961,1.961,1.961,1.962,1.962,1.962,1.962,1.962,1.962,1.961,1.961,1.961,1.962,1.962,1.962,1.962,1.96,1.961,1.96,1.96,1.961,1.96,1.96,1.96,1.96,1.959,1.959,1.96,1.96,1.96,1.96,1.96,1.959,1.959,1.959,1.959,1.959,1.96,1.96,1.96,1.959,1.959,1.959,1.961,1.961,1.961,1.961,1.962,1.962,1.962,1.963,1.963,1.963,1.964,1.964,1.964,1.963,1.964,1.963,1.963,1.964,1.964,1.964,1.964,1.965,1.964,1.964,1.965,1.965,1.965,1.966,1.965,1.964,1.965,1.964,1.964,1.963,1.962,1.962,1.962,1.962,1.962,1.962,1.961,1.962,1.962,1.961,1.961,1.961,1.96,1.961,1.96,1.96,1.96,1.96,1.96,1.96,1.96,1.96,1.96,1.96,1.96,1.959,1.96,1.96,1.96,1.96,1.962,1.961,1.961,1.961,1.96,1.961,1.961,1.962,1.963,1.963,1.964,1.964,1.963,1.962,1.962,1.962,1.962,1.962,1.961,1.96,1.96,1.96,1.959,1.959,1.958,1.958,1.958,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.957,1.956,1.956,1.956,1.956,1.954,1.955,1.954,1.955,1.955,1.955,1.955,1.955,1.955,1.956,1.956,1.956,1.957,1.957,1.957,1.957,1.957,1.959,1.958,1.958,1.958,1.959,1.958,1.958,1.959,1.959,1.958,1.958,1.959,1.96,1.959,1.961,1.96,1.96,1.96,1.96,1.961,1.962,1.962,1.962,1.961,1.962,1.961,1.962,1.962,1.961,1.96,1.961,1.96,1.96,1.959,1.961,1.962,1.961,1.961,1.961,1.96,1.959,1.959,1.959,1.959,1.959,1.96,1.959,1.96,1.96,1.959,1.958,1.958,1.958,1.957,1.958,1.958,1.958,1.957,1.958,1.958,1.959,1.959,1.958,1.956,1.956,1.957,1.957,1.956,1.956,1.956,1.957,1.957,1.957,1.957,1.956,1.956,1.957,1.956,1.956,1.956]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 2 --> 5
    line [3.903,3.885,3.877,3.848,3.766,3.746,3.776,3.766,3.725,3.709,3.694,3.685,3.656,3.63,3.581,3.517,3.507,3.439,3.339,3.28,3.168,3.071,3.049,3.025,3.026,2.995,3.505,3.55,3.546,3.56,3.554,3.548,3.535,3.531,3.55,3.469,3.49,3.48,3.465,3.465,3.469,3.485,3.47,3.465,3.456,3.369,3.44,3.434,3.415,3.432,3.422,3.409,3.409,3.384,3.384,2.993,2.996,2.996,2.994,2.993,2.992,2.992,2.991,2.991,2.99,2.986,2.99,2.99,2.989,2.988,2.986,2.987,2.987,2.987,2.988,2.984,2.986,2.986,2.984,2.984,2.983,2.986,2.985,2.986,2.987,2.983,2.993,3.411,3.438,3.467,3.462,3.483,3.488,3.7,3.707,3.659,3.667,3.659,3.674,3.689,3.663,3.689,3.678,3.667,3.675,3.613,3.65,3.687,3.691,3.683,3.638,3.663,3.671,3.663,3.663,3.447,2.993,2.993,2.992,2.993,2.992,2.994,2.983,2.983,2.983,2.981,2.983,2.983,2.982,2.984,2.981,2.983,2.985,2.985,2.987,2.986,2.988,2.988,2.989,2.99,2.99,2.99,2.99,2.991,2.991,2.989,2.996,2.996,2.997,2.996,2.994,2.995,2.997,2.997,2.997,2.996,2.996,2.996,2.995,2.996,2.995,2.993,2.994,2.992,2.991,2.987,2.988,2.987,2.985,2.984,2.984,2.982,2.981,2.98,2.979,2.971,2.97,2.968,2.969,2.969,2.969,2.967,2.967,2.966,2.965,2.967,2.967,2.967,2.966,2.965,2.966,2.966,2.967,2.966,2.966,2.966,2.968,2.968,2.967,2.967,2.969,2.969,2.973,2.973,2.975,2.977,2.98,2.981,2.98,2.981,2.98,2.981,2.982,2.983,2.98,2.981,2.982,2.983,2.983,2.981,2.98,2.979,2.981,2.981,2.98,2.979,2.98,2.98,2.978,2.979,2.979,2.976,2.974,2.972,2.971,2.968,2.968,2.968,2.966,2.966,2.966,2.965,2.965,2.966,2.966,2.966,2.967,2.968,2.968,2.97,2.971,2.971,2.971,2.971,2.97,2.969,2.97,2.971,2.971,2.971,2.973,2.973,2.976,2.976,2.976,2.976,2.977,2.976,2.974,2.975,2.974,2.974,2.976,2.976,2.976,2.975,2.975,2.978,2.977,2.979,2.978,2.979,2.979,2.978,2.979,2.978,2.978,2.978,2.978,2.978,2.979,2.978,2.978,2.978,2.977,2.976,2.976,2.98,2.98,2.98,2.98,2.98,2.98,2.98,2.979,2.977,2.976,2.977,2.975,2.975,2.976,2.976,2.978,2.979,2.979,2.977,2.976,2.977,2.978,2.977,2.977,2.976,2.977,2.977,2.979,2.979,2.976,2.98,2.98,2.979,2.977,2.975,2.976,2.977,2.979,2.979,2.977,2.978,2.977,2.976,2.977,2.978,2.977,2.977,2.977,2.977,2.975,2.976,2.975,2.974,2.976,2.976,2.975,2.975,2.975,2.974,2.97,2.971,2.97,2.972,2.972,2.971,2.97,2.969,2.968,2.97,2.969,2.974,2.974,2.973,2.971,2.97,2.971,2.972,2.974,2.973,2.972,2.975,2.975,2.973,2.973,2.974,2.974,2.975,2.976,2.976,2.975,2.977,2.977,2.978,2.979,2.977,2.978,2.98,2.978,2.977,2.973,2.973,2.973,2.973,2.975,2.975,2.973,2.973,2.973,2.972,2.97,2.97,2.971,2.969,2.97,2.97,2.968,2.968,2.969,2.967,2.966,2.967,2.967,2.966,2.967,2.966,2.964,2.966,2.967,2.968,2.968,2.971,2.97,2.969,2.969,2.97,2.97,2.97,2.971,2.972,2.972,2.974,2.975,2.975,2.974,2.975,2.974,2.975,2.976,2.978,2.977,2.98,2.98,2.98,2.98,2.98,2.981,2.982,2.981,2.981,2.979,2.98,2.98,2.979,2.978,2.979,2.98,2.979,2.977,2.977,2.976,2.979,2.978,2.978,2.979,2.978,2.976,2.977,2.977,2.974,2.971,2.972,2.973,2.973,2.973,2.97,2.969,2.969,2.968,2.968,2.967,2.972,2.972,2.971,2.97,2.97,2.97,2.972,2.972,2.971,2.967,2.969,2.968,2.968,2.971,2.971,2.97,2.97,2.971,2.972,2.972,2.975,2.974,2.974,2.976,2.975,2.975,2.978,2.979,2.978,2.973,2.975,2.975,2.974,2.975,2.976,2.974,2.974,2.974,2.974,2.973,2.977,2.978,2.976,2.977,2.978,2.977,2.977,2.977,2.977,2.975,2.976,2.976,2.974,2.976,2.977,2.974,2.974,2.974,2.976,2.974,2.977,2.979,2.978,2.978,2.98,2.98,2.981,2.982,2.981,2.976,2.977,2.979,2.977,2.976,2.975,2.974,2.974,2.974,2.976,2.977,2.976,2.976,2.975,2.974,2.975,2.973]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for xorm-table:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 3
    line [2.344,2.344,2.344,2.344,2.344,2.344,2.344,2.344,2.344,2.344,2.345,2.344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 59 --> 111
    line [65.729,67.603,69.207,70.729,71.981,73.085,74.276,75.1,76.141,77.065,77.92,78.706,80.997,84.001,86.705,88.803,91.172,93.577,95.7,97.478,99.019,99.831,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.932,99.932,99.932,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.932,99.932,99.932,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.932,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.679,98.688,98.688,98.687,98.688,98.688,98.654,98.688,98.687,98.688,98.689,98.688,98.687,98.688,98.688,98.689,98.688,98.688,98.687,98.687,98.689,98.687,98.689,98.69,98.688,98.689,98.689,98.689,98.691,99.031,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.965,99.966,99.966,99.965,99.966,99.966,99.966,99.966,99.965,99.966,99.965,99.966,99.965,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.035,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.965,100,100,100,100,100,100,100,100,100,100,100.035,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100.035,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 14 --> 41
    line [36.97,36.821,36.687,36.565,36.454,36.353,36.261,36.176,36.097,36.025,36.548,35.31,16.345]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 57 --> 114
    line [63.846,67.353,70.685,74.191,77.349,80.368,83.944,86.583,90.228,93.734,97.239,100.724,102.345,102.379,102.448,102.552,102.724,102,101.034,101.172,101.966,102.034,102,101.138,100.276,100.276,101.103,100.759,100.359,100.69,100.345,100.483,100.207,100.483,100.862,99.69,101.138,100.862,100.69,100.552,100.345,100.207,100.517,100.586,100.31,100.448,100.931,101.552,100.828,100.034,99.931,100.103,99.897,100,100.103,100,100.034,100,99.966,100.172,99.966,100.069,100,99.931,100.862,100.103,100.069,100,100,100.069,99.966,100,100.034,100.034,99.966,100,100.207,99.966,100.034,100.103,99.966,100.034,99.931,99.966,100.034,100.034,100.034,99.931,99.966,100,99.897,100,99.966,99.931,99.931,99.793,96.724,99.862,99.897,99.793,99.897,99.862,99.897,99.862,99.828,99.862,99.931,99.862,99.828,99.862,99.862,99.931,99.897,99.862,99.793,99.793,99.966,99.793,99.931,100.034,99.862,99.966,99.966,99.931,100.069,103.207,100.069,100,100.103,99.966,100,99.931,100,100.103,100,100,99.931,99.931,99.966,100,99.966,100,99.966,100.069,100,100,100.103,100.034,99.966,100.034,99.862,99.966,100,99.966,100,99.931,100.069,100.034,100.069,100,100.103,100.034,99.966,99.966,99.862,100.103,100.069,99.931,100.034,100,99.966,99.966,99.897,100.069,99.931,100.034,99.931,99.966,99.966,100.069,100.069,100.069,100.069,100,100.069,99.966,99.931,99.931,99.966,99.862,99.966,100.034,99.897,100.103,100.034,100.069,100.138,100,100,99.966,99.966,100.103,100,100,99.931,100,100,100.034,100.034,99.897,99.931,99.966,100.034,99.931,99.931,100,99.931,100.034,100.069,99.966,99.966,100.069,100.034,99.897,99.862,99.966,99.931,99.931,100,100.069,99.862,99.897,99.966,100.034,99.966,100.034,99.931,99.966,100.034,100.034,100.034,100.034,100.034,100.034,100.034,100.069,100,100,100,99.931,100,99.931,100.103,100.069,100.034,100.034,100.138,100.034,99.897,100.103,100.034,100.103,100,100.069,100.034,100.069,100.069,100.034,100.034,99.897,99.931,99.862,99.966,99.931,99.966,99.966,100.034,100.034,100.069,99.966,100.103,99.966,100,99.966,100.034,99.931,100.034,100.172,99.966,100.103,100,100,99.931,100.034,100,99.966,100.034,99.862,100.034,100,100.172,100,99.897,100.069,100.034,99.931,100.034,99.931,100,99.931,100,99.862,99.966,99.931,99.931,99.897,99.931,100,99.69,99.931,100,99.897,99.966,100,99.931,99.966,100.069,100.034,99.897,99.966,100.034,100.138,99.931,99.966,100.069,99.966,100.034,100.103,100,100,100,100.034,100.103,100.069,100.034,100.034,100.034,100.276,99.966,100.034,100.138,99.931,99.966,99.966,100,100.069,100.034,100.172,99.966,99.931,99.897,99.966,99.966,99.828,100.069,100.034,99.897,100,100,100.103,100,99.966,99.966,100.103,100,99.966,99.931,100.103,99.966,99.966,100.069,99.862,100.069,100,99.931,100,99.897,99.931,100.069,100.138,100.103,100.034,100.138,99.966,99.966,100.034,99.966,99.586,99.621,99.759,99.483,99.517,99.586,99.724,99.69,99.759,99.552,99.69,99.483,100,100.103,99.966,100,100.069,100,100.034,100.069,99.931,99.897,100,100.034,99.966,99.966,100.034,100.069,100.034,100.379,100.414,100.276,100.483,100.586,100.345,100.207,100.31,100.31,100.414,100.241,100.586,100,100.069,100,99.897,99.931,99.897,99.931,100.069,100.069,100.069,99.828,99.828,100.034,100.034,100,99.931,100,100.034,100.069,100,100,99.966,100.034,100,100,100,100,100,99.966,99.931,99.931,100,100.103,100.034,100.069,100.103,100,100,99.966,100.172,100.172,100.034,99.931,100,100.034,100,99.931,99.862,99.862,99.828,99.931,100,100,99.724,99.897,99.897,100.103,99.966,100.103,100.034,100.034,99.931,99.966,99.931,99.966,100.034,100,99.966,100,100,100,100.034,99.897,99.966,100.103,100.034,100.138,100.103,100.138,100.069,100,99.966,100.241,100.069,99.966,99.931,100.034,99.931,99.966,99.897,100.069,99.897,100.034,100,99.897,100,100.103,100,99.931,100,100.034,99.897,100.034,99.931,100,99.897,100,100.034,99.931,99.897,100.103,99.621,99.172,99.172,99.31,99.379,99.655,99.793,99.828,99.414,99.621,99.552,99.483,99.724,99.862,99.931,100,100,100,100,100.207,99.966,100.069,100,99.931,100,100,100.069,100.103,100,100.345,100.793,101,100.724]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 1100
    line [1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 82 --> 1100
    line [1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,964.897,884.236,807.686,738.187,651.179,499.306,498.785,499.042,498.049,495.242,495.225,494.786,494.61,494.273,494.242,493.832,493.141,491.834,497.17,485.433,482.472,479.578,476.094,474.868,473.545,470.173,467.372,463.873,449.97,339.894,171.138,154.934,155.033,154.868,155.066,154.967,152.279,151.049,148.493,148.905,148.566,147.963,140.214,139.569,136.937,137.027,106.389,94.243,91.564,92,91.969,91.857,91.592,91.611,91.674,91.999,91.966,92.218,91.865,91.841,91.866,91.881,91.945,92.099,92.108,92.046,91.885,91.813,91.631,91.917,91.985,92.092,92.179,92.527,92.638,92.702,92.788,92.816,92.824,214.043,213.723,214.681,213.723,214.043,214.043,214.043,214.362,214.043,213.404,214.043,214.362,214.043,214.043,213.404,213.723,214.043,214.681,214.681,213.085,214.681,213.404,212.447,214.043,213.085,213.085,213.404,212.128,173.523,92.179,91.957,91.623,92.28,92.49,92.273,92.364,92.261,92.166,92.267,92.957,92.854,92.691,92.704,92.832,93.208,93.523,93.571,93.766,94.037,94.079,93.724,93.895,93.904,93.823,93.991,94.017,94.062,94.131,94.225,94.638,94.65,94.287,94.151,94.176,94.224,94.926,94.954,95.333,94.992,95.037,95.295,95.493,95.556,95.429,95.958,96.199,96.145,96.243,96.433,96.553,96.518,96.576,96.833,96.87,97.07,97.223,97.207,97.82,97.368,97.46,97.518,97.988,98.049,98.354,97.998,98.01,98.045,98.012,98.018,97.853,97.7,97.821,97.791,97.241,97.233,97.195,96.99,96.839,96.867,97.005,97.251,97.711,99.017,98.896,98.867,98.892,98.313,98.195,98.05,97.869,97.364,98.02,97.855,97.757,98.733,98.471,98.833,98.842,98.836,99.401,99.268,99.828,104.041,102.917,109.188,109.71,110.224,109.123,108.464,106.074,100.036,98.931,99.095,99.212,99.303,99.314,99.329,99.327,99.581,99.669,99.039,99.126,99.136,98.213,98.25,97.937,98.505,98.544,97.965,98.045,97.496,97.7,98.058,97.816,98.187,98.133,98.338,98.278,98.396,98.247,97.916,97.987,97.753,97.608,97.793,97.977,98.038,97.738,97.608,97.564,97.64,97.91,97.975,98.046,97.996,97.383,97.361,97.505,97.353,97.685,97.027,96.65,96.425,96.081,96.3,96.054,96.061,96.03,95.951,95.92,95.929,96.059,96.132,96.314,96.258,96.578,96.824,96.901,97.141,96.796,96.589,96.721,97.007,97.368,97.436,97.515,97.502,97.519,97.411,97.413,97.348,97.392,98.019,97.874,97.891,97.882,97.976,98.011,98.081,97.723,97.685,97.899,98.066,97.901,97.642,97.38,97.325,97.103,97.126,97.349,97.299,96.887,96.506,96.555,96.846,96.835,96.813,96.558,96.538,96.544,96.558,95.703,95.806,96.075,96.048,95.783,96.134,96.067,96.313,96.259,95.908,95.336,95.756,95.689,96.044,96.184,96.266,96.599,96.333,96.593,96.652,96.723,96.915,96.788,96.779,96.847,96.803,96.845,97.135,97.129,97.116,96.989,97.496,97.526,97.668,97.403,97.424,97.398,97.463,97.712,97.857,97.839,98.024,97.859,97.731,97.748,97.504,97.71,97.353,97.398,99.759,139.444,165.29,175.086,192.31,209.262,237.091,263.033,269.176,284.552,293.571,313.47,333.969,333.798,334.027,333.969,333.855,333.969,333.912,333.855,334.084,334.084,333.969,333.912,334.027,334.027,333.912,333.855,333.912,330.097,311.724,282.985,269.947,199.376,191.751,185.452,176.519,169.203,150.814,115.856,97.829,95.791,95.902,95.658,95.372,95.679,95.565,95.694,95.398,95.398,95.36,95.133,95.721,95.759,95.658,95.575,95.606,96.09,96.027,96.483,96.683,96.628,96.769,97.034,97.275,97.662,97.631,97.699,97.469,97.502,97.542,97.297,97.715,97.695,97.349,97.46,97.364,97.526,97.491,97.491,97.477,96.913,96.904,97.031,97.323,97.756,97.222,97.324,96.861,96.774,97.257,97.24,97.22,96.957,96.602,96.953,97.084,97.205,97.058,97.031,97.075,96.68,96.882,96.844,96.984,97.404,97.528,97.694,97.806,98.204,98.192,98.175,98.851,98.837,98.504,98.77,98.737,98.835,98.869,98.464,98.755,98.674,98.831,98.825,98.672,98.96,99.051,99.099,99.147,99.195,99.646,99.754,99.802,99.75,99.372,99.302,99.137,99.13,98.902,99.237,99.522,98.882,99.171,99.407,99.885,107.692,108.956,111.111,113.223,112.788,112.287,111.595,132.94,160.26,186.48,272.832,330.474,354.428,359.894,359.84,371,387.65,396.846,409.897,416.533,416.758,416.695,416.632,416.632,416.632,416.632,416.411,416.663,416.568,416.456,416.519,416.456,416.456,416.392,416.361,416.456,414.332,402.221,385.24,354.917]
Loading

Copy link

🌋 Here are results of SLO test for native-table:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,99.997,100,100,100,100.003,99.993,100,99.997,100,100.003,100,99.997,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,99.997,100,100,100.003,100,100,100,99.997,100.003,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100.007,99.997,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100,99.997,100,99.993,100.007,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,99.997,99.997,100,100,100.003,100,100,99.997,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100.003,100,100,100,100,99.997,99.997,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,100.003,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100.003,100.003,100,100,100,100.003,100.003,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100.003,100.003,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100.003,100,99.997,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 826 --> 1103
    line [917.866,951.199,1000,1000,1000.034,1000,999.966,999.966,1000,999.931,1000,1000,1000.034,1000,999.966,1000,1000,1000,1000,1000.034,1000,1000,1000,1000.034,1000.034,1000,999.966,1000.034,1000,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000.069,999.966,1000.069,1000,1000.034,1000,1000,1000.034,1000,999.207,1000,1000,999.966,1000,999.966,1000,999.966,1000,999.966,1000.034,999.966,1000,999.966,999.966,999.966,1000,1000,1000,999.966,999.966,1000.034,999.966,1000,1000,999.966,1000,1000.034,1000,1000.793,999.966,999.966,1000,999.931,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000,1000,999.966,999.966,1000,999.966,1000,1000.034,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000,1000.069,999.862,1000.034,1000,1000,1000,999.966,1000,999.931,999.966,1000,1000,999.966,1000.034,1000,1000.034,1000.034,1000.034,1000.069,1000,999.931,1000,1000,1000,999.966,999.966,999.966,1000,1000,1000,1000.172,1000,1000,999.931,1000,1000.034,1000.034,1000.034,1000.034,1000,1000,1000,999.966,999.966,1000,1000,1000,1000,1000,1000.069,1000,999.966,1000,1000,1000.034,1000.069,999.931,1000.034,1000,1000,1000.034,997.552,1000.069,999.966,1000,999.966,1000.034,1000,999.966,1000,1000,1000.034,1000,1000,999.966,1000,1000,999.966,1000,1000,1000.034,1000.034,1000.034,1000,1000,1000.034,999.966,1000,1000,1000,1002.448,1000,1000.069,999.966,1000.034,1000,999.966,1000.034,1000,1000.034,1000,1000.034,999.966,1000,999.966,1000,1000,999.966,999.966,1000,1000,1000,1000,999.966,1000,1000,999.966,999.966,1000,1000,1000,1000,999.966,999.931,1000,1000,1000,1000,1000,999.966,1000,1000.034,1000.034,1000.034,1000,1000.034,1000.034,1000.034,1000,1000,999.966,1000,1000,1000.034,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000.034,999.966,1000,1000,999.966,1000,1000,1000,999.966,1000,1000,1000,1000,999.966,1000,1000,1000,1000.034,999.966,1000.034,1000,999.966,1000,999.966,1000,1000,999.966,1000,1000.034,1000,1000,1000,1000,1000.069,1000,1000,1000,1000.034,999.966,999.966,1000,999.966,1000.034,999.966,1000,999.966,999.966,1000.034,1000,1000,1000.034,999.966,1000.034,1000,999.966,1000,999.966,1000,1000,1000.034,1000,999.966,999.966,1000,1000.034,999.966,1000,1000.034,1000.034,1000,1000,999.931,1000.034,1000,1000.034,1000.034,1000,999.966,999.966,999.966,1000,1000,999.966,1000.034,1000,1000.034,999.966,1000.034,1000,1000.034,1000.034,1000.034,999.966,999.966,1000.034,1000,1000,1000,999.966,1000.034,1000.069,1000,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,999.966,1000.034,1000,1000.034,1000,1000.034,1000,1000,1000,1000,1000,1000,1000.034,999.931,1000,1000,1000,1000,1000,1000,1000,999.966,1000,1000,999.966,1000,1000,1000,1000,1000.034,999.966,999.966,1000,1000,999.966,1000,999.931,1000,1000,1000,1000.034,999.966,1000.034,999.966,999.966,1000,1000,999.966,1000,1000,1000.034,999.966,999.966,1000,1000.034,999.966,999.966,1000,999.966,1000.034,1000.034,999.931,999.966,1000.034,999.966,1000.034,999.966,1000,1000,1000,1000.034,1000.034,1000.034,1000.034,999.966,1000.034,1000.034,999.966,1000,999.966,1000,1000.034,1000.034,1000,1000.034,1000.034,1000,1000.034,999.966,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000,999.966,1000,1000,999.966,999.966,1000.034,1000,1000,1000,1000,1000.034,1000.034,1000,1000,999.966,1000,1000,1000,999.966,1000,999.966,1000.034,1000,999.966,1000,1000.034,1000.034,1000,1000,1000,999.966,1000,1000,1000.034,1000,1000,1000,1000.034,1000,1000,1000,999.966,1000,1000,1000,999.966,1000,1000.034,1000,1000.034,1000,999.966,1000.034,999.966,999.966,1000,999.966,1000,1000,1000.034,1000,1000.034,1000,999.966,1000,1000,999.966,999.931,1000,1000,1000,1000,1000,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,1000.034,1000,1000.034,999.966,1000.034,1000,1000,1000,1000,1000.034,999.966,1000,1000.034,1000.069,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000,1000,1000.034,1000,948.767]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 82 --> 111
    line [91.79,95.123,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.069,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.759,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.241,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,94.877]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 1 --> 3
    line [1.95,1.949,1.95,1.947,1.948,1.941,1.944,1.943,1.942,1.943,1.943,1.942,1.942,1.942,1.942,1.938,1.942,1.942,1.942,1.943,1.942,1.942,1.942,1.941,1.942,1.939,1.943,1.943,1.942,1.942,1.942,1.942,1.942,1.942,1.942,1.939,1.942,1.943,1.943,1.944,1.944,1.944,1.944,1.944,1.944,1.944,1.968,1.968,1.967,1.968,1.968,1.969,1.969,1.969,1.969,1.966,1.968,1.968,1.967,1.968,1.968,1.968,1.968,1.968,1.968,1.966,1.967,1.967,1.967,1.967,1.966,1.966,1.965,1.965,1.961,1.936,1.939,1.939,1.939,1.939,1.938,1.938,1.937,1.938,1.937,1.935,1.938,1.938,1.938,1.938,1.939,1.939,1.939,1.94,1.939,1.936,1.938,1.937,1.938,1.939,1.939,1.94,1.94,1.941,1.941,1.939,1.977,1.979,1.979,1.979,1.98,1.982,1.982,1.982,1.981,1.98,1.983,1.983,1.983,1.984,1.984,1.985,1.984,1.985,1.985,1.983,1.986,1.985,1.985,1.985,1.985,1.986,1.986,1.986,1.985,1.948,1.948,1.947,1.947,1.947,1.945,1.946,1.946,1.947,1.946,1.944,1.946,1.945,1.944,1.945,1.944,1.944,1.944,1.944,1.944,1.942,1.943,1.943,1.943,1.943,1.943,1.942,1.942,1.943,1.943,1.941,1.95,1.958,1.957,1.957,1.956,1.957,1.956,1.956,1.955,1.953,1.953,1.952,1.951,1.951,1.95,1.951,1.951,1.95,1.95,1.948,1.948,1.946,1.945,1.945,1.944,1.945,1.944,1.943,1.942,1.931,1.922,1.923,1.922,1.922,1.921,1.921,1.922,1.921,1.921,1.921,1.922,1.921,1.92,1.921,1.92,1.92,1.919,1.919,1.919,1.918,1.918,1.918,1.918,1.917,1.916,1.917,1.917,1.917,1.917,1.917,1.917,1.917,1.916,1.915,1.914,1.914,1.914,1.913,1.912,1.911,1.911,1.911,1.91,1.909,1.909,1.909,1.91,1.909,1.91,1.912,1.912,1.911,1.911,1.911,1.911,1.911,1.911,1.91,1.91,1.909,1.909,1.91,1.91,1.91,1.911,1.912,1.913,1.913,1.913,1.913,1.914,1.915,1.916,1.917,1.917,1.917,1.918,1.918,1.917,1.916,1.916,1.917,1.918,1.918,1.918,1.918,1.919,1.92,1.92,1.92,1.918,1.918,1.919,1.917,1.917,1.915,1.916,1.916,1.916,1.914,1.913,1.913,1.911,1.911,1.912,1.911,1.912,1.911,1.911,1.911,1.91,1.911,1.91,1.91,1.91,1.909,1.908,1.908,1.908,1.909,1.91,1.911,1.911,1.911,1.911,1.911,1.912,1.912,1.912,1.913,1.913,1.915,1.915,1.915,1.915,1.914,1.915,1.915,1.915,1.915,1.914,1.914,1.913,1.912,1.913,1.913,1.913,1.916,1.915,1.915,1.915,1.915,1.914,1.913,1.914,1.914,1.914,1.914,1.914,1.913,1.912,1.913,1.912,1.912,1.912,1.911,1.912,1.912,1.912,1.912,1.911,1.912,1.912,1.911,1.912,1.912,1.91,1.909,1.91,1.908,1.909,1.91,1.911,1.91,1.91,1.91,1.909,1.909,1.909,1.908,1.908,1.909,1.909,1.91,1.91,1.909,1.91,1.911,1.91,1.911,1.91,1.911,1.912,1.912,1.912,1.912,1.913,1.914,1.914,1.914,1.914,1.914,1.916,1.916,1.915,1.916,1.917,1.918,1.919,1.919,1.919,1.92,1.92,1.921,1.922,1.922,1.923,1.924,1.924,1.925,1.925,1.925,1.924,1.925,1.926,1.925,1.925,1.926,1.926,1.925,1.926,1.926,1.926,1.927,1.927,1.926,1.927,1.928,1.928,1.929,1.928,1.928,1.927,1.926,1.926,1.925,1.925,1.925,1.924,1.924,1.923,1.923,1.922,1.922,1.922,1.921,1.921,1.922,1.922,1.921,1.92,1.921,1.921,1.92,1.92,1.919,1.919,1.918,1.917,1.915,1.915,1.916,1.916,1.915,1.917,1.915,1.916,1.916,1.916,1.916,1.916,1.916,1.915,1.916,1.915,1.914,1.914,1.914,1.914,1.913,1.912,1.912,1.913,1.912,1.912,1.912,1.911,1.911,1.911,1.911,1.911,1.912,1.913,1.912,1.913,1.913,1.914,1.914,1.915,1.915,1.915,1.916,1.917,1.917,1.917,1.916,1.918,1.919,1.92,1.919,1.92,1.921,1.921,1.921,1.921,1.923,1.924,1.924,1.924,1.924,1.924,1.923,1.924,1.924,1.924,1.923,1.923,1.923,1.923,1.923,1.922,1.922,1.922,1.922,1.922,1.922,1.922,1.922,1.921,1.921,1.92,1.92,1.921,1.921,1.92,1.92,1.92,1.92,1.921,1.921,1.922,1.921,1.921,1.921,1.921,1.92,1.921,1.921]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 2 --> 4
    line [2.995,2.994,2.995,2.99,2.991,2.983,2.987,2.987,2.985,2.986,2.986,2.985,2.984,2.983,2.983,2.979,2.984,2.986,2.985,2.985,2.984,2.984,2.985,2.985,2.987,2.985,2.989,2.989,2.989,2.988,2.989,2.99,2.991,2.991,2.992,2.989,2.992,2.995,2.995,2.997,2.997,2.997,2.997,2.998,2.997,2.995,3.374,3.396,3.382,3.407,3.385,3.387,3.359,3.366,3.326,3.273,3.351,3.359,3.359,3.348,3.344,3.326,3.323,3.304,3.309,3.228,3.253,3.222,3.184,3.18,3.189,3.198,3.169,3.207,3.142,2.985,2.988,2.989,2.988,2.989,2.988,2.988,2.987,2.987,2.986,2.982,2.985,2.985,2.984,2.986,2.987,2.987,2.987,2.986,2.985,2.983,2.985,2.985,2.986,2.987,2.987,2.987,2.985,2.985,2.985,2.983,3.211,3.309,3.275,3.269,3.305,3.321,3.349,3.368,3.364,3.317,3.402,3.414,3.36,3.36,3.341,3.361,3.369,3.395,3.395,3.345,3.414,3.417,3.405,3.412,3.407,3.484,3.457,3.478,3.479,2.994,2.994,2.994,2.992,2.993,2.991,2.992,2.992,2.993,2.993,2.989,2.993,2.994,2.994,2.995,2.994,2.996,2.994,2.993,2.996,2.993,2.994,2.994,2.993,2.993,2.992,2.993,2.992,2.992,2.994,2.991,3,3.149,3.095,3.141,3.111,3.159,3.145,3.174,3.153,3.049,3.051,3.013,3,3,2.999,3,3.025,2.999,3,3,2.999,2.999,2.999,2.998,2.997,2.999,3,2.998,2.997,2.989,2.982,2.985,2.984,2.983,2.981,2.982,2.981,2.981,2.982,2.982,2.982,2.983,2.982,2.982,2.981,2.981,2.98,2.978,2.978,2.978,2.978,2.979,2.978,2.978,2.976,2.975,2.976,2.976,2.976,2.977,2.977,2.978,2.978,2.978,2.977,2.978,2.979,2.977,2.977,2.976,2.976,2.976,2.976,2.976,2.976,2.976,2.977,2.977,2.978,2.981,2.979,2.979,2.979,2.978,2.978,2.978,2.979,2.979,2.979,2.976,2.975,2.977,2.978,2.978,2.977,2.979,2.981,2.981,2.982,2.98,2.981,2.982,2.984,2.984,2.984,2.985,2.986,2.985,2.984,2.983,2.985,2.987,2.987,2.988,2.987,2.985,2.987,2.987,2.988,2.987,2.985,2.984,2.984,2.983,2.983,2.981,2.982,2.983,2.984,2.983,2.981,2.98,2.98,2.979,2.979,2.977,2.978,2.977,2.978,2.976,2.975,2.976,2.974,2.974,2.976,2.974,2.973,2.973,2.973,2.973,2.973,2.973,2.973,2.97,2.971,2.97,2.969,2.969,2.97,2.97,2.97,2.973,2.973,2.971,2.972,2.971,2.972,2.972,2.973,2.973,2.972,2.972,2.971,2.97,2.972,2.972,2.972,2.972,2.972,2.972,2.973,2.974,2.975,2.975,2.975,2.975,2.975,2.974,2.973,2.973,2.971,2.972,2.972,2.971,2.973,2.972,2.973,2.973,2.972,2.973,2.973,2.975,2.976,2.975,2.977,2.977,2.977,2.978,2.979,2.977,2.977,2.978,2.977,2.976,2.976,2.976,2.977,2.98,2.979,2.978,2.977,2.979,2.978,2.977,2.977,2.976,2.975,2.976,2.975,2.976,2.974,2.976,2.976,2.974,2.975,2.974,2.976,2.977,2.977,2.976,2.976,2.976,2.977,2.976,2.978,2.977,2.976,2.978,2.978,2.979,2.977,2.979,2.978,2.979,2.979,2.98,2.981,2.982,2.982,2.984,2.983,2.983,2.983,2.981,2.982,2.981,2.983,2.984,2.983,2.983,2.984,2.986,2.986,2.986,2.986,2.985,2.987,2.988,2.989,2.99,2.989,2.99,2.99,2.99,2.991,2.989,2.989,2.987,2.986,2.986,2.985,2.984,2.986,2.985,2.985,2.984,2.983,2.984,2.984,2.982,2.98,2.982,2.982,2.981,2.982,2.979,2.978,2.976,2.975,2.974,2.974,2.975,2.974,2.973,2.974,2.974,2.976,2.976,2.976,2.976,2.977,2.978,2.977,2.976,2.975,2.974,2.975,2.975,2.975,2.975,2.974,2.973,2.975,2.973,2.973,2.973,2.974,2.974,2.975,2.974,2.972,2.972,2.973,2.973,2.973,2.97,2.971,2.973,2.973,2.973,2.97,2.971,2.971,2.97,2.97,2.97,2.972,2.974,2.975,2.973,2.975,2.975,2.977,2.977,2.977,2.978,2.981,2.98,2.981,2.981,2.98,2.978,2.98,2.98,2.981,2.98,2.979,2.978,2.979,2.98,2.979,2.979,2.982,2.981,2.98,2.978,2.978,2.978,2.978,2.977,2.977,2.976,2.978,2.978,2.978,2.976,2.977,2.978,2.978,2.978,2.98,2.976,2.978,2.977,2.977,2.978,2.978,2.978]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for xorm-query:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 111
    line [98.325,98.35,98.361,98.41,98.495,98.558,98.594,98.63,98.677,98.715,98.745,98.765,98.792,98.826,98.868,98.974,99.022,99.115,99.167,99.363,99.448,99.491,99.624,99.648,99.715,99.713,99.744,99.729,99.679,99.585,99.557,99.584,99.544,99.536,99.529,99.374,99.161,99.129,99.104,99.071,99.061,99.066,99.063,99.027,99.026,99.025,99.003,98.991,98.994,98.987,98.979,98.978,98.967,98.954,98.95,98.941,99.004,99.066,99.199,99.286,99.378,99.376,99.382,99.39,99.593,99.856,99.886,99.915,99.944,99.945,99.945,99.95,99.969,99.973,99.982,99.982,99.987,99.987,99.987,99.987,99.987,99.975,99.979,99.98,99.984,99.984,99.988,99.984,99.984,99.937,99.984,99.984,99.984,99.984,99.984,99.98,99.972,99.96,99.96,99.96,99.96,99.96,99.96,99.961,99.961,99.961,99.961,99.961,99.961,99.962,99.973,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.977,99.981,99.989,100,100,100,100,100,100,100,100,100,99.985,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.932,99.93,99.928,99.924,99.924,99.924,99.924,99.924,99.94,99.924,99.925,99.925,99.925,99.925,99.925,99.925,99.925,99.925,99.926,99.926,99.926,99.925,99.925,99.925,99.924,99.923,99.923,99.922,99.922,99.996,99.996,99.996,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.004,100,100,100,100,100,100.004,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.004,100,100,100,100,100,100,100,99.996,100,100,100,100,100,99.985,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.996,100,100,100,100,100,100,100,100,100,100,100,100,100,100.011,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.008,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.992,100,100,100,100,100,100,100,100,100,100,99.996,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.011,100,100,100,100,100,100,100,100,100.004,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.989,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 89
    line [31.093,31.055,31.175,31.092,30.484,30.407,29.99,29.401,29.438,29.089,28.558,26.876,26.731,26.632,26.641,27.342,26.558,26.959,27.004,27.088,27.513,27.425,27.312,27.354,26.988,27.204,27.14,27.152,26.864,27.026,26.465,26.178,25.847,26.328,26.099,25.968,25.931,25.732,25.71,25.661,25.569,24.61,23.985,23.407,22.621,22.053,21.328,20.512,20.068,19.72,19.394,19.314,19.268,19.032,18.177,17.59,17.557,17.347,17.555,18.125,17.886,17.967,17.85,18.756,19.648,20.139,20.52,20.767,21.523,21.826,22.55,23.327,24.13,24.634,25.078,25.629,26.95,27.405,27.671,27.972,28.185,28.913,29.987,31.323,32.353,33.405,33.873,33.909,33.663,34.492,35.071,35.259,34.734,34.413,34.532,34.802,35.47,35.927,37.209,38.251,39.22,40.132,41.067,42.901,44.106,45.229,46.511,47.427,48.294,49.512,49.555,50.022,50.332,50.222,49.865,50.81,51.986,53.777,53.76,54.836,55.476,56.402,56.988,57.583,58.175,58.631,58.426,57.873,57.22,56.791,56.707,56.463,55.501,55.276,54.529,54.476,54.505,55.317,55.352,55.842,55.932,55.62,56.535,57.788,57.535,57.701,57.324,58.121,57.337,57.357,57.337,57.697,57.92,58.151,58.049,58.459,58.448,59.965,60.701,59.478,60.879,61.397,61.442,61.92,62.206,62.772,62.953,63.03,63.31,63.404,63.408,63.037,62.895,63.449,63.246,63.183,63.137,64.22,64.194,64.302,64.488,64.882,64.397,64.471,64.232,64.539,63.749,62.806,63.35,61.669,61.854,61.511,61.435,61.134,60.955,60.674,60.412,60.368,60.157,59.804,59.842,59.106,59.325,60.289,61.302,62.425,63.192,64.051,64.367,64.344,64.611,65.05,65.188,65.61,65.985,66.031,66.945,67.777,68.875,69.974,69.987,70.428,70.35,69.918,69.953,70.268,70.124,70.301,71.199,71.901,72.384,72.389,71.164,70.509,70.113,69.979,69.47,69.478,70.096,70.525,71.728,72.739,72.942,73.595,74.021,73.865,74.285,74.201,73.128,73.473,73.481,73.374,74.059,73.872,73.893,73.92,73.888,73.285,73.216,73.775,74.216,74.523,74.404,73.339,72.893,72.568,72.921,72.091,70.972,69.201,67.732,67.607,66.608,66.065,65.561,64.911,64.452,63.706,63.356,62.744,62.752,62.091,61.911,61.732,61.889,61.794,62.535,62.36,61.974,61.567,61.885,62.163,62.709,62.223,62.797,62.723,63.043,63.677,64.651,65.554,65.439,65.798,66.038,66.477,66.58,66.912,67.604,67.803,68.24,68.827,69.477,69.697,69.551,69.376,69.67,69.711,69.678,69.183,69.375,69.279,69.24,69.266,69.594,69.958,69.472,69.72,69.712,69.5,69.298,69.295,69.044,69.057,69.443,70.339,70.954,71.919,71.865,72.051,71.685,71.399,71.399,71.393,71.708,71.417,71.275,71.446,71.613,71.7,72.397,72.525,72.671,72.731,72.181,72.096,72.716,73.295,73.84,73.909,73.874,73.883,73.745,73.704,73.158,72.648,71.932,72.075,71.881,72.35,72.63,72.847,72.992,73.124,73.202,73.232,73.186,73.178,73.088,72.435,72.323,72.325,72.3,72.971,73.41,72.435,72.119,71.553,71.44,71.724,71.894,72.252,72.028,71.916,71.805,71.364,71.84,72.63,72.457,72.039,72.37,73.09,73.563,74.367,74.098,74.406,75.56,76.136,75.759,75.442,75.639,75.456,74.614,74.111,74.339,74.204,73.817,73.693,72.877,72.521,71.703,71.127,70.186,69.621,69.423,68.851,67.472,66.848,66.819,65.504,64.006,63.015,62.043,62.066,61.696,60.962,60.085,61.556,62.663,62.488,62.506,63.491,64.053,64.134,64.672,65.568,66.135,67.309,67.837,68.357,69.175,69.74,70.983,72.201,72.556,73.17,74.139,74.679,75.765,76.339,76.538,76.447,76.423,76.379,76.119,76.442,76.152,76.065,76.714,77.67,77.998,78.096,78.473,78.331,78.563,78.69,78.389,78.435,79.222,79.287,80.346,80.285,79.66,79.546,79.326,78.862,78.112,77.646,77.751,78.35,78.95,79.708,80.081,79.927,79.229,79.27,79.075,78.47,77.696,76.92,77.4,78.158,78.068,77.221,76.86,76.671,76.3,75.818,75.452,74.433,73.745,73.814,73.234,73.369,73.204,73.454,73.498,73.005,72.273,71.7,70.964,70.454,70.222,70.544,70.084,69.683,69.659,69.62,69.932,69.237,68.266,68.448,68.705,68.611,68.732,68.923,68.55,68.508,68.657,68.321,68.559,68.846,68.763,68.838,68.952,68.843,68.87,69.005,68.545,68.721,68.577,68.57,68.798,68.501,68.457,68.613,68.777,68.238,68.219,68.05,68.131,67.707,67.24,67.44,67.35,67.236,67.749,67.782,68.852,68.501,68.642,68.348,68.229,67.895,68.188,68.193,68.18,68.622,68.919,69.382,70.1,70.259,70.372,70.381,70.253,70.115,70.512,70.752,70.835,70.397,70.862,71.547,71.286,71.542,71.748,71.154,71.132,70.017,70.213,70.418,71.121,71.581,72.559,72.394,73.798,74.33,75.688,75.362,75.875,70.76,64.516,56.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 6 --> 1071
    line [629.507,660.922,693.648,713.913,754.901,786.931,813.19,840.808,869.537,902.71,926.103,941.172,947.517,928.034,929.103,924.483,912.897,919.862,927.241,909.828,911.724,901.552,899.379,911.163,894.172,900.459,903.931,891.69,891.931,889.517,887.027,879.483,883.862,870.241,863.655,853.793,846.69,839.31,827.034,820.034,808.103,801.414,801.91,786.448,778.759,781.517,761.276,752.103,754.327,749.103,739.897,732.345,724.172,718.759,706.004,703.138,699.31,690.621,692.759,690.966,693.345,696.103,697.69,701,711.379,720.414,728.414,733.448,740.069,749.483,752,758.363,767.276,774,779.084,784.828,790.325,794.572,800.793,811.828,817.103,826.552,833.966,845.724,853.069,861.63,872.448,871.034,873.172,876.724,879.172,878.931,879.207,881.724,884.517,875.552,864,863.414,864.517,871.448,869.207,869.414,872.138,875.578,881.207,886.785,893.103,895.414,895.241,898.345,900.759,902.517,900.793,899.897,898.579,897.69,902.138,901.966,900.241,903.586,903.724,905.972,910.69,910.483,920.931,939.586,945.552,941.069,939.897,942.448,942.069,944.552,940.931,941.69,937.931,936.31,934.517,930.862,927.379,926.448,927.517,925.931,926.207,928.621,927.034,926.552,929.345,930.655,929.862,931.931,932.099,930.448,932.621,934.31,932.586,927.517,916.345,891.621,860.586,859.31,857.345,859.034,858.069,861.724,859.345,862.207,868.759,870.621,870.241,871.655,874.586,874.621,876.138,879.138,879.483,883.276,880.724,878.31,875.345,868.897,861.187,851.69,846.759,840.103,835.034,845.586,867.966,897.586,894.138,892,887.87,879.034,872.966,868.207,863.586,860.138,858.207,857.241,851.966,846.31,841.862,833.724,831.604,832.759,828.379,829.759,831.69,839.759,845.793,854.364,862.241,863.379,871.897,880.448,885.724,887.69,894.207,895.379,893.862,902.511,910.69,915.793,920.345,925.103,924.655,929.552,926.621,931.931,935.798,941.862,947.207,946.408,943.103,942.069,943.724,942.966,937.448,936.69,932.931,929.724,933.379,927.207,923.586,923.069,923.931,916.448,922.552,926.655,922.414,921.793,918.793,920.621,919.793,921.621,921.828,924.281,924,926.345,921.828,922.655,925.138,929.862,925.172,921.483,916.931,912.034,908.138,901.034,895.414,887.862,889.69,886.931,881.552,876.552,876.379,871.207,867.759,864.31,857,857.345,851.621,848.034,837.621,830.621,827.264,819.172,817.781,820.69,822.69,822.759,820.414,827.345,832.172,836.31,845.138,853.414,862.69,870.966,877.345,880.828,888.483,894.931,901,905,913.448,916.241,922.31,928.586,926.069,928.448,933.31,944.452,950.138,954.621,963.034,963.552,965.862,965.759,965.207,966.207,964.828,968.241,961.931,961.172,957.034,956.517,958.621,959.172,961.069,957.483,956.31,951.828,948.724,944.138,946.172,944.586,946.793,953.069,958.103,954,951.583,949.517,949.103,948.31,949.69,948.931,944.241,943.207,944.862,944.31,939.345,945.793,942.966,943.724,940.241,937.034,937.897,936.759,937.828,937.517,940.73,943,943.414,942.931,943.241,940.828,939.379,934.759,935.793,937.207,936.276,938.241,933.586,932.069,932.034,934.552,939.034,935.103,937.448,939.931,939.069,939.414,939.483,943.621,944.69,941.414,942.103,941.868,941.069,939.442,939.276,937.828,935.517,933.241,933.759,933.379,935.931,936.483,935.586,935,933.828,934.103,935.103,930.897,931.103,926.759,925.138,920.897,917.448,914.448,908.31,907.276,903.552,896.655,895.552,892.138,882.091,878.793,873.931,870.069,866.113,860.241,857.241,854.724,849.897,843.172,835.034,831.345,825.069,827.414,830.552,828.897,833.483,829.966,828.931,832.121,833.759,835.207,843.276,847.862,850.621,851.241,858.069,858.655,858.561,868.517,873.31,877.655,882.828,884.233,889.483,893.034,895.724,898.931,902.138,910.138,914.552,923.31,924.931,925.207,924.517,922,922.897,924.586,923.544,923.517,919.517,914.172,916.862,917.103,914.31,912.138,912.828,911.477,912.138,911.276,910.69,907.034,912.862,911.379,913.966,917.621,918.897,920,920.517,919.586,920.586,913.172,913.724,912.793,910.31,911.966,910.759,907.966,909.724,912.448,910,910.897,904.034,911.345,913.172,918,921.276,920.759,921.138,924.655,928.345,928.793,932.207,932.552,930.034,931.414,933.414,933.552,934.655,936.448,940.31,941.241,943.897,950.517,948.621,950.729,953.379,950,950.931,955.241,954.759,962,958.624,958.276,956.241,958.138,960.207,961.69,962.793,966.103,962.31,961.828,963.828,962.724,962.828,961.241,961.552,961.966,962.103,961.586,960.138,961.103,961.379,964.586,966.134,967.069,969.586,973.241,971.069,972.966,970.724,970.895,972.172,969.793,967.414,963.759,964,960.655,953.793,952.931,952.103,948.552,950.586,949.759,952.966,954.552,957.345,953.552,952.759,949.448,948.414,941.414,941.069,937.207,932.172,906.69,871.069,840.483,804.828,772.31,741.241,707.552,676.552,643.793,612.793,579.276,547.621,518.345,487.724,456.345,424,390.655,358.31,323.069,288.379,252.897,221.621,189.621,160.655,127.586,98.345,65.828,34.586,6.793]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 0 --> 95
    line [48.243,50.429,53.39,54.748,58.016,60.692,62.573,65.249,67.546,70.221,72.448,73.517,75.207,72.897,73,72.138,71.931,73.034,73.552,73.069,73.069,72.172,71.966,73.249,71.552,72.751,73.31,72.517,72.138,72.345,72.971,72.448,73.241,72.69,72.138,72.103,72.207,71.828,71.621,71.759,71.207,70.759,72.167,71.448,71.034,72.552,71.138,71.448,71.478,71.517,71.655,71.414,71.586,71.931,71.145,70.966,71.69,71.759,72.483,72.103,72.103,72.931,72.828,73.724,74.414,74.655,75.621,75.552,75.621,76.31,76,76.281,77.31,77.69,77.546,78.172,78.684,78.143,78.759,78.897,79.034,79.31,79,79.483,79.724,80.201,80.931,79.931,80.103,80.379,80.034,80,79.621,79.862,79.586,79.069,78.552,78.897,78.586,79.241,78.69,78.103,78.172,78.212,78.103,77.695,78.069,77.724,77.828,77.724,77.517,77.966,77.828,77.517,76.902,76.621,77.276,76.69,76.586,76.655,76.828,76.477,76.483,76.172,76.345,77.103,77.138,76.862,76.414,76.931,76.862,76.828,76.793,76.793,76.517,76.655,77.31,77.172,77,77.621,77.31,77.31,77.828,77.931,77.793,77.69,78.862,78.552,78.483,78.276,78.73,78.172,78.586,78.69,78.828,77.862,77.759,77.862,75.724,76.586,76.862,77,77,77.241,77.828,77.621,78,78.069,77.724,78.207,78.31,77.897,78.621,78.586,78.621,78.207,78.483,78.448,78.103,77.759,78.061,77.276,77.483,76.966,77.414,77.793,77.621,78.897,77.621,77.276,77.374,76.69,76.897,76.034,75.862,75.759,75.345,75,74.517,74.034,74.103,73.276,73.579,73.897,74.138,74.517,74.759,75.586,75.483,75.732,76.586,76.069,76.966,77.207,77.552,77.759,78.552,78.655,79.103,79.247,79.966,79.759,79.897,80.241,80.103,81.069,80.793,81.276,81.65,82.345,83.034,82.56,82.034,81.966,82.379,82.241,82,82.586,82.448,82.828,83.793,83.103,83.345,83.448,83.621,83.517,84.345,84.207,83.793,84.103,84,84.31,84.276,84.069,84.138,84.615,84.517,84.931,84.586,84.414,84.655,85,83.931,83.552,83.069,82.586,82.517,81.793,80.897,79.828,79.828,79.414,78.897,78.345,78,77.241,76.828,76.483,76.034,75.897,75.172,74.862,74.69,74.069,74.109,73.828,74.005,73.931,73.724,73.483,73.552,74.276,74.345,74.759,75.448,75.483,76.138,76.517,76.966,77.483,77.724,78.034,78.586,78.897,79.448,79.517,79.724,79.897,80.345,81.414,81.793,81.925,82.103,82.31,82.655,82.31,82.448,82.69,82.759,82.724,82.621,82.69,82.448,82.414,82.345,82.448,82.655,82.759,82.552,82.207,82.207,82.241,82.379,82.31,83.103,83.379,83.586,83.034,82.69,82.345,82.833,82.931,82.759,83,83.31,82.966,82.724,83.345,83.448,83.586,83.276,83.586,83.172,83.414,83.414,83.414,83.966,83.793,84.207,84.103,83.784,83.793,83.759,83.207,83.172,83.103,83.759,83.931,84.034,84.069,84.138,84.552,83.897,83.862,84.103,84.207,84.31,83.69,83.724,83.483,83.655,83.69,83.517,83.69,83.483,83.034,83.31,83.405,83.552,83.767,83.828,83.862,83.655,83.931,83.759,84.034,83.379,83.862,84.241,83.931,84,84.483,84.138,84.207,84.655,84.241,84.069,83.828,83.655,83.172,82.724,82.448,82.103,81.276,80.862,80.483,79.594,78.931,78.966,78.345,77.719,77.414,77.138,76.828,75.69,75.931,75.241,74.172,73.862,73.655,73.586,73.448,74,73.138,73,73.992,74.069,74.552,75.138,75.655,76.069,76.241,77.207,77.414,77.891,78.69,79.552,79.552,80.207,80.799,81.759,81.621,82.172,82.897,83.069,83.345,84.517,84.966,84.655,84.621,84.828,84.379,84.759,84.897,84.595,85,85,84.931,85.414,85.483,85.379,85.138,85.414,85.282,85.207,85.069,85.138,85.069,85.621,84.828,85.103,85.138,84.897,84.828,84.759,84.069,84.621,84.414,84.69,84.966,84.828,85.034,85,85,85.034,84.724,84.724,84.862,84.069,84.621,84.586,84.621,84.345,84.103,84.241,84.276,84,83.621,83.793,83.621,83.483,83.517,83.517,83.655,83.793,83.414,83.448,83.345,82.655,82.862,82.448,82.405,82.069,81.552,81.828,81.724,81.31,82.276,81.925,81.966,81.759,82.172,82.379,82,81.793,81.793,81.414,81.31,81.379,81.241,81.138,81,80.966,80.793,80.862,81.103,80.793,81.138,81.207,81.517,81.457,81.448,81.552,81.517,81.172,81.207,80.724,80.626,80.828,80.621,80.207,80.276,80.69,80.724,80.724,81.448,82.034,82.103,82.034,82.034,82.379,82.379,82.379,82.069,82.034,82.31,82.655,82.552,82.69,82.552,82.517,80.448,77.552,75,72.034,69.207,66.448,63.483,60.828,58.172,55.241,52.103,49.31,46.621,43.241,40.138,37.276,34.621,32,29,26.138,23.483,20.793,18,15.034,11.897,8.862,5.897,3.207,0.552]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 1100
    line [1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,996.121,992.225,989.913,987.131,984.553,982.232,980.858,978.77,976.236,973.63,972.592,971.148,969.206,968,965.732,962.464,962.218,961.186,958.988,955.841,953.908,951.271,950.741,950.231,949.695,949.7,949.842,948.512,948.458,948.469,948.264,950.018,955.965,954.997,952.615,950.869,949.832,948.091,946.362,942.76,937.618,934.572,931.45,928.781,925.741,919.652,911.163,907.946,906.472,904.724,901.698,896.964,892.154,887.914,880.775,876.026,870.664,861.96,850.682,841.35,829.058,805.596,805.707,806.83,804.977,805.223,803.136,805.68,806.131,807.343,808.057,810.834,821.802,826.514,827.796,830.523,832.633,831.275,826.056,823.426,822.724,821.526,823.153,822.558,820.599,818.599,817.78,817.105,820.14,820.068,817.627,822.622,821.672,822.358,856.532,853.157,852.171,847.695,846.235,846.095,840.453,823.291,809.869,802.228,794.592,780.847,764.585,753.591,739.617,731.719,709.349,674.449,650.378,638.92,646.117,661.955,669.052,666.137,666.661,680.127,655.648,671.931,672.672,607.597,608.772,617.726,644.562,649.751,659.02,667.675,678.735,691.063,692.174,701.029,718.026,725.685,740.579,752.575,752.46,753.863,753.453,754.789,744.834,729.868,715.241,702.18,689.97,685.04,659.741,644.041,633.291,617.522,597.551,603.639,571.529,525.341,504.515,502.052,499.544,498.337,497.45,497.981,497.006,495.551,494.535,493.793,492.455,493.554,494.065,494.773,494.548,494.978,495.248,495.631,497.05,497.031,496.115,497.102,497.733,497.588,498.445,499.316,498.519,499.742,503.492,519.043,504.123,513.958,527.123,520.226,513.326,516.667,528.702,543.494,527.595,526.992,512.897,524.965,544.939,561.824,588.752,607.692,632.874,642.434,655.49,666.568,673.015,684.785,686.729,695.357,704.668,717.09,721.102,734.35,733.215,739.584,745.516,755.923,769.816,777.736,785.853,784.757,781.514,780.011,778.356,778.329,773.155,762.47,758.725,744.75,731.573,708.551,688.302,675.803,663.895,646.46,624.523,611.407,585.518,547.643,508.309,498.675,496.467,495.926,496.605,495.137,493.028,490.699,488.78,486.8,485.581,485.137,484.979,484.799,484.252,483.812,484.019,484.214,484.69,484.883,485.026,485.258,484.844,484.58,484.685,485.445,485.694,486.553,486.873,487.396,487.648,487.721,486.951,484.844,485.254,485.781,486.086,486.396,487.143,487.452,487.756,487.952,488.05,487.991,488.18,488.239,487.737,488.01,488.694,489.135,489.892,490.795,490.87,491.103,491.189,490.912,490.409,490.559,490.292,490.382,490.789,491.445,491.735,491.441,491.617,491.564,491.412,490.827,490.802,491.131,491.635,491.756,491.651,491.826,491.582,491.434,490.986,490.708,491.814,491.25,490.584,490.99,491.066,491.401,492.028,491.804,492.072,492.556,493.118,492.549,492.005,492.366,492.235,491.522,491.37,491.287,491.535,491.937,491.763,491.341,491.57,492.993,493.271,494.129,495.041,496.954,497.655,497.168,498.05,499.501,499.727,519.932,568.729,573.72,600.127,612.02,626.245,644.616,657.244,675.369,696.971,711.09,731.612,752.837,757.971,755.258,752.918,753.075,753.515,755.137,748.066,745.669,743.705,740.991,727.122,720.228,715.079,708.718,697.691,694.719,680.289,651.851,650.11,637.628,636.867,631.967,606.803,597.259,583.617,546.008,515.597,499.417,497.208,496.4,497.154,497.608,497.745,498.13,497.625,498.133,498.332,498.285,498.72,498.759,498.65,498.819,499.058,498.936,499.505,500.906,499.323,498.542,498.326,497.174,496.169,496.369,495.753,495.193,495.017,495.281,494.495,494.074,493.992,493.524,493.685,494.121,493.994,494.738,494.319,494.512,494.199,494.189,495.806,495.583,495.016,494.442,494.3,493.504,492.864,493.511,493.503,492.983,493.618,493.614,493.795,494.115,494.331,494.421,493.918,493.425,493.034,492.632,492.374,491.94,491.8,491.539,491.25,491.651,491.392,491.211,490.747,488.929,489.993,490.096,489.819,489.795,489.443,489.111,488.07,488.134,487.782,486.755,488.954,488.15,487.901,488.238,488.461,488.854,490.658,491.395,492.132,493.025,494.037,493.366,493.941,493.233,494.133,493.747,493.645,494.39,496.33,495.303,495.708,498.223,499.343,507.829,517.503,536.327,538.248,549.935,566.2,548.672,563.804,582.518,580.589,577.103,569.257,541.617,535.135,523.982,521.608,504.975,524.075,526.234,530.142,536.521,549.829,563.348,551.364,531.752,542.615,550,514.688,505.544,502.929,514.454,507.072,517.588,526.103,519.565,499.899,499.33,497.59,497.624,498.127,503.385,542.768,558.585,611.653,627.875,666.065,641.709,661.525,791.042,621.154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 1100
    line [1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for database-sql-query:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,99.997,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.99,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.979,99.979,99.979,99.979,99.979,99.979,99.979,99.979,99.979,99.979,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.972,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,99.993,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.959,99.959,99.959,99.959,99.959,99.959,99.959,99.959,99.955,99.959,99.959,99.959,99.959,99.959,99.959,99.959,99.959,99.959,99.959,99.983,99.983,99.983,99.983,99.983,99.983,99.983,99.983,99.983,99.983,100,100,100,100,100,100,100,100,100.003,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.006,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.931,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 15 --> 1106
    line [923.603,956.936,990.303,1000.034,1000,999.966,1000,1000.034,1000,1000,1000.034,1000.034,999.966,999.966,999.966,1000,1000,999.966,999.931,999.966,999.931,1000,1000.034,1000,1000,1000.138,998.172,1000,1000,1000,1000.069,1000,1000.034,1000.034,1000.034,999.966,999.862,999.966,1000,999.966,1000.034,1000.034,1000,999.966,1000,999.966,999.586,1000.034,1000.069,1000.034,1000.034,1000,1000.034,1000,1000,1001.793,1000,999.966,999.966,999.793,1000,999.828,1000,999.966,1000.034,1000.103,1000.034,1000.034,1000,1000.034,999.966,1000,1000.069,1000.034,1000.034,1000.448,999.931,1000,1000.034,1000,999.966,1000,1000,999.966,1000.034,1000.034,1000,994.621,1000.034,999.862,1000.034,999.862,999.897,999.897,999.793,999.862,999.897,999.966,999.897,999.966,999.966,999.966,999.897,999.931,999.931,1000.069,999.931,999.931,999.931,999.966,999.931,999.931,1000.034,999.966,999.931,1000,1005.414,1000.069,1000.034,1000.034,1000.069,1000.103,999.862,1000.172,1000.069,1000.069,1000.034,1000,1000,1000,1000,1000.069,999.724,1000.034,1000,1000.034,1000,1000.034,1000.034,1000.034,1000.069,999.931,999.966,1000.034,1000,999.966,1000,995.793,999.759,999.621,999.414,999.655,999.724,999.724,999.724,999.621,999.759,999.897,999.897,999.862,999.862,1000.207,999.897,999.862,999.897,999.931,999.828,999.862,999.862,999.862,999.931,999.931,999.828,999.724,999.931,999.966,1004.207,1000.207,1000.345,1000.517,1000.483,1000.241,1000.241,1000.207,1000.31,1000.207,1000.034,1000.034,1000.069,1000.034,1000.034,1000.034,1000.034,1000.034,999.966,1000.103,1000.103,1000.069,1000.034,1000,1000.034,999.931,1000.207,1000,1000,1000,999.966,999.724,1000,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000,1000.034,999.862,1000,1000,1000,999.897,1000,999.931,1000,1000,1000.034,1000,1000.172,1000,999.931,1000,1000,1000.034,1000.241,1000,1000,1000,1000,1000,1000,999.793,1000,1000,1000,999.931,1000.172,1000,999.897,999.966,1000.103,1000,1000,999.931,1000,999.966,1000,999.966,999.966,1000.069,1000,1000,999.931,999.966,999.966,999.966,1000,1000,1000,999.931,1000.138,999.931,1000,999.966,1000.034,999.862,1000,1000.103,1000,1000,999.966,1000.034,1000.069,1000,1000,999.966,1000,1000.034,1000.034,1000,1000,1000.034,1000.069,1000.034,999.931,1000,1000,1000,1000.069,1000.034,1000,1000,1000.034,1000.034,1000.103,1000.034,1000.069,1000.034,999.966,1000,1000,1000,1000,1000.034,1000.034,999.931,1000.034,1000.034,1000,1000.034,1000.103,1000.034,1000.069,1000.138,1000.069,1000.069,1000.069,1000.069,1000.034,1000.138,1000.069,1000.069,1000.034,1000.069,1000.034,1000.034,1000,1000.138,1000.069,1000.069,1000.069,1000.034,1000.069,1000.069,1000.207,1000.034,1000.034,1000.034,1000,1000,1000.034,999.966,1000.034,1000,999.966,1000,1000,1000.034,1000,1000,1000,1000.034,1000,999.966,1000,999.931,1000,1000.034,1000,1000,1000.034,999.966,1000,999.931,999.966,999.966,1000.034,1000.034,999.897,1000,1000,999.931,1000,1000.034,1000,1000,1000,1000,1000,999.966,999.931,999.966,1000.034,999.966,1000.103,999.966,999.966,1000,999.966,1000,999.966,999.966,1000.034,1000,1000,999.862,1000,1000.103,1000,1000.034,1000.069,1000,999.966,999.966,999.931,1000,1000,999.966,1000.034,1000.034,1000.034,1000.034,999.931,1000,1000.034,1000,999.966,1000.034,1000,1000.034,1000.034,1000,1000.034,1000.034,1000.138,999.897,999.966,1000,1000,1000,999.966,1000,1000.034,1000.069,1000,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000,1000.034,999.966,1000,1000.034,1000,1000,1000,1000,999.966,1000.069,1000.034,999.931,999.966,999.966,1000.034,1000.034,1000,1000,999.966,1000.034,1000,1000,1000.034,1000,999.966,1000.069,1000,999.966,999.931,1000,1000.034,999.966,1000,1000,999.966,1000,1000,1000.034,1000.069,1000,1000.069,999.828,1000.034,999.966,999.966,1000,999.966,1000,1000,1000.034,1000,999.966,1000,1000,1000.034,1000,999.966,1000.103,1000,1000,1000.034,999.966,1000,1000,999.966,1000.034,1000,999.931,1000,1000,1000.172,1000,1000,1000.069,1000,1000.034,1000,1000,1000,999.966,1000.034,999.966,999.966,1000,999.966,1000.069,1000,999.966,1000,1000,1000,999.966,1000.034,1000.069,999.966,999.966,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000,999.966,1000.034,999.966,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000,999.966,982.793,948.276,913.793,879.345,844.862,810.345,775.828,741.379,706.931,672.448,637.897,603.448,568.966,534.448,500.034,465.517,431.034,396.586,362.069,327.621,293.103,258.621,224.138,189.655,155.172,120.69,86.241,51.724,17.276]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 1 --> 111
    line [92.35,95.683,99.017,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100.069,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,99.552,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.448,100,100,100,100,100,99.966,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.621,100,100,99.966,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.379,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,98.276,94.828,91.379,87.931,84.483,81.034,77.586,74.138,70.69,67.241,63.793,60.345,56.897,53.448,50,46.552,43.103,39.655,36.207,32.759,29.31,25.862,22.414,18.966,15.517,12.069,8.621,5.172,1.724]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 15
    line [4.783,4.74,4.69,4.409,4.132,3.819,3.88,3.874,3.867,3.874,3.874,3.877,3.877,3.878,3.881,3.784,3.846,3.851,3.835,3.844,3.844,3.849,3.852,3.854,3.925,3.828,3.902,4.658,4.663,4.725,4.717,4.72,4.761,4.77,4.768,4.635,4.762,4.855,4.852,4.889,4.884,4.895,4.917,4.923,4.93,4.796,4.851,4.952,4.953,4.963,4.965,4.962,4.986,4.868,4.871,4.694,3.976,4.038,3.994,3.999,4.023,3.993,4.049,4.051,4.047,3.979,3.953,3.98,3.966,3.969,3.973,3.958,3.979,3.978,3.982,3.954,3.916,3.965,3.953,3.957,3.969,3.957,3.975,3.975,3.978,3.972,3.931,4.266,4.999,5.018,5.216,5.107,5.185,5.204,5.222,5.327,5.141,5.254,5.244,5.212,5.266,5.137,5.496,5.492,5.52,5.507,5.276,5.376,5.364,5.352,5.383,5.23,5.291,5.31,5.288,5.284,4.723,4.102,4.101,3.992,4.006,3.996,4.144,4.297,4.253,4.244,4.171,4.246,4.244,4.213,4.246,4.084,4.133,4.15,4.141,4.152,4.069,4.15,4.151,4.118,4.157,4.095,4.091,4.126,4.113,4.069,3.983,4.388,7.079,7.409,8.722,8.581,8.555,9.348,9.404,9.889,9.884,10.134,10.171,10.405,10.777,10.786,10.695,11.107,12.205,12.296,12.332,13.156,13.183,13.245,13.339,13.364,13.349,13.36,13.356,13.355,12.065,7.66,7.47,7.28,7.146,7.087,6.879,6.835,6.548,6.507,6.328,6.268,6.131,5.987,5.862,5.75,5.482,4.754,4.645,4.551,4.188,4.071,3.953,3.844,3.784,3.607,3.465,3.497,3.496,3.492,3.435,3.516,3.521,3.495,3.495,3.471,3.416,3.463,3.448,3.446,3.417,3.465,3.464,3.451,3.486,3.478,3.443,3.488,3.509,3.512,3.487,3.531,3.529,3.498,3.516,3.518,3.475,3.517,3.514,3.519,3.44,3.474,3.475,3.461,3.475,3.483,3.448,3.485,3.489,3.48,3.436,3.474,3.479,3.445,3.455,3.474,3.45,3.467,3.465,3.57,3.525,3.536,3.548,3.53,3.545,3.54,3.505,3.541,3.538,3.547,3.508,3.513,3.53,3.516,3.526,3.527,3.497,3.535,3.552,3.553,3.52,3.517,3.541,3.528,3.531,3.507,3.469,3.506,3.426,3.429,3.417,3.42,3.448,3.434,3.444,3.439,3.391,3.44,3.435,3.429,3.416,3.403,3.431,3.419,3.438,3.447,3.413,3.445,3.45,3.452,3.446,3.424,3.467,3.46,3.482,3.493,3.459,3.451,3.449,3.456,3.438,3.407,3.434,3.424,3.422,3.457,3.412,3.44,3.455,3.452,3.448,3.423,3.435,3.411,3.396,3.393,3.342,3.361,3.36,3.369,3.363,3.305,3.319,3.303,3.283,3.296,3.252,3.3,3.301,3.302,3.292,3.275,3.318,3.314,3.286,3.306,3.258,3.296,3.307,3.305,3.312,3.308,3.337,3.352,3.345,3.359,3.335,3.363,3.348,3.354,3.358,3.337,3.366,3.36,3.348,3.369,3.33,3.362,3.383,3.391,3.376,3.346,3.392,3.394,3.387,3.404,3.346,3.36,3.396,3.385,3.379,3.349,3.366,3.377,3.359,3.386,3.379,3.413,3.47,3.486,3.487,3.459,3.504,3.512,3.495,3.526,3.491,3.465,3.511,3.52,3.534,3.502,3.542,3.539,3.531,3.567,3.551,3.526,3.552,3.549,3.561,3.542,3.583,3.598,3.588,3.574,3.559,3.514,3.547,3.544,3.543,3.512,3.537,3.535,3.513,3.538,3.543,3.505,3.536,3.531,3.528,3.502,3.53,3.543,3.524,3.563,3.58,3.576,3.596,3.613,3.624,3.587,3.624,3.622,3.617,3.63,3.625,3.588,3.629,3.638,3.638,3.614,3.649,3.644,3.621,3.637,3.66,3.627,3.638,3.639,3.625,3.609,3.622,3.627,3.589,3.585,3.569,3.55,3.554,3.541,3.531,3.485,3.516,3.516,3.5,3.521,3.516,3.475,3.513,3.518,3.509,3.472,3.492,3.498,3.478,3.477,3.482,3.464,3.512,3.525,3.521,3.5,3.532,3.544,3.53,3.552,3.557,3.524,3.561,3.564,3.568,3.538,3.566,3.585,3.566,3.595,3.597,3.558,3.595,3.61,3.617,3.61,3.628,3.653,3.636,3.651,3.652,3.623,3.665,3.661,3.662,3.654,3.657,3.667,3.655,3.657,3.662,3.635,3.658,3.652,3.647,3.63,3.616,3.633,3.612,3.621,3.68,3.652,3.674,3.678,3.672,3.658,3.638,3.659,3.65,3.661,3.656,3.619,3.646,3.645,3.615,3.603,3.59,3.605,3.601,3.601,3.601,3.58,3.606,3.614,3.604,3.594,3.576,3.588,3.579,3.514,3.513,3.478,3.469,3.479,3.482,3.488,3.459,3.456,3.439,3.442,3.432,3.38,3.382,3.404,3.417,3.435,3.391,3.391,3.394,3.418,3.413,3.326,3.314,3.352,3.398,3.421,3.312,3.288,3.302,3.047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 17
    line [6.057,5.951,5.847,5.387,4.993,4.721,4.809,4.808,4.797,4.811,4.797,4.809,4.811,4.818,4.8,4.69,4.749,4.744,4.738,4.751,4.77,4.784,4.802,4.806,4.867,4.769,4.884,5.856,5.833,5.955,5.991,6.018,6.075,6.075,6.062,5.894,6.05,6.162,6.128,6.197,6.197,6.208,6.25,6.28,6.326,6.113,6.213,6.342,6.342,6.359,6.35,6.35,6.416,6.223,6.214,5.857,4.927,4.967,4.934,4.935,4.948,4.938,4.98,4.98,4.966,4.928,4.91,4.954,4.939,4.943,4.964,4.959,4.974,4.953,4.943,4.906,4.886,4.954,4.929,4.942,4.959,4.934,4.97,4.971,4.971,4.963,4.938,5.518,6.586,6.624,6.71,6.633,6.674,6.707,6.741,6.827,6.765,6.808,6.804,6.785,6.823,6.778,6.905,6.925,6.928,6.91,6.82,6.877,6.864,6.873,6.877,6.826,6.831,6.839,6.852,6.847,6.286,5.305,5.284,5.061,5.156,5.081,5.333,5.525,5.414,5.398,5.187,5.317,5.335,5.242,5.298,5.064,5.167,5.282,5.317,5.352,5.15,5.323,5.266,5.229,5.266,5.229,5.21,5.266,5.266,5.262,5.106,5.714,8.125,8.676,9.514,9.529,9.318,9.902,10.189,11.746,11.746,12.353,12.353,12.676,13.014,13.014,12.917,13.108,14.205,14.333,14.333,14.9,14.9,15.049,15.143,15.189,15.143,15.189,15.189,15.189,14.389,8.879,8.739,8.373,8.125,8.1,7.713,7.633,7.371,7.366,7.286,7.239,7.196,7.105,7.044,6.981,6.855,6.343,6.243,6.131,5.573,5.429,5.142,4.896,4.822,4.633,4.459,4.5,4.486,4.486,4.4,4.458,4.486,4.426,4.402,4.371,4.274,4.349,4.313,4.321,4.304,4.395,4.393,4.329,4.39,4.363,4.321,4.342,4.366,4.35,4.299,4.383,4.417,4.365,4.416,4.42,4.352,4.409,4.404,4.4,4.318,4.376,4.412,4.376,4.406,4.43,4.381,4.449,4.455,4.439,4.355,4.389,4.394,4.333,4.381,4.41,4.423,4.431,4.441,4.561,4.504,4.522,4.5,4.445,4.473,4.487,4.445,4.5,4.522,4.522,4.463,4.459,4.469,4.436,4.445,4.45,4.402,4.464,4.454,4.454,4.436,4.441,4.486,4.44,4.439,4.413,4.384,4.424,4.343,4.357,4.316,4.347,4.429,4.402,4.396,4.374,4.299,4.356,4.373,4.385,4.36,4.323,4.358,4.326,4.35,4.381,4.321,4.4,4.43,4.446,4.436,4.396,4.474,4.483,4.496,4.5,4.479,4.458,4.471,4.492,4.479,4.417,4.432,4.436,4.48,4.52,4.484,4.5,4.516,4.527,4.534,4.511,4.53,4.5,4.468,4.471,4.412,4.429,4.383,4.4,4.407,4.336,4.303,4.28,4.262,4.25,4.194,4.224,4.221,4.202,4.202,4.168,4.227,4.191,4.141,4.161,4.089,4.143,4.144,4.143,4.132,4.069,4.09,4.132,4.124,4.136,4.071,4.227,4.227,4.237,4.25,4.237,4.283,4.276,4.263,4.295,4.255,4.265,4.34,4.349,4.378,4.324,4.373,4.38,4.349,4.37,4.298,4.305,4.333,4.349,4.362,4.356,4.353,4.356,4.34,4.356,4.313,4.33,4.416,4.426,4.458,4.436,4.495,4.481,4.485,4.495,4.486,4.429,4.49,4.5,4.515,4.439,4.476,4.476,4.471,4.514,4.495,4.475,4.52,4.52,4.535,4.52,4.589,4.607,4.609,4.606,4.596,4.523,4.579,4.556,4.545,4.495,4.532,4.527,4.5,4.505,4.519,4.455,4.473,4.468,4.473,4.441,4.491,4.496,4.477,4.521,4.517,4.492,4.516,4.548,4.568,4.528,4.561,4.571,4.545,4.558,4.562,4.504,4.569,4.593,4.608,4.576,4.597,4.61,4.602,4.613,4.636,4.595,4.617,4.627,4.621,4.605,4.613,4.618,4.598,4.63,4.624,4.613,4.612,4.597,4.563,4.517,4.539,4.543,4.538,4.555,4.556,4.504,4.542,4.545,4.557,4.525,4.556,4.551,4.524,4.52,4.528,4.508,4.562,4.558,4.541,4.521,4.555,4.55,4.516,4.519,4.504,4.48,4.526,4.523,4.523,4.5,4.538,4.55,4.538,4.563,4.557,4.516,4.562,4.582,4.602,4.578,4.617,4.652,4.649,4.667,4.662,4.609,4.644,4.626,4.641,4.639,4.627,4.645,4.63,4.652,4.65,4.592,4.639,4.636,4.626,4.595,4.576,4.566,4.524,4.531,4.6,4.545,4.569,4.556,4.548,4.508,4.485,4.507,4.5,4.532,4.528,4.522,4.576,4.582,4.544,4.537,4.523,4.576,4.56,4.565,4.57,4.537,4.574,4.579,4.562,4.543,4.543,4.583,4.574,4.483,4.5,4.453,4.464,4.477,4.49,4.5,4.478,4.476,4.444,4.467,4.432,4.346,4.297,4.307,4.349,4.37,4.212,4.218,4.197,4.266,4.259,4.022,4.023,4.125,4.206,4.281,3.988,3.994,4.25,3.929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading

Copy link

github-actions bot commented Jul 10, 2025

🌋 Here are results of SLO test for gorm-query:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.958,99.934,99.934,99.934,99.934,99.934,99.934,99.934,99.934,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.921,99.922,99.963,99.986,99.986,99.986,99.983,99.986,99.986,99.986,99.986,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,99.99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,99.993,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100.007,100,100,100,100,100,100,100,100,100,100,100,100.007,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 0 --> 111
    line [99.962,99.963,99.965,99.966,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.965,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.965,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.965,99.045,98.549,98.55,98.549,98.55,98.55,98.55,98.549,98.55,98.549,98.55,98.549,98.55,98.549,98.551,98.549,98.55,98.55,98.55,98.552,98.55,98.55,98.55,98.55,98.55,98.55,98.55,98.551,98.62,99.495,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.654,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.586,99.931,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 31 --> 1118
    line [904.707,937.93,971.326,1004.621,1005.034,1000.069,1000,1000.034,1000.034,1000.276,1000,1000.069,1000,999.966,999.759,1000,1000,1000.034,1000.207,999.759,1000,1000.034,1000,1000.172,1000,999.966,1000.034,1000,1000,999.862,1000.069,1000,999.966,1000.034,999.724,1000.069,1000.069,1000.069,1000,999.966,1000,1000.034,999.966,1000.276,1000.034,1000,1000.034,999.828,1000.241,1000,1000,1000.034,1000,1000.069,1000,999.966,1000.034,999.724,1000.138,1000.034,1000,1000.069,999.931,1000.241,999.828,999.966,999.931,999.862,1000,1000.034,1000,1000.103,1000.034,1000.034,1000.034,999.931,1000.207,999.759,1000.034,1000.069,1000,999.862,999.897,1000,1000.034,999.966,999.69,1000,999.966,999.862,999.759,1000,1000,1000.069,999.724,984.449,987.517,999.828,999.931,1000,1000.069,1000.069,1000,999.828,1000,1000.138,1000.069,1000.172,1000.138,1000.172,1000.345,999.862,1000.31,1000.241,1000.276,1000.897,1000.241,1000.241,1000.448,1000.448,1000.345,1000.103,1000.345,1000.552,1015.898,1012.897,1000.414,1000.379,1000.241,1000.207,1000.172,1000.207,1000.414,1000.276,1000.207,1000.414,1000.103,1000.069,1000.103,1000.103,1000.483,999.931,999.931,1000.034,1000,1000.034,1000.034,999.931,1000.034,999.966,1000.138,999.862,1000,999.931,1000,995.724,999.552,999.621,999.586,999.621,999.621,999.621,999.655,999.586,999.621,999.69,999.69,999.724,999.69,999.69,999.586,999.793,999.69,999.69,999.69,999.724,999.759,999.724,999.759,999.69,999.793,999.69,999.759,999.69,1004.034,1000.103,1000.138,1000.103,999.966,1000.103,1000.069,1000.069,1000.103,1000.103,1000,1000,1000,1000,999.966,1000.172,1000,1000,1000,1000,999.966,1000.034,1000,999.966,1000.034,1000.034,1000,1000,1000.034,1000,1000.034,999.966,1000.034,1000.069,1000,1000.034,1000,1000,1000,1000,1000,1000,1000,1000.034,999.966,1000.034,999.897,1000.034,1000,1000.069,999.966,1000,999.966,1000,999.828,1000,1000.034,999.966,1000,1000,1000,999.966,1000.103,1000.034,1000.034,999.966,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.069,999.862,1000.138,1000,999.69,1000,1000.034,999.931,1000.069,1000.034,1000.207,1000,999.966,1000.034,1000,999.966,1000.034,1000.034,999.931,999.586,1000,1000.103,999.931,1000,1000,999.966,1000,999.966,999.966,999.966,1000.034,1000,1000,1000.31,1000,999.966,1000,1000,1000,1000,1000,999.966,999.966,1000,999.793,1000,1000.034,1000.069,1000.414,1000,1000,1000.034,1000,1000,1000.034,999.966,1000.034,1000.034,1000.034,1000.103,1000,1000,1000,1000,1000.034,1000.172,1000.034,1000.069,1000.034,1000.138,999.586,1000.103,1000.069,1000.034,1000.034,1000.034,1000.069,1000.034,1000.069,1000.034,1000.103,1000.069,1000.034,1000.034,1000.069,1000.034,1000.034,1000.069,1000,1000.034,1000.103,1000.069,1000.034,1000.069,999.966,1000,1000,1000.034,999.931,1000.517,999.931,1000.034,1000.241,999.724,1000,999.966,1000.034,999.966,1000.034,999.966,999.966,1000,1000,1000,1000.034,1000.034,1000,1000.069,1000,999.931,1000,1000,999.966,999.586,999.724,1000,1000,1000,1000.034,1000.034,999.966,1000.034,1000.31,999.966,1000.034,1000,1000,1000,1000.034,999.793,1000.034,1000,1000,999.966,999.966,999.931,999.966,1000.034,1000.034,1000.034,1000.034,1000,1000.414,1000.276,999.828,999.966,1000.034,999.931,1000.034,1000.034,999.966,1000,1000,1000,999.966,1000.034,999.966,1000,1000.207,1000,1000.034,1000.034,1000.034,1000,1000.069,1000.034,1000,1000,999.966,1000,1000.034,1000.034,1000.034,1000.172,999.966,999.828,999.862,1000,999.897,1000.034,1000.034,1000.034,1000.034,1000.034,1000,1000.034,1000,1000,1000,999.966,999.966,1000,1000.034,1000,999.931,999.793,1000.034,1000.034,1000,1000,1000,1000.034,1000,1000.069,1000.207,1000.241,1000,1000.103,1000,1000,1000.034,1000,1000.034,1000.034,999.621,1000.034,1000.069,999.931,1000.103,1000.103,999.966,1000.034,1000.069,1000.138,1000.276,1000,1000.034,1000.069,1000.069,1000.034,1000,999.759,1000.034,1000,1000.034,1000.034,1000.034,1000.069,999.966,999.966,1000,1000,1000,1000.414,999.931,1000,1000.103,999.966,999.966,999.897,999.897,999.931,999.897,999.931,1000,999.966,1000,999.862,1000.034,1000.034,1000.31,1000.034,1000.034,1000,1000.034,1000.034,1000,1000.069,1000.069,1000.034,1000.034,999.966,1000.069,1000.138,999.966,999.931,1000.069,1000.034,1000.172,1000.138,1000.069,1000.069,1000.103,1000.034,1000,1000,1000.172,1000,999.931,1000,1000,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000.034,1000.034,1000.069,1000,999.966,1000.069,1000.103,1000,1000.034,965.586,931.069,896.586,862.138,827.586,793.138,758.724,724.172,689.655,655.207,620.793,586.241,551.759,517.276,482.759,448.31,413.793,379.31,344.862,310.379,275.862,241.379,206.931,172.414,137.966,103.483,69,34.483]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 3 --> 113
    line [90.73,94.063,97.395,100.724,101.379,100,100,100.034,100.034,100.034,100,100,100,99.966,99.931,100,99.966,100,100.069,99.931,100,100,99.966,100.034,100,100,100,100,100.034,99.966,99.966,100,100,100,99.931,100,100,100,100,100,100,100,100,100.069,100,100.034,100,99.931,100.069,100,100,100.034,100,100,100,100,100,99.966,100.034,100.034,100,100,100,100.069,99.966,100,100,99.966,100,100,100,100.034,100,100,100,99.966,100.069,99.966,100,100,100,99.931,100,100,99.966,99.966,99.897,99.966,99.966,99.966,99.966,99.966,100,100,99.931,97.407,97.517,99.793,99.862,99.828,99.862,99.862,99.862,99.828,99.862,99.828,99.862,99.828,99.862,99.793,99.931,99.828,99.862,99.897,99.897,100,99.897,99.897,99.897,99.897,99.897,99.862,99.897,99.931,102.455,102.379,100.034,100,100.034,100,100,100,100.034,100.034,100.034,100.034,100.034,100,100.069,100,100.034,100,99.966,100,100,100,100,100,100,100,100,99.931,100,100,100,99.724,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100.069,100,100,100,100.31,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.993,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100.007,100,100,100,100,100,100,100,100,99.931,100,100,100.034,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100.069,100,100,100,100,100,100.034,100,100,100,100,99.897,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.103,100,100,100.034,99.931,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.931,99.966,100,100,100,100,100,100,100,100.069,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100.069,100.034,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,99.966,100,99.99,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100.01,100,100,100,100,100,100,99.966,100,100,99.966,100,100,99.966,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100.034,99.966,100,100.034,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,99.966,100,100,100.034,100,100,100,100,100,100,100,100.034,100,99.931,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,96.552,93.103,89.655,86.207,82.759,79.31,75.862,72.414,68.966,65.517,62.138,58.621,55.172,51.724,48.276,44.828,41.379,37.931,34.483,31.034,27.586,24.138,20.69,17.241,13.793,10.345,6.897,3.448]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 312
    line [46.869,43.845,40.801,37.775,14.939,11.021,11.739,11.855,11.168,10.517,10.621,10.616,10.547,10.531,10.572,9.724,9.852,9.889,9.822,9.789,9.718,9.718,9.789,9.777,9.776,9.443,9.742,9.764,9.201,9.165,9.195,9.206,9.241,9.273,11.072,11.277,11.795,11.802,11.833,11.688,11.598,11.661,11.605,11.471,11.434,11.007,11.165,11.216,11.105,11.006,11.076,10.757,10.78,10.749,10.68,9.944,9.918,9.866,9.785,9.762,9.701,9.631,9.595,8.315,7.63,7.359,7.51,7.568,7.549,7.52,7.54,7.585,7.579,7.563,7.498,7.341,7.366,7.441,7.39,7.347,7.593,8.216,8.681,8.844,9.15,9.327,9.796,10.71,11.249,12.419,13.333,13.77,14.051,14.55,15.221,16.999,46.068,283.197,282.263,281.938,281.762,281.672,281.641,281.668,281.566,282.673,282.67,282.603,282.582,282.564,282.479,282.66,282.468,282.485,282.462,282.204,282.46,282.454,282.364,282.359,282.395,282.488,282.386,282.299,231.773,33.215,16.981,15.873,15.528,15.138,15.044,14.611,14.274,14.068,13.455,12.991,11.898,11.625,10.543,9.752,9.483,9.324,9.382,9.457,9.416,9.365,9.328,9.471,9.401,9.293,9.754,9.765,9.854,9.889,9.863,10.759,14.666,14.569,14.565,14.278,14.283,14.244,14.149,13.891,13.896,13.752,13.548,13.727,13.568,13.531,13.813,13.571,13.408,13.272,13.322,13.07,12.738,12.678,12.38,10.587,10.112,9.903,9.857,9.825,9.239,7.643,7.54,7.469,7.428,7.323,7.312,7.318,7.38,7.345,7.403,7.384,7.256,7.325,7.306,7.028,7.048,7.028,7.03,7.051,7.056,7.026,6.948,6.975,6.956,6.979,7.029,7.07,7.027,7.072,7.05,7.028,7.017,7.01,6.978,6.958,6.915,6.962,7.013,6.963,7.056,7.107,7.016,7.132,7.161,7.056,7.079,7.165,7.118,7.153,7.201,7.184,7.194,7.274,7.251,7.238,7.261,7.314,7.285,7.246,7.27,7.329,7.313,7.442,7.434,7.45,7.551,7.518,7.458,7.448,7.496,7.544,7.448,7.518,7.523,7.465,7.426,7.418,7.43,7.401,7.44,7.423,7.395,7.38,7.361,7.279,7.271,7.289,7.401,7.466,7.358,7.403,7.312,7.345,7.296,7.178,7.239,7.329,7.293,7.242,7.188,7.16,7.094,7.163,7.171,7.166,7.155,7.166,7.193,7.171,7.153,7.123,7.131,7.128,7.191,7.176,7.197,7.161,7.087,7.131,7.106,7.109,7.077,7.084,7.078,6.996,6.963,6.98,6.917,6.973,7.018,6.987,6.957,7.012,6.929,6.981,6.973,7.056,7.276,7.307,7.325,7.295,7.322,7.354,7.368,7.311,7.369,7.385,7.42,7.44,7.428,7.454,7.533,7.572,7.823,7.773,7.778,7.984,8.023,8.108,8.15,8.076,8.089,8.21,8.194,8.222,8.057,7.768,7.759,7.779,7.746,7.736,7.596,7.487,7.636,7.558,7.599,7.793,7.758,7.78,7.75,7.679,7.664,7.464,7.593,7.544,7.403,7.403,7.327,7.314,7.288,7.247,7.238,7.178,7.192,7.196,7.201,7.347,7.415,7.472,7.418,7.43,7.496,7.362,7.422,7.399,7.262,7.357,7.342,7.31,7.313,7.334,7.346,7.298,7.394,7.46,7.451,7.523,7.53,7.594,7.556,7.453,7.591,7.538,7.498,7.429,7.268,7.195,7.158,7.245,7.208,7.157,7.186,7.06,7.167,7.18,7.097,7.178,7.229,7.249,7.197,7.196,7.177,7.03,7.051,7.041,6.976,6.99,6.972,7.017,7.096,6.981,6.971,7.011,7.09,7.087,7.092,7.242,7.328,7.397,7.39,7.445,7.479,7.324,7.377,7.364,7.291,7.303,7.277,7.231,7.256,7.276,7.259,7.223,7.306,7.296,7.277,7.353,7.353,7.287,7.99,8.027,7.994,7.987,7.948,7.881,7.645,7.464,7.478,7.543,7.498,7.498,7.605,7.446,7.467,7.486,7.443,7.454,7.63,7.669,7.566,7.58,7.589,7.467,7.56,7.574,7.467,7.443,7.504,7.074,7.077,7.046,7.06,7.126,7.12,7.205,7.234,7.178,7.188,7.221,7.261,7.208,7.292,7.275,7.226,7.282,7.403,8.128,8.705,9.182,9.458,9.661,10.182,10.221,11.058,11.681,11.852,12.634,13.078,13.098,13.123,13.114,13.098,13.155,13.071,13.203,13.209,13.193,13.158,13.056,13.031,12.968,12.912,12.915,12.892,12.822,11.879,10.894,10.009,9.89,9.702,9.349,9.243,8.883,8.56,8.441,7.844,7.305,7.294,7.303,7.313,7.238,7.206,7.247,7.15,7.141,7.124,7.113,7.214,7.256,7.228,7.191,7.183,7.163,7.11,7.183,7.173,7.102,7.094,7.12,7.134,7.168,7.151,7.115,7.065,7.055,7.134,6.953,6.978,6.967,7.065,7.099,7.08,7.071,7.069,7.044,6.97,6.68,6.634,6.661,6.759,6.878,6.929,7.122,6.749,6.499,6.834,6.538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 0 --> 618
    line [121.739,99.761,93.773,87.676,40.038,22.958,25.385,25.687,24.218,21.96,21.556,21.128,21.556,21.982,21.993,19.683,19.879,20,19.711,19.688,19.651,19.675,19.839,19.802,19.778,19.27,19.573,19.543,18.826,18.819,18.854,18.775,18.669,18.73,20.024,21.145,23,23,22.806,22.206,21.579,20.923,20.469,20.213,20.236,19.782,19.85,19.912,19.905,19.849,19.94,19.818,19.909,19.907,19.936,19.661,19.61,19.575,19.467,19.384,19.426,19.418,19.347,17.822,16.736,16.179,16.602,16.707,16.719,16.68,16.757,16.842,16.794,16.73,16.667,16.242,16.332,16.4,16.25,16.063,16.517,17.4,18.056,18.317,18.68,18.919,19.322,19.761,19.932,23.831,27.301,29.038,29.653,31.302,33.525,34.907,47.555,561.009,560.55,560.78,560.55,560.55,560.55,560.78,560.55,560.78,560.55,560.78,560.55,561.009,560.092,560.78,560.55,560.321,560.321,559.633,560.321,560.321,560.321,560.321,560.321,560.55,560.321,560.092,530.425,77.422,38.308,35.583,34.54,33.68,33.415,32.261,31.278,30.471,28.652,27.573,24.536,23.704,19.997,19.443,19.108,18.916,19.143,19.252,19.313,19.32,19.308,19.578,19.528,19.46,19.938,19.941,20.217,20.851,20.432,24.233,32.28,32.047,31.928,31.437,31.437,31.437,31.437,30.784,30.369,29.936,29.171,29.637,29.011,29.011,30.227,29.159,28.848,28.172,27.996,27.072,25.639,25.639,24.502,19.969,19.865,19.725,19.594,19.622,18.801,17.196,17.057,17.011,16.914,16.641,16.654,16.654,16.704,16.654,16.767,16.766,16.513,16.691,16.567,15.779,15.802,15.768,15.738,15.781,15.816,15.714,15.446,15.565,15.551,15.545,15.758,15.776,15.683,15.727,15.739,15.708,15.616,15.566,15.505,15.377,15.283,15.442,15.525,15.33,15.429,15.493,15.271,15.545,15.64,15.433,15.437,15.694,15.734,15.826,15.837,15.909,15.853,16.062,16.174,16.044,16.123,16.314,16.298,16.18,16.213,16.314,16.298,16.452,16.454,16.492,16.529,16.584,16.49,16.532,16.573,16.613,16.441,16.49,16.516,16.458,16.298,16.257,16.271,16.371,16.387,16.453,16.348,16.164,16.104,15.973,15.991,16.083,16.26,16.375,16.25,16.371,16.273,16.336,16.25,16.139,16.25,16.488,16.364,16.364,16.281,16.275,16.208,16.228,16.235,16.275,16.227,16.26,16.29,16.242,16.135,16.096,16.113,16.157,16.23,16.104,16.044,16.083,15.991,16.045,15.991,16.007,15.928,16,16.05,15.796,15.636,15.785,15.662,15.676,15.701,15.668,15.644,15.806,15.701,15.814,15.767,15.899,16.387,16.5,16.514,16.452,16.441,16.493,16.637,16.533,16.489,16.466,16.45,16.45,16.432,16.45,16.504,16.393,16.771,16.789,16.776,17.072,17.24,17.385,17.399,17.273,17.222,17.361,17.321,17.385,17.176,16.818,16.771,16.83,16.816,16.818,16.63,16.419,16.652,16.562,16.52,16.975,16.933,16.942,16.929,16.816,16.813,16.546,16.667,16.641,16.386,16.445,16.318,16.279,16.308,16.26,16.189,16.078,16.122,16.136,16.02,16.285,16.388,16.442,16.34,16.35,16.442,16.206,16.357,16.377,15.941,16.154,16.175,16.104,16.138,16.23,16.169,16.026,16.192,16.208,15.974,16.102,16.092,16.134,16.085,15.974,16.197,16.106,16.116,16.126,15.797,15.73,15.804,15.983,15.991,15.882,15.956,15.708,16.027,16.018,15.88,16.019,16.261,16.205,16.143,16.176,16.178,15.864,16.106,16.245,16.143,16.327,16.327,16.344,16.535,16.25,16.195,16.15,16.201,16.123,16.042,16.256,16.522,16.567,16.538,16.624,16.667,16.316,16.496,16.368,16.174,16.096,16.201,16.079,16.114,16.123,16.089,15.917,15.991,15.903,15.837,15.928,15.956,15.759,16.681,16.681,16.667,16.622,16.696,16.71,16.473,16.154,16.237,16.344,16.239,16.256,16.388,16.101,16.283,16.316,16.205,16.18,16.438,16.481,16.455,16.498,16.432,16.263,16.438,16.32,16.25,16.184,16.345,15.556,15.593,15.551,15.556,15.536,15.534,15.513,15.517,15.411,15.388,15.546,15.565,15.439,15.603,15.507,15.531,15.69,15.767,17.107,18.09,18.764,19.171,19.443,19.927,19.977,22.532,24.821,25.69,28.528,29.857,30.141,30.148,30.141,30.326,30.41,30.326,30.507,30.507,30.685,30.507,30.596,30.596,30.685,30.773,30.773,30.946,30.946,28.477,25.657,22.876,21.974,20.408,19.563,19.476,19.101,18.602,18.339,17.447,16.461,16.344,16.43,16.478,16.352,16.295,16.278,16.063,16.063,16.009,15.769,15.917,15.946,15.919,15.785,15.859,15.605,15.55,15.747,15.734,15.672,15.708,15.792,15.849,15.905,15.854,15.867,15.806,15.856,16.023,15.583,15.548,15.479,15.697,15.725,15.865,15.935,15.965,15.943,15.842,15.529,15.584,15.571,16,16.034,16.327,16.444,15.625,15.217,16.25,14.286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Loading

Copy link

🌋 Here are results of SLO test for native-table-over-query-service:

Operation Success Rate

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100,99.997,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,99.993,100.003,100,99.997,100,100,100,100,100,100.003,100,100,99.997,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100.003,100.003,99.997,100,100.003,100,100.003,100,100,100,99.997,100,100.003,100,100.003,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,99.997,100,100,99.997,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100.003,100,99.997,99.997,100,100,100.003,100,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100.003,100.003,100,100,99.997,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100.007,100,100,100,100,99.997,100,100,100.003,100,100,99.997,100,100,100.003,100.003,100,100,100,100,99.997,99.997,100,100,100,100,100,100,100.003,99.997,99.997,100.003,100,100,100.003,100,100.003,100,100,100,100,100,100,99.997,99.993,100,100,100,100,100,100.003,100,100.003,99.997,100,100,100,99.997,100,100.003,99.997,100,100,100,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,99.997,100.003,100.003,99.997,100,100.003,100,99.997,100,100,100,100,100,99.997,100.007,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,99.997,100.003,100,99.997,100,100.003,100,100,100,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100.003,99.997,100,99.997,100,100,100,100,100,100,100,100,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100.003,99.997,100,100,100,99.997,100,100,100.003,100,100.003,100.003,100,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,100,100,100,100,99.997,100,99.997,99.997,100.003,100,100,100,99.997,100.003,100,100,100,100,100,100,99.997,100,100,100,100,100,100.003,100,100,100,99.997,100,100,100,100,100,100.003,99.997,100,100,100,100.003,99.997,100,100,100,99.997,100.003,100,100.003,100,100,100,100,100,99.997,99.997,100,100,100.003,100,100,100,100,100,100,100]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "	Time, m" 0 --> 10
    y-axis "Success Rate, %" 89 --> 111
    line [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100]
Loading

Operations Per Second

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 834 --> 1101
    line [927.268,960.601,1000,1000.034,1000.069,999.966,1000.034,1000,1000,1000,1000.034,999.966,1000,1000,1000.034,1000.034,1000,999.931,1000,1000.034,999.966,1000,999.931,1000,1000,1000,999.966,1000.069,999.966,1000,999.966,1000.034,1000,999.966,1000.034,1000,1000.034,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000,1000,1000.034,999.966,1000,1000,999.966,1000.069,1000,1000,1000.034,999.897,999.966,1000.034,1000,1000.034,999.966,999.966,1000.034,999.966,1000,1000,999.966,1000,999.966,1000,999.897,1000,999.966,1000,1000,1000.034,1000,999.966,1000.034,1000,1000,999.966,1000,1000,1000.138,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,999.931,999.966,1000.034,1000,1000.034,1000,1000.103,999.966,1000,999.966,1000,999.966,1000.034,1000.034,1000,1000.034,999.966,1000.034,1000,999.966,1000,1000.034,1000,999.966,999.966,1000,999.966,1000,1000,1000.034,1000.034,1000,1000,1000,999.966,1000,1000.034,1000.034,1000,999.931,1000.034,1000,999.966,1000,999.966,1000,999.966,1000.034,1000.034,999.966,999.966,999.966,1000,1000,1000.034,1000.034,1000,999.931,1000,999.966,1000,1000,999.966,1000,1000,999.931,1000,1000.034,1000.069,1000,999.897,1000.034,1000,1000,1000.034,1000,999.966,1000,1000.034,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000.069,1000.034,1000,1000,1000,1000,1000,1000,1000.103,1000,1000.034,1000,1000.034,1000.069,1000,999.966,1000.069,1000,1000.069,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000.034,1000,1000.034,999.966,1000.034,1000.069,1000,999.966,1000.034,1000.034,1000,999.966,1000.034,999.966,999.966,999.966,1000,1000,1000.034,1000,1000,999.931,1000.034,999.966,1000,1000,1000.034,1000,1000,1000,1000.034,1000,1000.034,1000,1000,1000.034,1000.069,1000.034,1000,1000,1000,999.931,1000,1000.069,1000,1000.069,1000,1000,999.966,1000,1000.034,999.966,1000,1000,1000,999.966,1000,1000.034,999.966,999.966,999.966,1000,999.966,999.966,1000,1000,999.931,1000.034,1000,1000.034,1000.069,1000,1000,1000,999.966,1000,1000,999.931,1000.034,999.966,1000.034,1000,1000.034,1000.034,1000,1000.034,999.931,1000,1000.034,1000,1000.034,1000,1000.034,999.966,999.966,1000.069,999.966,1000.034,999.966,1000,1000,999.966,1000.034,1000,1000,1000.034,1000.069,999.966,1000.034,1000,1000,999.966,999.966,1000.034,1000,1000.034,1000,999.966,1000.034,999.966,1000.034,999.966,1000.034,1000.034,999.966,999.966,999.966,1000.034,1000,1000,1000.034,999.966,1000,1000,999.966,1000.034,1000.034,1000.034,999.966,1000.034,1000.034,1000.034,999.966,999.966,999.966,1000,1000,1000,1000,999.966,1000,1000,999.966,1000,1000.034,999.966,999.966,1000,1000,999.966,1000,1000,1000,999.931,1000,999.966,999.966,1000,999.966,999.966,1000,1000,1000,1000.069,1000.034,999.966,999.931,1000.034,1000,1000,1000,1000.034,1000.034,1000.034,1000.034,1000.034,1000,1000.034,999.966,999.966,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,999.966,999.931,1000,1000,999.931,1000,1000.034,1000.034,999.966,1000.034,1000.034,999.966,999.966,1000,999.966,1000.034,1000,999.966,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000,999.966,999.966,1000.069,1000.069,1000,1000.034,1000.034,999.966,1000,1000.034,1000.034,1000,999.966,999.966,1000,1000,1000.034,999.931,999.897,1000.034,999.966,1000.034,1000.034,1000,1000,1000.103,1000,1000,999.966,1000.034,1000,999.966,1000,1000,999.966,1000,1000,999.931,999.966,1000,999.966,1000,1000.034,1000.034,1000,1000,1000.069,1000.069,999.966,1000.034,1000,999.966,1000.034,999.966,1000,999.931,1000,1000.034,999.966,1000.034,1000,999.966,1000.034,1000,1000,1000,1000.103,999.966,999.966,1000,1000,1000,1000,999.966,1000,999.966,1000,999.966,999.966,1000,1000.034,999.966,1000.034,1000,1000,1000,999.966,1000,1000,1000,1000.034,999.966,1000,999.931,1000.034,1000,1000.034,1000,1000,1000.034,1000.034,1000,1000,999.966,1000,1000,1000.069,1000,1000,999.966,1000,1000,1000,1000.069,1000,1000,1000,999.966,1000,999.966,1000.034,1000.034,1000.103,999.966,999.966,1000.034,1000.034,1000,1000,1000,1000,1000,1000.034,1000.034,1000.034,999.966,1000.034,999.966,1000.034,1000,1000,999.966,972.732]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Operations" 83 --> 111
    line [92.723,96.057,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.993,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.007,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.034,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,97.277]
Loading

95th Percentile Latency

---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=read"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 1 --> 3
    line [1.964,1.964,1.964,1.967,1.965,1.962,1.965,1.966,1.965,1.965,1.965,1.966,1.966,1.966,1.967,1.961,1.966,1.966,1.965,1.964,1.96,1.96,1.959,1.959,1.96,1.954,1.982,1.984,1.983,1.984,1.983,1.983,1.979,1.98,1.98,1.976,1.978,1.979,1.979,1.979,1.979,1.979,1.98,1.98,1.98,1.976,1.978,1.978,1.978,1.978,1.979,1.98,1.981,1.98,1.98,1.952,1.954,1.954,1.953,1.954,1.955,1.956,1.956,1.957,1.957,1.955,1.957,1.957,1.958,1.958,1.957,1.958,1.957,1.957,1.957,1.955,1.958,1.958,1.958,1.957,1.957,1.957,1.957,1.958,1.958,1.955,1.959,1.963,1.962,1.962,1.96,1.961,1.96,1.96,1.96,1.958,1.961,1.961,1.961,1.961,1.961,1.961,1.962,1.962,1.962,1.959,1.961,1.961,1.961,1.96,1.96,1.959,1.959,1.959,1.959,1.955,1.954,1.955,1.954,1.955,1.954,1.954,1.954,1.954,1.954,1.951,1.953,1.952,1.953,1.953,1.952,1.951,1.952,1.952,1.952,1.95,1.952,1.952,1.953,1.954,1.954,1.955,1.956,1.956,1.956,1.954,1.956,1.957,1.956,1.956,1.956,1.955,1.955,1.955,1.954,1.951,1.953,1.953,1.952,1.952,1.953,1.951,1.952,1.951,1.95,1.948,1.949,1.948,1.947,1.946,1.945,1.943,1.944,1.943,1.942,1.939,1.938,1.938,1.938,1.938,1.938,1.939,1.939,1.939,1.939,1.935,1.937,1.939,1.939,1.939,1.94,1.939,1.939,1.94,1.94,1.939,1.94,1.941,1.941,1.942,1.943,1.942,1.943,1.943,1.944,1.943,1.944,1.945,1.945,1.945,1.943,1.943,1.943,1.943,1.943,1.94,1.94,1.939,1.938,1.938,1.938,1.937,1.937,1.937,1.936,1.933,1.933,1.934,1.933,1.932,1.93,1.929,1.928,1.927,1.927,1.926,1.924,1.924,1.925,1.925,1.926,1.926,1.926,1.926,1.927,1.925,1.925,1.927,1.926,1.925,1.925,1.924,1.924,1.924,1.924,1.922,1.921,1.922,1.922,1.922,1.922,1.922,1.921,1.922,1.921,1.922,1.921,1.923,1.922,1.921,1.922,1.922,1.922,1.921,1.921,1.921,1.919,1.921,1.922,1.922,1.922,1.922,1.921,1.921,1.922,1.922,1.92,1.923,1.922,1.923,1.922,1.923,1.922,1.922,1.921,1.921,1.918,1.922,1.922,1.921,1.922,1.921,1.922,1.923,1.922,1.922,1.921,1.922,1.922,1.922,1.922,1.923,1.923,1.924,1.923,1.923,1.92,1.922,1.922,1.923,1.923,1.924,1.925,1.925,1.924,1.924,1.921,1.923,1.923,1.922,1.922,1.922,1.922,1.922,1.922,1.922,1.921,1.923,1.923,1.922,1.923,1.922,1.922,1.922,1.923,1.923,1.92,1.922,1.922,1.922,1.922,1.921,1.921,1.922,1.922,1.922,1.92,1.922,1.923,1.922,1.923,1.922,1.923,1.922,1.923,1.922,1.921,1.923,1.924,1.923,1.923,1.923,1.924,1.924,1.925,1.925,1.924,1.926,1.925,1.925,1.926,1.925,1.926,1.926,1.926,1.926,1.924,1.926,1.926,1.925,1.925,1.926,1.926,1.926,1.927,1.926,1.924,1.926,1.926,1.926,1.927,1.927,1.927,1.927,1.926,1.926,1.924,1.927,1.927,1.927,1.927,1.927,1.927,1.928,1.927,1.929,1.927,1.932,1.932,1.932,1.933,1.933,1.933,1.932,1.932,1.932,1.929,1.933,1.933,1.932,1.931,1.932,1.932,1.932,1.932,1.932,1.93,1.933,1.935,1.935,1.935,1.936,1.936,1.936,1.935,1.935,1.931,1.933,1.933,1.932,1.932,1.932,1.932,1.933,1.933,1.932,1.929,1.932,1.932,1.932,1.933,1.932,1.932,1.932,1.933,1.932,1.928,1.929,1.928,1.928,1.927,1.927,1.928,1.927,1.927,1.927,1.924,1.925,1.927,1.927,1.927,1.927,1.928,1.928,1.928,1.928,1.927,1.928,1.93,1.929,1.929,1.929,1.929,1.928,1.928,1.928,1.927,1.927,1.929,1.929,1.928,1.928,1.928,1.927,1.928,1.928,1.927,1.925,1.928,1.928,1.928,1.926,1.927,1.927,1.927,1.926,1.925,1.922,1.924,1.924,1.924,1.923,1.924,1.924,1.923,1.922,1.922,1.919,1.921,1.921,1.92,1.921,1.922,1.921,1.921,1.921,1.921,1.918,1.921,1.92,1.921,1.921,1.922,1.923,1.924,1.923,1.924,1.921,1.923,1.924,1.924,1.925,1.925,1.926,1.926,1.926,1.926,1.923,1.926,1.926,1.926,1.925,1.926,1.926,1.926,1.927,1.927,1.924,1.927,1.926,1.926,1.926,1.926]
Loading
---
config:
    xyChart:
        width: 1200
        height: 400
    themeVariables:
        xyChart:
            titleColor: "#222"
            backgroundColor: "#fff"
            xAxisLineColor: "#222"
            yAxisLineColor: "#222"
            plotColorPalette: "#FF7F0E,#1F77B4,#D62728,#2CA02C,#9467BD,#8C564B,#E377C2,#7F7F7F,#BCBD22,#17BECF"
---
xychart-beta
    title "operation_type=write"
    x-axis "Time, m" 0 --> 10
    y-axis "Latency, ms" 2 --> 4
    line [3.027,3,2.999,3.098,3.049,2.997,3.049,3.037,3.024,3.012,3,3.012,3.034,3.034,3.023,2.996,3.022,3.023,3.011,2.999,2.99,2.988,2.986,2.984,2.987,2.983,3.179,3.27,3.236,3.267,3.236,3.261,3.189,3.204,3.204,3.124,3.181,3.163,3.144,3.144,3.135,3.167,3.187,3.213,3.25,3.185,3.245,3.25,3.271,3.289,3.309,3.337,3.356,3.32,3.323,2.992,2.99,2.99,2.989,2.991,2.992,2.993,2.994,2.995,2.994,2.995,3.02,3.021,3.061,3.082,3.042,3.071,3.063,3.032,3,2.996,2.998,2.998,2.997,2.997,2.998,2.999,2.999,2.999,2.999,2.999,3.139,3.257,3.248,3.229,3.172,3.149,3.156,3.158,3.1,2.998,3.024,2.998,2.998,2.999,2.997,2.996,2.996,2.996,2.997,2.994,2.997,2.996,2.996,2.995,2.993,2.992,2.993,2.992,2.991,2.984,2.981,2.981,2.981,2.985,2.986,2.985,2.986,2.987,2.986,2.984,2.989,2.988,2.987,2.988,2.987,2.989,2.992,2.991,2.991,2.987,2.99,2.99,2.992,2.992,2.992,2.994,2.996,2.997,2.996,2.993,2.998,2.999,2.997,2.996,2.995,2.994,2.994,2.994,2.992,2.987,2.991,2.992,2.99,2.991,2.989,2.986,2.986,2.985,2.986,2.983,2.983,2.981,2.979,2.979,2.974,2.972,2.974,2.974,2.974,2.969,2.968,2.969,2.969,2.97,2.97,2.97,2.971,2.971,2.973,2.968,2.969,2.971,2.971,2.971,2.973,2.973,2.973,2.974,2.974,2.974,2.976,2.978,2.977,2.977,2.979,2.977,2.976,2.975,2.975,2.972,2.972,2.974,2.975,2.975,2.974,2.975,2.974,2.974,2.973,2.969,2.968,2.968,2.969,2.968,2.97,2.97,2.97,2.968,2.967,2.965,2.965,2.967,2.968,2.966,2.964,2.963,2.963,2.963,2.963,2.962,2.959,2.959,2.96,2.96,2.959,2.959,2.959,2.96,2.963,2.962,2.962,2.965,2.965,2.963,2.962,2.959,2.961,2.96,2.959,2.957,2.956,2.958,2.959,2.958,2.958,2.959,2.958,2.958,2.959,2.958,2.956,2.958,2.957,2.956,2.96,2.961,2.961,2.962,2.961,2.961,2.957,2.96,2.96,2.96,2.961,2.962,2.962,2.961,2.962,2.962,2.959,2.963,2.963,2.964,2.964,2.964,2.964,2.963,2.964,2.964,2.961,2.965,2.965,2.96,2.962,2.961,2.959,2.961,2.96,2.96,2.957,2.96,2.96,2.96,2.96,2.96,2.962,2.961,2.96,2.96,2.954,2.958,2.956,2.958,2.959,2.958,2.958,2.958,2.958,2.959,2.956,2.959,2.961,2.958,2.959,2.96,2.959,2.96,2.961,2.962,2.959,2.961,2.961,2.961,2.963,2.963,2.965,2.965,2.966,2.968,2.965,2.969,2.967,2.966,2.966,2.966,2.966,2.968,2.968,2.966,2.962,2.963,2.963,2.962,2.963,2.962,2.961,2.961,2.96,2.96,2.958,2.96,2.96,2.958,2.958,2.957,2.958,2.957,2.955,2.952,2.95,2.956,2.957,2.957,2.957,2.958,2.958,2.958,2.959,2.961,2.961,2.965,2.964,2.962,2.962,2.964,2.963,2.964,2.962,2.963,2.96,2.964,2.963,2.962,2.964,2.963,2.964,2.965,2.966,2.963,2.96,2.962,2.96,2.96,2.959,2.959,2.959,2.96,2.959,2.958,2.955,2.961,2.96,2.96,2.959,2.96,2.958,2.958,2.957,2.958,2.952,2.957,2.957,2.955,2.955,2.955,2.955,2.957,2.958,2.959,2.956,2.963,2.962,2.963,2.963,2.962,2.962,2.963,2.963,2.964,2.96,2.962,2.964,2.962,2.963,2.964,2.964,2.962,2.962,2.964,2.961,2.964,2.966,2.965,2.966,2.966,2.964,2.964,2.962,2.96,2.956,2.96,2.96,2.96,2.959,2.958,2.956,2.955,2.955,2.954,2.952,2.954,2.956,2.956,2.957,2.958,2.96,2.961,2.959,2.959,2.957,2.958,2.959,2.96,2.962,2.962,2.962,2.963,2.963,2.963,2.958,2.961,2.964,2.964,2.964,2.966,2.966,2.966,2.967,2.967,2.964,2.963,2.966,2.965,2.964,2.964,2.962,2.964,2.964,2.962,2.961,2.959,2.96,2.957,2.958,2.956,2.956,2.956,2.956,2.956,2.954,2.95,2.951,2.952,2.951,2.951,2.951,2.95,2.949,2.949,2.949,2.944,2.948,2.949,2.95,2.95,2.953,2.954,2.953,2.955,2.955,2.953,2.957,2.956,2.957,2.958,2.959,2.958,2.958,2.957,2.957,2.956,2.958,2.959,2.959,2.957,2.957,2.957,2.959,2.961,2.962,2.96,2.963,2.962,2.964,2.962,2.962]
Loading

@kprokopenko kprokopenko merged commit 81b0420 into master Jul 11, 2025
44 checks passed
@kprokopenko kprokopenko deleted the implicit_session branch July 11, 2025 12:14
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.

feat: implicit query session option for execute query without CreateSession/AttachStream hops
3 participants