Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add WithReaderLogContext, WithWriterLogContext options to Topic API #1642

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

qrort
Copy link
Collaborator

@qrort qrort commented Feb 10, 2025

Pull request type

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?

Logs written by background topic operations launched by StartWriter, StartReader, etc. can not be structured by client code in any way.

Issue Number: N/A

What is the new behavior?

This PR adds new reader and writer options, WithReaderLogContext and WithWriterLogContext, which can be used to provide a context.Context instance to be used in logs.

@qrort
Copy link
Collaborator Author

qrort commented Feb 10, 2025

draft for now, updating and writing tests

Copy link

github-actions bot commented Feb 10, 2025

github.com/ydb-platform/ydb-go-sdk/v3/topic/topicoptions

compatible changes

WithReaderLogContext: added
WithWriterLogContext: added

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

incompatible changes

TopicOnReaderClose: changed from func(*Topic, string, error) func(closeError error) to func(*Topic, *context.Context, string, error) func(closeError error)
TopicOnReaderCommit: changed from func(*Topic, *context.Context, string, int64, int64, int64, int64) func(error) to func(*Topic, *context.Context, *context.Context, string, int64, int64, int64, int64) func(error)
TopicOnReaderCommittedNotify: changed from func(*Topic, string, string, int64, int64, int64) to func(*Topic, *context.Context, string, string, int64, int64, int64)
TopicOnReaderError: changed from func(*Topic, string, error) to func(*Topic, *context.Context, string, error)
TopicOnReaderInit: changed from func(*Topic, string, TopicReadStreamInitRequestInfo) func(readerConnectionID string, _ error) to func(*Topic, *context.Context, string, TopicReadStreamInitRequestInfo) func(readerConnectionID string, _ error)
TopicOnReaderReadMessages: changed from func(*Topic, *context.Context, int, int, int) func(messagesCount int, topic string, partitionID int64, partitionSessionID int64, offsetStart int64, offsetEnd int64, freeBufferCapacity int, _ error) to func(*Topic, *context.Context, *context.Context, int, int, int) func(messagesCount int, topic string, partitionID int64, partitionSessionID int64, offsetStart int64, offsetEnd int64, freeBufferCapacity int, _ error)
TopicOnReaderReceiveDataResponse: changed from func(*Topic, string, int, TopicReaderDataResponseInfo) func(error) to func(*Topic, *context.Context, string, int, TopicReaderDataResponseInfo) func(error)
TopicOnReaderReconnect: changed from func(*Topic, error) func(error) to func(*Topic, *context.Context, error) func(error)
TopicOnReaderReconnectRequest: changed from func(*Topic, error, bool) to func(*Topic, *context.Context, error, bool)
TopicOnReaderSendCommitMessage: changed from func(*Topic, TopicReaderStreamSendCommitMessageStartMessageInfo) func(error) to func(*Topic, *context.Context, TopicReaderStreamSendCommitMessageStartMessageInfo) func(error)
TopicOnReaderSentDataRequest: changed from func(*Topic, string, int, int) to func(*Topic, *context.Context, string, int, int)
TopicOnReaderStart: changed from func(*Topic, int64, string, error) to func(*Topic, *context.Context, int64, string, error)
TopicOnReaderUnknownGrpcMessage: changed from func(*Topic, string, error) to func(*Topic, *context.Context, string, error)
TopicOnReaderUpdateToken: changed from func(*Topic, string) func(tokenLen int, _ error) func(error) to func(*Topic, *context.Context, string) func(logContext *context.Context, tokenLen int, _ error) func(error)
TopicOnWriterAfterFinishTransaction: changed from func(*Topic, error, string, string) func(closeError error) to func(*Topic, *context.Context, error, string, string) func(closeError error)
TopicOnWriterBeforeCommitTransactionStartInfo.Ctx: removed
TopicOnWriterClose: changed from func(*Topic, string, error) func(error) to func(*Topic, *context.Context, string, error) func(error)
TopicOnWriterCompressMessages: changed from func(*Topic, string, string, int32, int64, int, TopicWriterCompressMessagesReason) func(error) to func(*Topic, *context.Context, string, string, int32, int64, int, TopicWriterCompressMessagesReason) func(error)
TopicOnWriterInitStream: changed from func(*Topic, string, string, string) func(sessionID string, _ error) to func(*Topic, *context.Context, string, string, string) func(sessionID string, _ error)
TopicOnWriterReadUnknownGrpcMessage: changed from func(*Topic, string, string, error) to func(*Topic, *context.Context, string, string, error)
TopicOnWriterReceiveGRPCMessage: changed from func(*Topic, string, string, int, *github.com/ydb-platform/ydb-go-genproto/protos/Ydb_Topic.StreamWriteMessage_FromServer, error) to func(*Topic, *context.Context, string, string, int, *github.com/ydb-platform/ydb-go-genproto/protos/Ydb_Topic.StreamWriteMessage_FromServer, error)
TopicOnWriterReceiveResult: changed from func(*Topic, string, string, int64, TopicWriterResultMessagesInfoAcks) to func(*Topic, *context.Context, string, string, int64, TopicWriterResultMessagesInfoAcks)
TopicOnWriterReconnect: changed from func(*Topic, string, string, string, int) func(connectionResult error) func(error) to func(*Topic, *context.Context, string, string, string, int) func(connectionResult error) func(error)
TopicOnWriterSendMessages: changed from func(*Topic, string, string, int32, int64, int) func(error) to func(*Topic, *context.Context, string, string, int32, int64, int) func(error)
TopicOnWriterSentGRPCMessage: changed from func(*Topic, string, string, int, *github.com/ydb-platform/ydb-go-genproto/protos/Ydb_Topic.StreamWriteMessage_FromClient, error) to func(*Topic, *context.Context, string, string, int, *github.com/ydb-platform/ydb-go-genproto/protos/Ydb_Topic.StreamWriteMessage_FromClient, error)
TopicReaderOnUpdateOffsetsInTransactionStartInfo.Context: removed
TopicReaderPopBatchTxStartInfo.Context: removed
TopicReaderStreamPopBatchTxStartInfo.Context: removed
TopicReaderTransactionCompletedStartInfo.Context: removed
TopicReaderTransactionRollbackStartInfo.Context: removed

compatible changes

OnReadUnknownGrpcMessageInfo.LogContext: added
OnReadUpdateTokenMiddleTokenReceivedInfo.LogContext: added
OnReadUpdateTokenStartInfo.LogContext: added
TopicOnWriterAfterFinishTransactionStartInfo.LogContext: added
TopicOnWriterBeforeCommitTransactionStartInfo.LogContext: added
TopicOnWriterReadUnknownGrpcMessageInfo.LogContext: added
TopicReaderCloseStartInfo.LogContext: added
TopicReaderCommitStartInfo.LogContext: added
TopicReaderCommittedNotifyInfo.LogContext: added
TopicReaderErrorInfo.LogContext: added
TopicReaderInitStartInfo.LogContext: added
TopicReaderOnUpdateOffsetsInTransactionStartInfo.LogContext: added
TopicReaderPopBatchTxStartInfo.LogContext: added
TopicReaderReadMessagesStartInfo.LogContext: added
TopicReaderReceiveDataResponseStartInfo.LogContext: added
TopicReaderReconnectRequestInfo.LogContext: added
TopicReaderReconnectStartInfo.LogContext: added
TopicReaderSendCommitMessageStartInfo.LogContext: added
TopicReaderSentDataRequestInfo.LogContext: added
TopicReaderStartInfo.LogContext: added
TopicReaderStreamCommitInfo.LogContext: added
TopicReaderStreamPopBatchTxStartInfo.LogContext: added
TopicReaderTransactionCompletedStartInfo.LogContext: added
TopicReaderTransactionRollbackStartInfo.LogContext: added
TopicWriterCloseStartInfo.LogContext: added
TopicWriterCompressMessagesStartInfo.LogContext: added
TopicWriterInitStreamStartInfo.LogContext: added
TopicWriterReceiveGRPCMessageInfo.LogContext: added
TopicWriterReconnectStartInfo.LogContext: added
TopicWriterResultMessagesInfo.LogContext: added
TopicWriterSendMessagesStartInfo.LogContext: added
TopicWriterSentGRPCMessageInfo.LogContext: added

summary

Base version: v3.99.11-0.20250213105934-e27fd6546d5f (master)
Cannot suggest a release version.
Can only suggest a release version when compared against the most recent version of this major: v3.99.10.

@codecov-commenter
Copy link

codecov-commenter commented Feb 10, 2025

Codecov Report

Attention: Patch coverage is 78.78788% with 28 lines in your changes missing coverage. Please review.

Project coverage is 71.15%. Comparing base (e5c21a8) to head (e3253ee).

Files with missing lines Patch % Lines
log/topic.go 62.06% 11 Missing ⚠️
...al/topic/topicreaderinternal/stream_reader_impl.go 73.33% 2 Missing and 2 partials ⚠️
topic/topicoptions/topicoptions_reader.go 0.00% 4 Missing ⚠️
topic/topicoptions/topicoptions_writer.go 0.00% 4 Missing ⚠️
...al/topic/topicwriterinternal/writer_reconnector.go 80.00% 2 Missing and 1 partial ⚠️
...al/topic/topicreaderinternal/stream_reconnector.go 85.71% 1 Missing ⚠️
.../topic/topicwriterinternal/writer_single_stream.go 90.00% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #1642      +/-   ##
==========================================
- Coverage   71.33%   71.15%   -0.19%     
==========================================
  Files         375      375              
  Lines       38817    38864      +47     
==========================================
- Hits        27691    27654      -37     
- Misses      10000    10067      +67     
- Partials     1126     1143      +17     
Flag Coverage Δ
experiment 70.56% <78.78%> (-0.09%) ⬇️
go-1.22.x 68.14% <78.78%> (-0.22%) ⬇️
go-1.23.x 71.14% <78.78%> (-0.17%) ⬇️
integration 51.78% <78.03%> (-0.58%) ⬇️
macOS 40.94% <36.36%> (-0.01%) ⬇️
ubuntu 71.15% <78.78%> (-0.19%) ⬇️
unit 40.96% <36.36%> (+0.01%) ⬆️
windows 40.92% <36.36%> (-0.02%) ⬇️
ydb-24.1 51.66% <78.03%> (-0.26%) ⬇️
ydb-24.2 51.66% <78.03%> (-0.56%) ⬇️
ydb-24.3 51.71% <78.03%> (-0.56%) ⬇️
ydb-nightly 70.56% <78.78%> (-0.09%) ⬇️

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.

Copy link

github-actions bot commented Feb 10, 2025

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

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.003,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,99.997,99.997,99.997,99.997,99.997,99.997,99.993,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.993,99.997,99.997,99.997,99.997,99.997,99.997,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.003,100,100.003,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,99.997,100,99.997,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.003,100,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,99.997,100,100,99.997,100,100,100,100,99.997,100.003,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,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.003,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,99.997,100,100,99.997,100,99.997,100,100,100,100.003,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100.003,100,99.997,100,100,100,100,100.003,100,100,100,100,100.003,100.003,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,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,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.003,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100.003,100,100,100,100,99.997,99.993,99.993,99.993,99.993,99.997,99.993,99.99,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.99,99.993,99.993,99.993,99.993,99.993,100,100,100,100,100,99.997,100,100,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,100,100.003,100,100.003,99.997,100,100,100,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,99.993,100,99.997,100.003,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.003,100,100.003,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,99.997,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" 833 --> 1113
    line [926.146,959.444,992.904,1000.034,1000.103,1000.034,1000.069,1000.103,1000.034,1000.069,1000.069,1000.103,1000,1000.069,1000.103,1000.034,1000.069,1000.034,1000.069,1000.034,1000.069,988.379,1000.103,1000.034,1000.034,1000.034,1000.069,1000.069,1000.069,1000.034,1000.069,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000,999.966,1000.034,999.966,1000,1000,1000,1000,1000.034,1000.034,999.931,1011.655,1000,1000.069,1000.034,1000.034,999.931,1000.034,1000.034,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000,999.966,1000,1000,1000,1000.034,1000.034,1000,1000,1000,999.966,1000,1000.069,1000.034,1000,999.966,999.966,1000,1000.103,999.966,1000,1000,999.966,999.966,1000,1000,1000,1000.034,1000,1000,1000.034,1000.034,1000.034,999.966,1000.034,1000,1000,1000,1000,1000,999.931,1000.069,999.931,1000,1000,1000.069,1000.034,1000,1000,999.966,1000,1000.034,1000,1000,1000,999.862,999.966,1000,1000,1000,999.966,1000,1000.034,1000,999.966,1000,1000,1000,1000.034,1000.103,1000,1000,1000.034,1000,1000,999.931,999.931,1000,999.966,999.931,999.897,999.931,999.966,999.897,1000.103,999.931,999.966,999.966,999.966,999.931,999.931,999.966,999.931,999.966,999.966,999.897,999.931,999.931,999.897,999.931,1000,999.931,999.931,999.931,1000,1000,999.897,1000,1000,1000.034,1000.034,1000,1000.069,1000,1000,999.828,999.966,1000,1000.034,1000,999.966,999.931,1000,1000,1000.069,1000.034,1000,1000.034,1000,1000.034,999.966,1000,1000,999.897,1000,1000.069,999.966,1000.034,1000,999.966,1000,999.966,999.966,1000.034,1000.172,1000,1000.034,1000,1000,1000.034,1000.069,1000.034,999.966,1000,1000,1000,1000,1000,1000.034,999.966,999.931,1000.034,1000.138,1000.034,1000,1000.034,1000,1000,1000.069,1000,1000.034,1000.034,1000,1000,1000.034,999.966,1000,999.966,1000.034,1000,999.862,1000.069,1000,1000,1000,1000.034,1000.034,1000,1000.069,1000.138,999.966,999.966,999.897,1000,1000.034,1000,1000.034,999.966,1000,1000.034,1000,999.966,1000,1000,999.966,1000,1000.069,1000,1000,1000.138,999.966,1000.034,1000.034,1000.034,999.966,1000.034,999.966,1000.034,1000,1000.034,1000,1000.069,1000,999.966,1000.034,999.966,1000.034,1000.034,999.966,1000.034,1000.069,1000.034,1000.034,1000.069,1000.034,999.966,1000,1000.034,1000,1000.034,999.966,999.966,1000.034,1000.034,999.966,1000.034,1000,1000,999.897,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000,999.966,1000.034,999.897,1000,1000,1000,999.966,1000,1000.034,1000,1000.034,999.966,1000,1000.034,1000.034,999.966,1000,1000,1000,1000,999.966,1000.103,1000,999.966,1000,999.931,1000.034,1000.034,999.966,1000.034,1000.034,1000.103,1000,1000,1000,1000.034,1000,1000,1000,999.966,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000.034,1000.069,1000.034,1000.034,1000.034,1000,1000.069,1000,1000,1000.034,1000,999.966,999.966,1000,1000.034,1000,1000,999.966,1000,1000,1000,999.966,1000.069,1000,999.966,1000.034,1000.034,1000,1000.034,999.966,999.931,1000,999.966,1000.034,1000,1000.034,1000.034,1000.034,1000.034,1000.069,1000,1000.069,1000.034,1000,1000.034,1000.034,1000.034,1000,1000,1000,1000.034,999.931,1000.034,1000,999.966,999.862,1000.034,999.931,1000.034,1000.034,999.966,1000.034,999.966,1000,1000,999.897,999.966,999.966,999.966,1000,1000,999.966,1000.034,1000.034,1000.034,1000.103,1000,1000.069,1000.103,1000.034,1000.103,1000.034,1000.103,1000.069,1000.207,1000.034,1000.103,1000.069,1000.103,1000.069,1000.069,1000.138,1000.069,1000.034,1000.138,1000.069,1000.103,1000.034,1000.103,1000.034,1000.069,1000.034,1000,1000,999.966,1000.103,1000,1000,1000.034,999.931,999.966,1000.034,1000.034,999.966,1000.034,1000.069,999.966,999.966,1000.034,999.966,999.966,1000.034,1000.034,1000.034,1000.034,999.966,1000,999.966,1000.069,1000.034,1000,1000.034,1000.034,1000.034,999.966,1000.034,1000,1000.034,1000.034,1000.069,999.966,1000,1000.034,999.897,999.966,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000.034,1000,1000,1000,1000.034,1000,1000,1000,1000.034,1000,1000,1000.034,1000.069,1000.138,999.966,1000,1000,1000,1000.034,1000,1000,1000,1000,999.966,1000,1000,1000,1000,999.897,999.966,1000.034,1000,1000,1000,1000,1000,1000,1000,1000,1000.034,999.966,999.931,999.966,1000.034,974.3]
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 --> 112
    line [92.57,95.903,99.237,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,98.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,101.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,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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,97.43]
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 --> 11
    line [7.311,7.522,7.488,7.394,7.393,7.391,7.376,7.349,7.267,7.243,6.958,6.974,6.932,6.924,6.879,6.819,6.779,6.72,6.459,6.362,5.869,6.284,9.374,9.373,9.306,9.191,9.089,8.955,8.686,8.534,6.959,6.766,6.693,6.698,6.696,6.702,6.697,6.697,6.694,6.695,6.353,6.52,6.433,6.398,6.397,6.399,6.395,6.404,6.31,6.352,4.852,3.792,3.739,3.635,3.626,3.623,3.602,3.627,3.595,3.647,3.602,3.649,3.665,3.662,3.666,3.674,3.671,3.668,3.658,3.672,3.609,3.668,3.693,3.691,3.7,3.702,3.711,3.753,3.726,3.745,3.684,3.732,4.17,4.202,4.252,4.239,4.204,4.271,4.144,4.166,4.026,4.107,4.154,4.144,4.164,4.169,4.152,4.176,4.148,4.168,4.002,4.055,4.06,4.048,4.054,4.041,3.99,3.996,3.979,4.17,4.08,3.745,3.742,3.715,3.725,3.732,3.698,3.704,3.687,3.703,3.639,3.671,3.697,3.69,3.693,3.694,3.682,3.684,3.672,3.677,3.613,3.63,3.658,3.68,3.672,3.666,3.662,3.659,3.527,3.535,3.472,3.487,3.604,3.599,3.593,3.589,3.588,3.587,3.564,3.554,3.476,3.486,3.534,3.529,3.539,3.537,3.536,3.531,3.512,3.514,3.484,3.442,3.456,3.457,3.443,3.423,3.414,3.393,3.371,3.341,3.312,3.122,3.227,3.237,3.232,3.212,3.2,3.196,3.204,3.19,3.126,3.031,3.119,3.084,3.099,3.085,3.196,3.238,3.222,3.212,3.222,3.167,3.265,3.28,3.3,3.318,3.331,3.326,3.332,3.326,3.346,3.264,3.383,3.389,3.395,3.404,3.405,3.433,3.458,3.461,3.5,3.609,3.676,3.685,3.691,3.646,3.633,3.646,3.648,3.638,3.654,3.588,3.619,3.615,3.609,3.608,3.616,3.612,3.601,3.593,3.606,3.51,3.56,3.564,3.558,3.575,3.547,3.529,3.518,3.488,3.334,3.224,3.274,3.27,3.243,3.24,3.22,3.212,3.208,3.174,3.191,3.137,3.208,3.221,3.224,3.212,3.206,3.194,3.184,3.152,3.15,3.05,3.141,3.136,3.112,3.115,3.102,3.093,3.093,3.059,3.074,2.996,3.261,3.293,3.288,3.287,3.289,3.283,3.28,3.252,3.261,3.169,3.208,3.196,3.196,3.209,3.221,3.21,3.198,3.176,3.181,3.072,3.142,3.136,3.115,3.123,3.116,3.09,3.083,3.084,3.107,2.973,2.979,2.978,2.977,2.977,2.98,2.982,2.984,2.984,2.989,2.981,2.996,2.997,2.995,2.994,2.993,2.995,2.994,2.993,2.994,2.984,2.996,2.997,2.996,2.998,3.002,3.012,2.999,2.997,3.019,2.992,3.171,3.197,3.204,3.197,3.195,3.185,3.191,3.171,3.195,3.091,3.188,3.2,3.193,3.194,3.203,3.208,3.212,3.216,3.233,3.139,3.259,3.268,3.279,3.272,3.276,3.284,3.287,3.314,3.346,3.168,3.215,3.216,3.216,3.204,3.202,3.187,3.169,3.138,3.165,3.086,3.158,3.221,3.239,3.224,3.24,3.251,3.231,3.414,3.431,3.344,3.387,3.41,3.406,3.413,3.421,3.415,3.369,3.336,3.358,3.296,3.357,3.404,3.414,3.421,3.423,3.426,3.429,3.401,3.379,3.324,3.292,3.345,3.346,3.35,3.338,3.336,3.122,3.121,3.121,3.07,3.028,3.096,3.083,3.06,3.062,3.054,3.052,3,3.009,2.99,2.984,2.999,2.998,2.998,2.998,2.998,2.999,3,2.998,3,2.989,3.061,3.05,3.058,3.071,3.077,3.063,3.08,3.077,3.114,3.154,3.31,3.33,3.338,3.374,3.392,3.403,3.393,3.393,3.389,3.31,3.393,3.394,3.411,3.407,3.401,3.412,3.411,3.38,3.394,3.288,3.366,3.365,3.355,3.352,3.352,3.33,3.339,3.312,3.237,3.097,3.196,3.195,3.16,3.149,3.143,3.16,3.157,3.147,3.15,3.053,3.174,3.16,3.169,3.179,3.173,3.172,3.175,3.158,3.174,3.072,3.173,3.175,3.183,3.18,3.187,3.169,3.161,3.155,3.172,3.05,3.146,3.142,3.155,3.166,3.178,3.209,3.223,3.225,3.251,3.153,3.363,3.487,3.492,3.495,3.509,3.508,3.512,3.498,3.512,3.447,3.51,3.512,3.521,3.531,3.544,3.553,3.556,3.538,3.552,3.502,3.556,3.552,3.561,3.553,3.537,3.532,3.52,3.496,3.505,3.333,3.265,3.267,3.261,3.251,3.246,3.248,3.26,3.25,3.268,3.196,3.277,3.283,3.273,3.264,3.253,3.243,3.24,3.242,3.255,3.179,3.25,3.261,3.257,3.248,3.249,3.27,3.276,3.248,3.261,3.187,3.191]
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 --> 11
    line [7.856,8.463,8.386,8.163,8.163,8.163,8.11,8.038,7.746,7.714,7.392,7.412,7.394,7.401,7.379,7.361,7.356,7.307,7.177,7.144,6.899,7.128,9.75,9.792,9.783,9.651,9.625,9.583,9.265,9.138,7.373,7.313,7.262,7.255,7.26,7.257,7.255,7.25,7.247,7.268,7.135,7.161,7.088,7.092,7.069,7.059,7.048,7.048,6.923,7.031,5.86,4.593,4.523,4.42,4.377,4.405,4.377,4.397,4.391,4.469,4.4,4.479,4.487,4.459,4.468,4.477,4.467,4.481,4.486,4.5,4.385,4.481,4.514,4.51,4.519,4.519,4.524,4.539,4.479,4.51,4.469,4.55,5.115,5.194,5.194,5.194,5.167,5.296,5.028,5.027,4.89,4.922,4.948,4.957,4.966,4.975,4.984,4.975,4.951,4.967,4.897,4.917,4.925,4.935,4.96,4.976,4.969,4.962,4.953,5.237,5.109,4.719,4.705,4.703,4.701,4.698,4.68,4.667,4.672,4.7,4.635,4.659,4.681,4.667,4.632,4.614,4.605,4.616,4.609,4.615,4.55,4.57,4.596,4.596,4.55,4.532,4.527,4.491,4.247,4.226,4.102,4.131,4.318,4.367,4.367,4.322,4.38,4.38,4.362,4.355,4.244,4.264,4.354,4.368,4.426,4.444,4.444,4.404,4.378,4.367,4.337,4.289,4.349,4.391,4.354,4.325,4.337,4.312,4.308,4.269,4.218,3.995,4.051,4.062,4.063,3.998,3.998,3.992,3.996,4.013,3.985,3.96,3.98,3.965,3.966,3.961,3.991,4.046,4.024,4.024,4.011,3.988,4.022,4.056,4.087,4.124,4.17,4.186,4.186,4.17,4.208,4.118,4.284,4.284,4.301,4.33,4.34,4.392,4.41,4.427,4.481,4.622,4.672,4.706,4.707,4.655,4.602,4.616,4.613,4.636,4.643,4.592,4.611,4.602,4.573,4.569,4.549,4.577,4.57,4.543,4.557,4.404,4.465,4.475,4.455,4.471,4.404,4.392,4.364,4.327,4.068,3.996,4.024,4.013,3.994,3.999,3.996,3.997,3.991,3.986,3.991,3.983,3.997,4.036,4.035,4.036,4,3.997,4.024,3.998,4.035,3.986,4.013,3.993,3.991,3.993,3.989,3.993,3.989,3.985,3.996,3.968,4.169,4.215,4.213,4.2,4.177,4.2,4.198,4.156,4.165,4.028,4.082,4.095,4.093,4.067,4.154,4.13,4.139,4.105,4.105,4,4.108,4.098,4.098,4.098,4.075,4.075,4.1,4.065,4.114,3.959,3.976,3.972,3.972,3.975,3.98,3.983,3.993,3.994,4,3.99,4.037,4.061,4.107,4.012,4,3.996,3.994,3.998,4.013,3.989,4.061,4.048,4.072,4.083,4.062,4.025,4,3.994,3.998,3.981,4.138,4.173,4.183,4.152,4.128,4.095,4.079,4.066,4.089,4,4.101,4.052,4.065,4.054,4.055,4.079,4.054,4.014,4.042,3.983,4.041,4.014,4,4.014,4.042,4.042,4.069,4.093,4.095,3.982,3.993,3.99,3.993,3.987,3.987,3.983,3.977,3.973,3.975,3.959,3.977,3.992,3.996,4,4,4.038,4.038,4.293,4.333,4.205,4.272,4.325,4.318,4.337,4.371,4.356,4.299,4.287,4.283,4.193,4.293,4.33,4.361,4.365,4.375,4.375,4.368,4.298,4.28,4.244,4.205,4.222,4.211,4.227,4.216,4.211,3.995,3.993,3.998,3.989,3.983,3.989,3.983,3.972,3.976,3.978,3.978,3.972,3.974,3.952,3.946,3.983,3.983,3.987,3.985,3.987,3.989,3.983,3.979,3.975,3.967,3.996,3.99,3.991,3.991,3.993,3.983,3.982,3.978,3.982,3.993,4.181,4.226,4.217,4.259,4.238,4.233,4.239,4.236,4.233,4.014,4.127,4.101,4.127,4.13,4.143,4.177,4.198,4.16,4.152,3.999,4.145,4.144,4.108,4.076,4.075,4.073,4.106,4.083,4.034,3.979,3.995,3.999,3.994,3.994,3.996,3.995,3.995,3.993,3.992,3.982,4.025,4.025,4.025,4.049,4.061,4.013,4.037,4.06,4.06,3.989,4.048,4.071,4.094,4.118,4.11,4.108,4.11,4.063,4.1,3.992,4.058,4.069,4.114,4.092,4.103,4.156,4.154,4.174,4.189,4.059,4.326,4.514,4.51,4.514,4.539,4.543,4.54,4.536,4.55,4.471,4.519,4.537,4.55,4.536,4.556,4.574,4.561,4.542,4.593,4.52,4.549,4.538,4.547,4.555,4.564,4.565,4.566,4.535,4.545,4.333,4.195,4.195,4.163,4.105,4.104,4.114,4.115,4.125,4.138,4.1,4.212,4.218,4.224,4.207,4.18,4.196,4.157,4.091,4.132,4.091,4.165,4.187,4.157,4.105,4.115,4.135,4.163,4.137,4.135,4.065,4.078]
Loading

Copy link

github-actions bot commented Feb 10, 2025

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

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.003,99.993,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,100,99.997,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,99.997,100,100,100,100,100,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.003,100,100,100,100,100,100,100,99.997,100,100,100,100,99.997,100,100,99.997,99.997,100,100,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.003,100,100,100,100,100,100,100,100,100,100,100,100.003,100.003,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,100,100,99.997,99.997,100,100,100,99.997,100.003,100,100,100,100,100,99.997,100,100.003,100,100.003,99.997,100,100,100,99.997,100,100.003,100,100,100,100,100.003,100.003,100.003,100,100,100.003,100.003,99.997,99.997,100,100,100,99.997,100.003,100,99.997,100,99.997,100.007,100,100,100.003,100.003,100,99.997,99.997,99.997,100,100,99.997,99.997,99.997,100,100,99.997,100,100.003,100.003,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100.003,100,100,100,100.003,100.003,100,100,100,100.003,99.997,100,100,99.997,100,100,99.997,100.003,100,100,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100,100,100,100,100,99.997,100.003,100,100,100.003,100.003,100,100.003,99.997,100,100,100,100,100.003,99.997,100,100.003,100,100,100,100,99.997,100,100,100,100.003,100,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100,100.003,99.997,100.003,100,100.003,100,100,100,100,100.003,100,100,100,99.993,100,100,100,100.003,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,100.003,100.003,99.997,99.997,100,100,100,100,100,100,100,99.997,100,99.997,100,100,100,99.997,100.003,100,100,100,100.003,100,100,100,100,100,100,99.997,99.997,100.003,100.003,100,100,100,100,100,100,100,100.003,100,100.003,100,99.997,100,100.003,100,100,100,100,99.997,100,100,100,100,100,99.997,100,100.003,100,100,100,100.003,100,99.997,100,100,99.997,100,100,100,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100.003,100,99.997,100,100.003,100,100,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100,100,100,100,99.997,100,99.997,100,100,100,100.003,100,100,100,100,100,100,100,99.997,100,100,100,99.997,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100,99.997,100,100.007,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,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" 846 --> 1105
    line [940.465,973.833,1000,1000.034,1000.103,1000,999.966,1000,999.966,1000.069,999.966,999.931,1000.103,1000.034,1000,1000.034,1000,1000,1000.034,1000.069,1000,999.828,1000.034,1000.034,999.931,999.966,1000,999.966,1000,1000.034,1000,999.966,1000,1000,1000,1000.034,1000,1000.034,999.931,1000,1000.069,999.966,1000,1000.069,999.966,999.931,1000,999.966,999.966,999.966,1000.172,999.931,999.966,1000.034,1000.034,1000,1000.034,1000,1000,999.966,1000,999.966,999.966,1000,1000,1000,999.966,1000.034,1000,999.966,1000,1000.034,999.966,1000.069,1000.069,1000,999.966,1000.034,1000.034,999.966,996.379,1000,1000.069,1000.034,1000.034,1000.034,1000.034,1000,1000.034,1000,1000,1000.034,1000.034,1000.069,1000.069,1000.034,1000.069,1000.069,1000.034,1000.034,1000.069,1000.069,1000.034,1000,1000.034,1000.069,1000,1000.069,1000.069,1003.69,1000.034,999.966,999.966,1000.034,999.966,999.931,1000.034,999.966,1000,1000.034,999.966,1000,999.931,999.966,999.897,999.862,999.931,1000,1000,999.931,999.793,999.966,1000.034,1000,1000,999.966,1000,999.828,1000,1000.034,999.69,1000.034,999.966,1000,1000.069,1000,1000.034,1000.034,1000.034,1000.069,1000.034,1000.034,1000.034,1000.138,1000.103,1000.069,1000.034,999.931,1000.069,1000.207,1000.034,1000,1000.034,1000,1000.034,1000,1000.138,1000,1000,1000.31,1000,1000,1000,999.966,1000,1000,1000.034,1000,999.966,1000,999.931,1000,1000,1000.034,1000,999.966,1000.103,999.966,1000,999.966,1000,1000,1000.034,1000,999.966,1000.034,999.966,1000,1000,999.966,1000,1000,1000.034,1000,1000,1000,1000,1000.034,999.966,1000.034,1000,1000,1000,1000,1000,1000,999.897,999.966,1000.034,1000,999.966,1000,1000,1000.034,1000,1000.069,1000,1000.034,1000,1000.034,1000.034,999.966,1000,1000.034,999.966,1000,999.966,1000.034,1000.069,1000,1000,999.966,1000,1000,1000,1000.069,1000.034,999.966,999.931,1000,999.931,1000,1000,1000,1000,999.966,999.966,1000.034,999.966,1000,1000.034,999.966,1000,1000.034,999.966,1000.034,999.966,1000,999.966,1000,1000.034,1000,1000.034,999.966,1000.069,999.966,1000,1000,1000,1000.069,999.931,1000,1000,1000,1000,1000.069,999.966,999.966,999.966,999.966,1000,1000,999.966,1000.034,1000,1000,1000,1000.034,1000,999.966,999.966,1000,1000.034,1000,1000,1000.069,1000.034,1000.034,1000,1000.103,1000,1000,999.966,1000.034,999.966,1000.034,1000.069,1000.034,1000,1000.034,999.966,1000,999.966,1000,1000,1000,999.966,1000,1000,1000,1000,1000,999.966,1000.034,1000,999.966,1000,1000,1000,999.966,1000,1000.034,999.966,1000,1000,1000,999.966,1000,999.966,1000.034,1000,1000.034,1000,1000,1000,1000,1000,1000.034,1000.034,1000,1000,1000.069,1000,999.966,1000.034,1000,999.966,1000,1000.034,999.966,999.966,1000.069,1000.034,1000,1000,1000.034,1000,1000.034,1000,1000.034,1000.034,999.966,1000.034,1000,1000,1000,1000.034,1000,1000.034,999.966,999.931,1000,999.966,1000.034,1000,1000.069,999.966,1000,1000,1000.069,999.966,999.966,1000,999.966,999.966,1000.034,1000.034,1000,1000,999.966,1000.034,1000,1000,1000.034,1000,999.966,999.966,999.966,1000.034,1000.034,999.966,1000,1000.034,1000,999.966,1000.034,1000.034,1000.069,999.966,1000,999.966,1000,1000.034,1000.034,1000,999.966,999.897,1000,1000,1000,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,1000,999.966,1000,999.966,999.966,999.931,999.931,999.966,1000,1000,999.966,999.966,1000,999.966,999.966,1000.103,1000,999.966,1000,1000.034,999.966,1000.034,1000,1000,1000.069,1000.034,999.931,1000.034,1000,1000.069,1000,1000,1000,1000.034,1000.069,1000.034,1000.069,999.966,1000.069,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000.069,999.966,1000.034,1000.034,999.966,1000,1000,999.966,1000,1000,999.966,1000,999.966,1000,999.966,1000,1000,1000,1000,999.966,1000.034,999.966,1000.034,999.966,999.966,1000,1000,1000,1000,1000,1000.034,1000,999.966,1000,1000,1000,1000,999.931,1000.069,1000,1000.034,1000,1000,1000.069,1000.034,1000,999.966,1000.034,1000.034,1000,1000,999.966,1000.034,1000,1000.034,999.966,999.966,1000,999.966,1000,1000,1000.069,1000,1000.034,1000,1000,1000,999.931,1000.034,999.966,1000.034,1000,1000,999.931,999.966,1000.034,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" 84 --> 111
    line [94.047,97.38,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.655,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.345,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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,99.993,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.395,2.458,2.387,2.277,2.285,2.298,2.316,2.338,2.351,2.375,2.347,2.443,2.454,2.462,2.474,2.478,2.485,2.495,2.476,2.504,2.847,2.903,2.927,2.927,2.928,2.933,2.933,2.933,2.937,2.938,2.913,2.938,2.952,2.963,2.963,2.961,2.959,2.953,2.951,2.946,2.898,2.904,2.938,2.941,2.945,2.948,2.944,2.949,2.939,2.596,2.544,2.52,2.549,2.55,2.546,2.54,2.532,2.528,2.519,2.48,2.46,2.451,2.468,2.456,2.448,2.448,2.446,2.444,2.44,2.415,2.41,2.349,2.365,2.352,2.336,2.326,2.31,2.301,2.285,2.27,2.428,2.723,2.748,2.767,2.766,2.77,2.771,2.775,2.777,2.763,2.796,2.766,2.784,2.784,2.797,2.797,2.799,2.801,2.8,2.789,2.811,2.778,2.799,2.797,2.803,2.819,2.819,2.822,2.818,2.696,2.426,2.398,2.434,2.435,2.437,2.433,2.432,2.435,2.445,2.516,2.635,2.742,2.836,2.886,2.921,2.957,2.986,3.026,3.082,3.121,3.201,3.3,3.448,3.492,3.544,3.564,3.599,3.627,3.66,3.676,3.696,3.815,3.822,3.82,3.818,3.816,3.815,3.81,3.776,3.682,3.59,3.48,3.398,3.329,3.255,3.165,3.079,3.009,2.981,2.949,2.889,2.804,2.76,2.684,2.625,2.557,2.477,2.362,2.221,2.124,1.994,1.994,1.995,1.995,1.996,1.996,1.997,1.997,1.997,1.997,1.996,1.997,1.999,1.998,1.998,1.998,1.998,1.998,2,2.007,2.016,2.054,2.077,2.091,2.101,2.113,2.114,2.133,2.137,2.13,2.121,2.169,2.2,2.197,2.192,2.199,2.196,2.215,2.214,2.226,2.235,2.261,2.289,2.285,2.311,2.371,2.373,2.369,2.367,2.354,2.326,2.331,2.326,2.322,2.32,2.313,2.299,2.288,2.287,2.272,2.23,2.214,2.237,2.235,2.23,2.233,2.224,2.215,2.211,2.179,2.153,2.206,2.224,2.189,2.098,2.088,2.089,2.088,2.088,2.074,2.047,2.075,2.09,2.081,2.075,2.082,2.078,2.067,2.054,2.031,2.015,2.011,2.044,2.041,2.026,2.02,2.034,2.004,2,1.997,1.992,1.992,1.993,1.993,1.993,1.993,1.992,1.992,1.992,1.991,1.989,1.988,1.989,1.989,1.989,1.989,1.989,1.989,1.989,1.988,1.986,1.986,1.987,1.987,1.987,1.986,1.986,1.986,1.986,1.986,1.985,1.986,1.987,1.987,1.987,1.987,1.987,1.988,1.988,1.989,1.988,1.99,1.993,1.994,1.995,1.995,1.996,1.996,1.996,1.997,1.995,1.997,1.998,2,2,2,1.999,2,2.001,2.003,1.998,1.999,2.004,2.001,2,2.02,2.051,2.052,2.063,2.067,2.013,1.999,1.999,1.999,1.999,1.999,1.999,1.999,1.999,1.999,1.996,1.998,1.997,1.999,1.999,1.999,1.999,1.999,1.999,1.999,1.998,1.999,2.008,2.037,2.009,1.998,1.997,1.998,1.997,1.998,1.996,1.998,1.997,1.998,1.998,1.998,1.998,1.998,1.999,1.998,1.996,1.997,1.997,1.999,2,2,2.014,2.018,2.012,2,1.999,1.998,1.997,1.998,1.999,1.999,1.998,1.998,1.998,1.998,1.997,1.998,1.997,1.998,1.999,1.999,1.999,1.998,1.998,1.998,1.997,1.997,1.996,1.997,1.997,1.996,1.996,1.996,1.996,1.996,1.995,1.996,1.996,1.997,1.997,1.997,1.997,1.997,1.997,1.997,1.995,1.996,1.995,1.995,1.995,1.995,1.995,1.995,1.995,1.995,1.995,1.993,1.993,1.994,1.994,1.995,1.995,1.996,1.995,1.996,1.996,1.995,1.996,1.997,1.997,1.997,1.997,1.998,1.998,1.998,1.998,1.998,1.998,2,2,2.006,2,1.999,2.005,2.044,2.054,2.044,2.045,2.07,2.069,2.062,2.053,2.064,2.04,2.026,2.031,2.012,2.017,2.036,2.04,2.038,2.026,2.046,2.056,2.065,2.052,2.043,2.061,2.076,2.067,2.066,2.067,2.056,2.022,2.018,2.02,2.023,2.035,2.075,2.086,2.086,2.085,2.109,2.124,2.106,2.102,2.098,2.098,2.123,2.127,2.133,2.165,2.159,2.149,2.141,2.123,2.098,2.088,2.102,2.1,2.097,2.1,2.103,2.089,2.095,2.059,2.018,2.008,2.013,2.002,2,1.999,1.999,1.998,1.998,1.997,1.997,1.998,1.999,1.998,1.996,1.997,1.998,1.998,2,2.001,2.006,2.077,2.126,2.141,2.145,2.14,2.14,2.13,2.15,2.158,2.157,2.223,2.27,2.288,2.292,2.296,2.3,2.304,2.317,2.327,2.308,2.35]
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 [3.247,3.319,3.204,3,3.087,3.119,3.174,3.22,3.244,3.31,3.311,3.435,3.45,3.46,3.468,3.521,3.546,3.556,3.514,3.561,3.95,4.104,4.18,4.204,4.235,4.255,4.235,4.245,4.25,4.231,4.173,4.241,4.304,4.367,4.362,4.339,4.305,4.246,4.241,4.211,3.995,4.037,4.14,4.186,4.123,4.125,4.125,4.158,4.14,3.719,3.657,3.634,3.668,3.67,3.672,3.677,3.668,3.67,3.656,3.632,3.628,3.612,3.626,3.617,3.603,3.601,3.607,3.598,3.574,3.548,3.545,3.48,3.497,3.486,3.458,3.437,3.397,3.37,3.333,3.306,3.535,3.845,3.883,3.913,3.912,3.911,3.916,3.939,3.933,3.908,3.942,3.886,3.948,3.948,3.956,3.978,3.985,3.993,3.985,3.97,4,3.949,3.979,3.971,3.971,4,4,4,3.993,3.826,3.529,3.489,3.534,3.538,3.548,3.512,3.508,3.515,3.545,3.63,3.791,3.867,3.977,4.074,4.18,4.233,4.296,4.345,4.393,4.435,4.504,4.576,4.671,4.709,4.748,4.76,4.788,4.817,4.839,4.841,4.861,4.954,4.955,4.955,4.955,4.948,4.947,4.947,4.91,4.818,4.772,4.675,4.615,4.525,4.459,4.396,4.317,4.244,4.123,3.975,3.903,3.82,3.766,3.69,3.635,3.547,3.421,3.232,3,2.995,2.981,2.981,2.982,2.981,2.981,2.984,2.985,2.986,2.988,2.989,2.991,2.992,2.993,2.993,2.993,2.994,2.994,2.996,2.997,2.997,2.999,3.02,3.04,3.067,3.102,3.138,3.191,3.181,3.188,3.161,3.142,3.17,3.224,3.209,3.2,3.2,3.193,3.193,3.157,3.187,3.229,3.316,3.33,3.322,3.339,3.398,3.394,3.402,3.422,3.4,3.361,3.375,3.361,3.345,3.345,3.342,3.327,3.315,3.309,3.303,3.221,3.18,3.262,3.233,3.223,3.236,3.236,3.245,3.208,3.136,3.032,3.101,3.139,3.12,3,2.999,2.999,2.996,2.994,2.991,2.991,2.993,2.994,2.994,2.992,2.994,2.994,2.994,2.994,2.995,2.995,2.991,2.996,2.996,2.996,2.995,2.998,2.996,2.995,2.992,2.984,2.985,2.988,2.989,2.988,2.989,2.989,2.99,2.99,2.988,2.984,2.985,2.985,2.983,2.983,2.982,2.98,2.98,2.981,2.981,2.978,2.977,2.979,2.978,2.977,2.975,2.974,2.976,2.976,2.975,2.973,2.973,2.976,2.975,2.974,2.974,2.975,2.977,2.977,2.977,2.975,2.979,2.982,2.981,2.981,2.985,2.985,2.982,2.98,2.981,2.979,2.983,2.984,2.985,2.987,2.986,2.984,2.984,2.984,2.985,2.982,2.983,2.988,2.99,2.99,2.993,2.998,3.012,3.023,3.011,2.996,2.997,2.999,3.031,3.021,3,3.041,3.051,3.031,3.042,2.997,2.999,2.998,3,3.011,3.032,3.043,3.054,3.032,3.011,2.999,2.999,3.011,3.063,3.021,2.994,2.991,2.991,2.992,2.99,2.989,2.992,2.991,2.994,2.994,2.992,2.99,2.989,2.991,2.989,2.985,2.988,2.987,2.991,2.99,2.989,2.99,2.991,2.991,2.991,2.986,2.985,2.982,2.982,2.985,2.984,2.985,2.985,2.986,2.983,2.979,2.982,2.978,2.98,2.982,2.983,2.982,2.982,2.984,2.985,2.982,2.982,2.98,2.983,2.984,2.984,2.983,2.985,2.985,2.987,2.987,2.986,2.988,2.987,2.988,2.986,2.984,2.985,2.986,2.986,2.984,2.986,2.985,2.985,2.986,2.987,2.985,2.984,2.982,2.983,2.981,2.979,2.978,2.982,2.981,2.981,2.98,2.981,2.98,2.981,2.983,2.983,2.985,2.986,2.988,2.99,2.989,2.991,2.991,2.992,2.991,2.993,2.993,2.993,2.995,2.996,2.996,2.997,2.998,3.053,3.073,3.053,3.032,3.071,3.09,3.07,3.05,3.059,3.05,3.01,2.999,2.998,2.999,3.011,3.011,3.061,3.031,3.061,3.041,3.021,2.997,2.998,2.999,2.999,3.011,2.999,2.999,2.999,2.996,2.996,2.996,2.996,2.997,3.013,3.049,3.072,3.083,3.082,3.141,3.118,3.108,3.086,3.086,3.097,3.065,3.108,3.186,3.212,3.226,3.229,3.215,3.207,3.214,3.226,3.244,3.254,3.244,3.216,3.212,3.225,3.185,3.171,3.145,3.161,3.154,3.139,3.13,3.119,3.11,3.119,3.094,3.067,3.104,3.123,3.113,3.021,3.031,3.041,3.041,3.107,3.1,3.127,3.16,3.234,3.274,3.297,3.325,3.311,3.301,3.328,3.333,3.346,3.401,3.435,3.453,3.464,3.464,3.486,3.5,3.527,3.537,3.514,3.546]
Loading

Copy link

github-actions bot commented Feb 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,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,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,99.997,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,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100.003,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,100,100,100,100,99.997,100,100,100,100,100,100.003,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,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100.003,100,100,100,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,99.997,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.003,99.997,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,100.003,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,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.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]
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, %" 90 --> 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" 843 --> 1106
    line [936.905,970.273,1000.103,1000,1000,1000,1000,999.966,1000,1000,1000.069,1000,1000,1000,999.966,1000.034,1000,1000,999.966,1000,1000,994.552,1000.069,1000,999.931,1000,1000,999.966,1000,1000,999.966,1000.034,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,1000,1000.034,999.966,999.966,1000,1000,1000.034,999.966,1000,1005.414,999.966,1000.034,1000.034,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,1000,1000,999.931,1000,999.966,1000.034,1000,1000.034,1000,1000.034,1000,999.931,1000.069,1000,999.966,1000,1000,1000,999.966,1000,999.966,1000,1000,1000,1000,1000,1000.034,1000,1000,1000,1000,1000.069,1000,1000,1000.034,1000,999.966,999.862,999.966,1000,1000.069,1000,1000,1000,1000,1000,1000,999.966,1000,1000,1000.034,1000,999.862,1000,999.966,999.966,999.897,1000,999.931,1000,999.966,1000,1000.034,999.966,1000.034,1000,1000.138,1000,1000,999.966,1000,1000,1000,1000,1000.034,999.966,1000.069,1000,1000,999.966,1000.034,1000.103,1000,1000,1000,1000.103,999.966,1000,1000,1000,1000,999.966,1000,1000,1000,1000,1000,1000.034,999.862,999.966,1000,1000,1000,999.966,1000.034,999.966,1000,1000.034,1000,999.966,1000,1000,1000.034,1000,1000,1000.034,1000.069,999.966,1000.034,1000,1000,1000,999.966,1000,999.966,1000,1000,1000.138,1000.034,1000,1000,999.966,999.966,1000,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000,1000,1000,999.966,1000.034,999.931,1000,1000,1000,1000,1000.034,1000.069,1000.034,999.966,1000.034,1000,1000,999.897,1000.034,1000.034,999.966,999.966,1000,1000,1000,999.931,1000,1000,1000,1000,1000,1000,1000,1000,1000.034,1000,1000,1000,1000,999.966,1000,999.966,999.966,999.966,1000,1000,1000.103,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000.069,999.966,1000,1000,1000,999.966,1000,1000,999.966,1000,1000,1000,1000,1000,1000.034,999.931,1000,1000.034,1000,999.966,1000.034,1000.034,999.966,999.966,1000.034,999.966,1000,1000.034,1000,1000,1000.069,1000.034,1000.034,1000.034,1000.034,1000.034,1000,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000.069,1000.034,999.966,1000.034,1000.034,999.862,1000,1000,1000,1000,1000.034,999.897,1000,999.897,1000,999.966,999.931,1000,999.966,1000,1000,1000,1000.069,1000,1000.034,1000,999.931,1000.034,999.966,1000,999.966,1000.069,1000,999.862,1000.103,999.862,1000,1000,1000,1000,1000.138,999.897,1000.138,1000,1000,1000.069,1000,999.931,1000.034,1000,1000.034,1000,999.931,999.966,1000,1000.069,1000,1000.034,999.966,1000,1000,1000,1000.138,1000.034,1000.138,1000,1000.034,999.931,1000,1000,1000.103,1000,1000.034,1000,1000,1000,1000.069,999.966,1000,999.966,1000,1000.069,1000,1000,1000,999.966,1000.034,1000.034,1000.034,1000,1000,1000,1000,999.966,1000,999.966,1000.069,1000,1000,1000,999.966,1000,1000,999.966,1000,1000.034,1000.034,1000,1000,999.966,999.966,1000,999.966,999.966,1000.034,1000,1000,999.966,1000,1000,1000,999.966,1000.034,1000,1000,999.966,999.966,999.897,999.966,1000.034,999.966,1000.034,1000,1000,1000,1000,999.966,1000.034,999.862,1000.034,1000,1000.034,1000.034,999.966,999.966,999.966,1000.034,999.966,999.966,1000,1000.034,999.966,1000,1000.034,1000.034,1000.034,1000.069,1000.034,1000,1000,999.966,1000.034,1000,1000,999.897,1000,1000,1000.138,1000,1000,999.966,1000,1000.034,1000,1000.034,1000,1000,1000.034,999.966,1000,1000.034,1000,1000,1000,1000,1000.034,1000,1000,1000.034,999.966,1000,1000,1000,1000.103,1000.034,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000.034,999.966,1000,1000.034,1000,1000.034,1000.034,1000.069,1000.103,1000.069,1000.069,1000.069,1000.069,1000.069,1000.069,999.897,1000.103,1000.069,1000.069,1000.069,1000.103,1000.069,1000,999.966,1000.069,1000.034,1000.069,1000.069,1000.103,1000.103,1000,1000.069,1000.034,1000.034,1000.069,1000.069,999.966,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000.207,1000.034,1000.034,1000.034,1000.034,999.966,1000.034,1000.069,1000.069,1000.034,1000.034,1000.034,1000,1000,999.966,1000.103,1000.034,1000.034,1000.034,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" 84 --> 111
    line [93.677,97.01,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.483,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.517,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.014,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.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,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,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,99.99,100,100,100.014,100,100,100,100,100,100,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,99.966,100,100,100,100,100,100,100,99.99,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.01,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 --> 3
    line [1.973,1.978,1.978,1.979,1.979,1.979,1.98,1.981,1.98,1.98,1.975,1.98,1.977,1.976,1.976,1.976,1.975,1.975,1.974,1.975,1.972,1.99,2.21,2.202,2.207,2.206,2.229,2.258,2.261,2.282,2.189,2.233,2.251,2.274,2.3,2.295,2.294,2.302,2.305,2.325,2.242,2.29,2.313,2.329,2.341,2.352,2.366,2.37,2.363,2.362,2.02,1.984,1.985,1.984,1.984,1.984,1.983,1.982,1.98,1.98,1.977,1.979,1.978,1.977,1.977,1.977,1.976,1.976,1.975,1.974,1.973,1.975,1.975,1.975,1.975,1.975,1.976,1.976,1.976,1.978,1.976,1.978,2.068,2.076,2.065,2.06,2.076,2.07,2.067,2.077,2.015,2.039,2.038,2.05,2.053,2.065,2.08,2.073,2.072,2.075,2.013,2.051,2.069,2.074,2.071,2.063,2.058,2.055,2.032,2.056,2.011,1.976,1.977,1.977,1.978,1.977,1.977,1.978,1.978,1.978,1.977,1.978,1.979,1.979,1.979,1.979,1.979,1.979,1.979,1.979,1.976,1.978,1.98,1.98,1.98,1.98,1.98,1.979,1.978,1.978,1.976,1.976,1.987,1.988,1.987,1.988,1.987,1.987,1.987,1.987,1.985,1.984,1.986,1.985,1.986,1.987,1.988,1.988,1.989,1.989,1.986,1.984,1.986,1.985,1.985,1.985,1.986,1.985,1.985,1.985,1.984,1.972,1.973,1.975,1.974,1.974,1.973,1.972,1.972,1.972,1.971,1.969,1.971,1.97,1.969,1.967,1.967,1.964,1.963,1.962,1.962,1.959,1.96,1.961,1.959,1.958,1.958,1.957,1.956,1.955,1.954,1.951,1.95,1.949,1.95,1.95,1.949,1.948,1.948,1.947,1.946,1.942,1.943,1.944,1.944,1.944,1.949,1.949,1.95,1.949,1.948,1.946,1.946,1.945,1.945,1.944,1.945,1.945,1.945,1.945,1.946,1.944,1.944,1.945,1.944,1.944,1.945,1.944,1.944,1.944,1.945,1.945,1.944,1.944,1.944,1.938,1.938,1.937,1.937,1.937,1.937,1.936,1.939,1.939,1.94,1.938,1.938,1.938,1.937,1.936,1.936,1.934,1.936,1.936,1.937,1.936,1.936,1.936,1.936,1.936,1.935,1.933,1.934,1.935,1.935,1.935,1.936,1.936,1.937,1.936,1.935,1.932,1.933,1.933,1.934,1.935,1.935,1.935,1.935,1.935,1.936,1.934,1.935,1.935,1.935,1.936,1.937,1.937,1.938,1.939,1.938,1.937,1.937,1.939,1.939,1.938,1.939,1.938,1.938,1.939,1.939,1.939,1.94,1.94,1.94,1.941,1.944,1.947,1.954,1.956,1.957,1.958,1.961,1.963,1.963,1.964,1.963,1.963,1.963,1.963,1.965,1.964,1.967,1.969,1.97,1.97,1.972,1.973,1.974,1.974,1.975,1.975,1.975,1.976,1.975,1.971,1.969,1.963,1.96,1.959,1.958,1.954,1.957,1.958,1.957,1.958,1.958,1.958,1.959,1.958,1.958,1.956,1.957,1.964,1.964,1.966,1.965,1.964,1.964,1.964,1.964,1.964,1.966,1.968,1.968,1.968,1.968,1.969,1.968,1.967,1.969,1.965,1.966,1.967,1.967,1.967,1.967,1.966,1.966,1.964,1.964,1.962,1.959,1.959,1.957,1.957,1.958,1.959,1.959,1.959,1.961,1.958,1.959,1.96,1.96,1.965,1.966,1.967,1.968,1.969,1.971,1.969,1.974,1.976,1.976,1.976,1.976,1.977,1.978,1.979,1.979,1.978,1.982,1.987,1.988,1.989,1.992,1.992,1.992,1.991,1.992,1.991,1.991,1.995,1.991,1.99,1.991,1.991,1.99,1.989,1.989,1.985,1.986,1.993,1.996,1.998,2.007,2,2.029,2.003,2,1.997,1.994,1.998,1.998,1.992,1.992,1.993,1.993,1.992,1.991,1.993,1.988,1.99,1.99,1.989,1.988,1.988,1.988,1.988,1.988,1.984,1.977,1.976,1.975,1.973,1.973,1.971,1.971,1.97,1.968,1.967,1.962,1.965,1.966,1.967,1.966,1.965,1.964,1.964,1.961,1.962,1.959,1.962,1.964,1.967,1.969,1.972,1.976,1.975,1.976,1.977,1.974,1.976,1.976,1.975,1.974,1.978,1.982,1.98,1.979,1.981,1.977,1.986,1.986,1.985,1.985,1.986,1.987,1.988,1.988,1.993,1.993,1.996,1.998,2.002,2.005,1.999,1.999,1.998,1.997,2.008,1.998,2.013,2.022,2.016,1.999,1.996,1.997,1.998,1.997,1.998,1.99,1.993,1.994,1.994,1.994,1.993,1.992,1.991,1.987,1.984,1.98,1.98,1.974,1.97,1.967,1.967,1.967,1.966,1.964,1.964,1.96,1.964,1.965,1.964,1.966,1.968,1.969,1.969,1.967,1.967,1.962]
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.307,3.427,3.43,3.444,3.4,3.38,3.382,3.382,3.37,3.377,3.26,3.364,3.256,3.25,3.232,3.228,3.2,3.165,3.154,3.183,3.027,3.456,3.862,3.865,3.842,3.8,3.823,3.846,3.841,3.848,3.745,3.774,3.811,3.838,3.881,3.873,3.879,3.88,3.857,3.862,3.774,3.838,3.865,3.881,3.873,3.888,3.912,3.905,3.895,3.895,3.652,3.397,3.385,3.38,3.397,3.383,3.345,3.286,3.2,3.224,3.167,3.23,3.196,3.165,3.152,3.07,3.035,3.036,3,2.999,2.994,2.997,2.997,2.997,2.997,2.997,2.998,2.998,2.999,3.06,2.999,3.062,3.656,3.629,3.626,3.61,3.644,3.644,3.621,3.619,3.533,3.543,3.577,3.574,3.6,3.61,3.625,3.631,3.615,3.625,3.535,3.587,3.611,3.606,3.596,3.564,3.569,3.569,3.52,3.557,3.5,3.012,3.07,3.06,3.073,3.06,3.048,3.071,3.071,3.105,3.049,3.05,3.063,3.107,3.119,3.11,3.108,3.1,3.085,3.084,2.999,3,3.133,3.155,3.209,3.23,3.195,3.176,3.141,3.159,3.083,3.048,3.367,3.389,3.378,3.38,3.366,3.341,3.333,3.356,3.292,3.273,3.267,3.284,3.295,3.315,3.378,3.384,3.462,3.471,3.427,3.333,3.38,3.364,3.34,3.367,3.38,3.364,3.354,3.33,3.319,3.011,3.063,3.105,3.124,3.133,3.131,3.103,3.083,3.097,3.087,3.065,3.086,3.044,3.022,2.997,2.996,2.991,2.989,2.987,2.987,2.984,2.986,2.986,2.984,2.983,2.984,2.982,2.98,2.978,2.978,2.973,2.971,2.968,2.967,2.967,2.967,2.966,2.968,2.966,2.964,2.96,2.96,2.965,2.965,2.964,2.972,2.972,2.972,2.97,2.97,2.967,2.966,2.966,2.968,2.968,2.97,2.97,2.971,2.969,2.969,2.968,2.97,2.97,2.971,2.969,2.971,2.967,2.969,2.969,2.971,2.971,2.966,2.966,2.968,2.959,2.958,2.959,2.959,2.958,2.959,2.959,2.962,2.961,2.961,2.959,2.959,2.959,2.958,2.958,2.956,2.956,2.961,2.96,2.962,2.96,2.96,2.959,2.959,2.957,2.956,2.955,2.959,2.959,2.959,2.96,2.96,2.958,2.959,2.958,2.96,2.957,2.959,2.959,2.96,2.963,2.964,2.966,2.965,2.966,2.967,2.964,2.965,2.965,2.965,2.964,2.964,2.966,2.968,2.969,2.969,2.965,2.966,2.966,2.966,2.968,2.97,2.969,2.97,2.967,2.966,2.966,2.967,2.968,2.966,2.966,2.97,2.972,2.982,2.983,2.983,2.983,2.99,2.992,2.993,2.996,2.994,2.992,2.992,2.992,2.994,2.993,2.996,2.999,2.998,2.997,2.999,2.998,3.014,3.055,3.028,2.999,2.999,3.015,2.999,2.996,2.995,2.985,2.982,2.981,2.982,2.976,2.98,2.982,2.98,2.981,2.982,2.982,2.985,2.983,2.984,2.982,2.983,2.991,2.993,2.993,2.993,2.993,2.991,2.993,2.995,2.993,2.997,2.998,2.998,2.998,2.999,3,3,2.999,3.013,2.995,2.997,2.999,3.013,3.026,3.013,2.999,2.999,2.998,3.013,3,2.996,2.996,2.995,2.995,2.995,2.998,2.999,2.998,3,2.996,3,3.038,3.037,3.075,3.131,3.141,3.157,3.22,3.258,3.231,3.333,3.369,3.375,3.388,3.404,3.429,3.417,3.4,3.404,3.396,3.471,3.547,3.57,3.579,3.589,3.581,3.592,3.61,3.596,3.579,3.606,3.678,3.64,3.618,3.633,3.635,3.583,3.545,3.531,3.438,3.414,3.534,3.56,3.582,3.636,3.642,3.664,3.645,3.632,3.593,3.566,3.6,3.598,3.552,3.546,3.545,3.521,3.509,3.475,3.462,3.36,3.422,3.419,3.415,3.417,3.42,3.45,3.475,3.462,3.445,3.308,3.333,3.291,3.206,3.188,3.16,3.167,3.117,3.056,3,2.994,2.999,3,3,3.012,3.036,3.058,3.036,2.999,3.038,2.997,3.052,3.101,3.128,3.235,3.344,3.337,3.33,3.337,3.394,3.326,3.356,3.367,3.398,3.363,3.429,3.495,3.505,3.495,3.538,3.464,3.553,3.559,3.548,3.509,3.517,3.529,3.55,3.56,3.608,3.586,3.621,3.655,3.655,3.622,3.632,3.639,3.626,3.616,3.633,3.612,3.625,3.617,3.608,3.585,3.548,3.541,3.538,3.528,3.562,3.481,3.504,3.515,3.533,3.523,3.516,3.504,3.459,3.419,3.415,3.333,3.327,3.2,3.112,3.069,3.058,3.059,3,2.998,2.999,2.994,2.999,3.038,3,3.037,3.089,3.136,3.125,3.087,3.065,2.998]
Loading

Copy link

github-actions bot commented Feb 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,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,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,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,100,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,99.997,100,100,100,100,100,100.003,99.997,100,100,100.003,100,100,100.003,100,100,100,100,100,99.997,100,100,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100.003,99.997,100,100,100,100,100,100,99.997,100,100.003,100,100,100,100,99.997,99.997,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.003,100,100,100.003,100.007,100,100,100,100,100,100.003,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100.003,100.003,100,99.997,100,100,99.997,99.997,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.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.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.003,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,99.997,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.003,100,100,100,100,100,100,100,100,100.003,100,100,100.003,100,100,100.003,100,100,100,100,100,100,100,99.997,100,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,99.997,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100.007,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.003,99.997,100,99.993,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,99.997,100,100,100,100.003,100,100,100,100,100,100,99.997,100.003,100,99.997,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,99.997,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,99.997,100,100,100,100,100,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.003,100.003,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]
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" 828 --> 1101
    line [920.201,953.534,1000,1000,1000,999.966,1000,1000.034,1000.034,999.966,999.966,1000.034,1000,1000.069,1000,1000,1000,1000,1000.034,1000.069,999.966,1000,1000.034,1000,1000,1000,1000,999.966,1000,999.931,999.931,1000,1000,1000,1000,1000,999.966,999.966,1000,1000.069,999.966,1000.034,999.966,1000,1000,1000.034,1000,999.966,999.966,1000,1000,999.966,1000,1000.034,1000,1000,1000,999.966,1000.034,1000.069,1000.034,1000.034,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000.034,1000,999.966,1000.034,1000,1000.034,1000,1000,1000.034,1000,1000,999.966,999.966,1000,1000.034,999.966,999.966,999.966,999.966,1000,1000.034,1000.034,1000,999.931,1000,999.966,1000.034,1000,1000.034,999.966,999.966,1000,999.966,1000.034,1000,1000,1000,999.966,1000.034,999.966,1000.069,1000.034,1000.034,1000.034,1000.069,999.966,1000,1000.034,1000.034,999.966,999.966,1000,1000.103,1000,1000,999.966,1000,999.966,1000.034,1000.034,1000.034,999.966,999.966,999.966,1000.034,1000,999.966,999.966,1000,999.966,1000,1000,999.966,999.966,1000.034,1000.034,1000,1000,1000,1000,1000,1000,1000,1000,999.966,1000,1000.034,1000,999.966,1000,1000.034,1000.034,1000,1000,1000,1000.069,1000,1000,1000.034,1000,1000.034,1000,1000,1000,1000,999.931,999.966,1000.034,1000.034,1000.034,999.966,1000,1000,1000.034,1000,999.966,1000,1000.034,999.966,1000.034,1000,1000,999.966,1000,999.966,1000,1000.034,999.966,1000.034,1000,1000,1000,1000,1000,1000.034,1000,999.966,1000,999.966,1000,1000,1000,1000,1000,1000.034,999.966,999.966,1000,1000,1000,999.897,1000,1000,1000,1000.034,999.966,1000,1000,999.966,999.966,1000.034,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000.034,1000.034,1000,1000,1000,1000.034,1000,999.966,1000.103,1000,1000.034,1000,999.966,1000.034,1000,1000,1000,1000.069,1000,1000,999.966,1000,1000,1000,999.966,999.966,1000,1000,1000,999.966,1000,1000,1000.034,1000.034,1000,1000,1000.034,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000,1000.034,1000,1000,1000,1000.034,1000.034,1000,1000.034,1000.034,1000.034,1000.034,1000,1000,1000.034,999.966,1000,999.966,999.966,1000,1000,1000,999.966,1000.034,1000,1000,1000.034,999.966,1000,999.966,1000,1000,999.966,1000,999.966,1000,1000,999.966,1000,999.966,999.966,1000.034,1000,1000,1000.034,1000,1000.034,1000.034,999.966,1000,999.966,1000.034,1000,1000,1000,999.966,1000.034,1000,1000.034,1000,1000,1000.034,1000,1000.034,1000,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000,1000,999.966,1000,1000,1000.034,1000,1000.034,1000,1000,1000,1000,1000.034,1000,1000,1000,999.966,1000,1000,1000,1000,1000,1000.034,1000,1000,999.966,1000.034,1000,1000,1000,1000.034,1000.034,1000,1000,1000,1000,1000,1000.034,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000,1000,999.966,1000.034,1000,1000.034,999.966,1000,1000.034,1000,999.966,999.966,1000,999.966,1000,1000,999.966,1000,1000.034,1000.034,1000.034,1000.034,1000,1000.034,1000,999.966,1000.034,1000,999.966,1000,1000.034,1000,999.966,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,1000,1000,1000.034,999.931,1000.034,999.966,999.966,999.966,1000,1000,1000,1000.034,999.966,1000.034,999.966,1000,1000,1000.034,1000.034,1000.103,1000.034,1000.034,1000.034,1000.034,1000.069,1000.034,1000.034,1000.034,1000.034,1000.034,1000,999.931,1000.069,1000,1000.034,1000.034,1000.069,1000.034,1000,1000.034,1000.069,1000.069,1000,1000.034,1000.034,1000.034,1000.034,1000,999.966,1000,1000,1000,999.966,999.966,1000.034,1000.034,1000,1000.034,1000.034,1000.034,1000.103,1000.034,1000,999.966,1000,999.966,1000,1000,1000.034,999.966,1000,1000.034,1000.034,1000,1000,999.966,1000,1000,999.966,1000,1000,1000,1000,1000,1000,1000.034,999.966,999.966,1000,999.966,1000,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000.034,999.966,999.966,1000,1000.034,999.966,1000.034,1000.034,1000,1000.034,1000,1000.034,1000.034,1000.034,1000,999.966,1000,1000,999.966,1000,1000.034,999.966,1000,979.833]
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 [92.017,95.35,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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,97.983]
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.843,1.851,1.851,1.85,1.851,1.852,1.852,1.853,1.852,1.845,1.847,1.854,1.856,1.859,1.858,1.859,1.859,1.86,1.859,1.857,1.855,1.86,1.861,1.862,1.862,1.862,1.862,1.864,1.864,1.903,1.897,1.904,1.907,1.908,1.91,1.911,1.912,1.914,1.916,1.917,1.912,1.916,1.917,1.918,1.919,1.92,1.92,1.921,1.921,1.923,1.92,1.923,1.924,1.925,1.925,1.926,1.926,1.927,1.897,1.897,1.893,1.893,1.892,1.89,1.891,1.891,1.889,1.889,1.887,1.888,1.884,1.887,1.886,1.887,1.885,1.885,1.885,1.885,1.883,1.883,1.879,1.882,1.881,1.88,1.879,1.878,1.878,1.878,1.877,1.882,1.88,1.884,1.884,1.884,1.884,1.884,1.884,1.885,1.884,1.885,1.882,1.885,1.884,1.885,1.885,1.887,1.887,1.887,1.887,1.888,1.886,1.889,1.889,1.89,1.89,1.89,1.89,1.89,1.885,1.884,1.881,1.883,1.883,1.882,1.883,1.881,1.881,1.881,1.88,1.882,1.879,1.881,1.881,1.881,1.88,1.879,1.878,1.878,1.876,1.88,1.878,1.881,1.882,1.882,1.882,1.882,1.882,1.882,1.882,1.885,1.881,1.883,1.882,1.88,1.879,1.878,1.877,1.875,1.872,1.873,1.869,1.87,1.869,1.868,1.868,1.868,1.867,1.865,1.861,1.858,1.853,1.853,1.852,1.85,1.848,1.847,1.846,1.844,1.837,1.838,1.834,1.837,1.84,1.84,1.84,1.84,1.84,1.84,1.837,1.838,1.835,1.837,1.837,1.836,1.836,1.836,1.837,1.838,1.839,1.844,1.842,1.845,1.846,1.847,1.847,1.85,1.85,1.851,1.851,1.856,1.852,1.856,1.858,1.859,1.861,1.868,1.867,1.868,1.872,1.875,1.876,1.883,1.883,1.884,1.885,1.886,1.885,1.883,1.881,1.88,1.878,1.88,1.88,1.88,1.877,1.877,1.877,1.876,1.873,1.875,1.871,1.871,1.873,1.871,1.867,1.868,1.869,1.866,1.865,1.864,1.859,1.86,1.861,1.861,1.861,1.862,1.863,1.863,1.863,1.863,1.861,1.861,1.865,1.866,1.866,1.866,1.866,1.865,1.863,1.863,1.863,1.86,1.862,1.86,1.861,1.861,1.859,1.857,1.854,1.852,1.851,1.849,1.851,1.851,1.85,1.85,1.85,1.851,1.851,1.851,1.85,1.848,1.849,1.85,1.852,1.852,1.852,1.854,1.854,1.853,1.853,1.851,1.854,1.853,1.852,1.852,1.853,1.853,1.852,1.851,1.851,1.849,1.851,1.852,1.852,1.852,1.851,1.85,1.848,1.847,1.846,1.843,1.845,1.844,1.844,1.843,1.84,1.839,1.84,1.839,1.84,1.838,1.84,1.838,1.837,1.838,1.84,1.841,1.843,1.843,1.844,1.843,1.847,1.848,1.849,1.849,1.849,1.851,1.851,1.852,1.855,1.854,1.858,1.859,1.861,1.863,1.864,1.864,1.863,1.862,1.863,1.862,1.867,1.868,1.867,1.865,1.865,1.864,1.864,1.863,1.862,1.857,1.858,1.859,1.859,1.86,1.859,1.859,1.858,1.856,1.854,1.851,1.852,1.852,1.853,1.854,1.853,1.854,1.855,1.856,1.858,1.855,1.86,1.862,1.863,1.865,1.867,1.869,1.871,1.871,1.873,1.873,1.876,1.878,1.88,1.883,1.887,1.889,1.892,1.895,1.899,1.9,1.905,1.907,1.908,1.911,1.913,1.915,1.916,1.916,1.918,1.916,1.919,1.92,1.921,1.921,1.921,1.92,1.921,1.921,1.921,1.919,1.922,1.923,1.922,1.921,1.921,1.919,1.919,1.917,1.916,1.912,1.913,1.912,1.911,1.911,1.911,1.911,1.911,1.908,1.908,1.905,1.907,1.906,1.904,1.904,1.903,1.902,1.9,1.898,1.897,1.89,1.891,1.889,1.888,1.886,1.884,1.881,1.878,1.876,1.875,1.869,1.869,1.867,1.864,1.862,1.859,1.856,1.855,1.852,1.85,1.843,1.846,1.845,1.845,1.843,1.844,1.844,1.845,1.846,1.847,1.843,1.843,1.845,1.846,1.847,1.848,1.849,1.849,1.848,1.85,1.848,1.849,1.852,1.85,1.85,1.85,1.85,1.85,1.849,1.851,1.846,1.847,1.851,1.851,1.852,1.855,1.855,1.854,1.854,1.855,1.855,1.854,1.856,1.855,1.857,1.855,1.856,1.855,1.854,1.854,1.853,1.852,1.856,1.855,1.856,1.856,1.856,1.857,1.857,1.857,1.857,1.854,1.856,1.858,1.856,1.856,1.856,1.856,1.855,1.856,1.855,1.854,1.859,1.858,1.859,1.859,1.861,1.86,1.86,1.86,1.86,1.858,1.862,1.863,1.863,1.864,1.865,1.864,1.865,1.863,1.863,1.861]
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.934,2.938,2.939,2.937,2.94,2.942,2.942,2.944,2.941,2.933,2.934,2.938,2.94,2.939,2.938,2.939,2.939,2.939,2.935,2.933,2.931,2.936,2.936,2.938,2.936,2.94,2.943,2.944,2.943,2.977,2.975,2.976,2.98,2.98,2.98,2.983,2.983,2.984,2.982,2.983,2.98,2.984,2.984,2.985,2.984,2.985,2.983,2.984,2.984,2.983,2.978,2.983,2.983,2.983,2.98,2.978,2.979,2.978,2.952,2.952,2.949,2.949,2.947,2.948,2.944,2.944,2.944,2.943,2.941,2.94,2.936,2.938,2.939,2.939,2.937,2.938,2.938,2.938,2.939,2.942,2.937,2.937,2.938,2.937,2.937,2.936,2.94,2.938,2.938,2.947,2.947,2.952,2.95,2.952,2.952,2.954,2.955,2.956,2.958,2.96,2.957,2.957,2.957,2.959,2.959,2.959,2.96,2.958,2.956,2.958,2.957,2.959,2.959,2.959,2.959,2.957,2.957,2.956,2.948,2.948,2.942,2.947,2.945,2.946,2.947,2.945,2.945,2.943,2.94,2.944,2.943,2.949,2.95,2.95,2.948,2.947,2.945,2.946,2.946,2.948,2.947,2.951,2.953,2.953,2.953,2.955,2.955,2.954,2.952,2.957,2.952,2.956,2.952,2.951,2.951,2.951,2.95,2.951,2.947,2.948,2.942,2.941,2.938,2.938,2.937,2.938,2.936,2.932,2.929,2.929,2.923,2.922,2.921,2.921,2.917,2.916,2.915,2.914,2.906,2.907,2.903,2.906,2.907,2.908,2.906,2.907,2.907,2.906,2.904,2.906,2.904,2.91,2.908,2.908,2.911,2.916,2.915,2.916,2.916,2.924,2.925,2.93,2.928,2.93,2.93,2.934,2.935,2.936,2.939,2.941,2.938,2.941,2.944,2.947,2.948,2.953,2.952,2.953,2.954,2.956,2.955,2.96,2.961,2.959,2.957,2.96,2.961,2.96,2.955,2.953,2.949,2.95,2.949,2.947,2.946,2.947,2.946,2.944,2.944,2.947,2.944,2.943,2.942,2.942,2.936,2.938,2.939,2.939,2.937,2.939,2.934,2.935,2.939,2.938,2.936,2.937,2.936,2.937,2.939,2.939,2.94,2.942,2.948,2.947,2.947,2.948,2.948,2.944,2.942,2.939,2.94,2.94,2.944,2.943,2.943,2.945,2.942,2.942,2.937,2.936,2.935,2.933,2.935,2.938,2.939,2.94,2.938,2.938,2.938,2.936,2.938,2.935,2.936,2.934,2.934,2.935,2.935,2.937,2.939,2.939,2.94,2.94,2.945,2.946,2.942,2.942,2.941,2.943,2.943,2.941,2.941,2.94,2.94,2.939,2.939,2.938,2.939,2.939,2.941,2.937,2.938,2.937,2.941,2.939,2.939,2.939,2.936,2.936,2.936,2.934,2.933,2.929,2.931,2.932,2.931,2.933,2.933,2.934,2.937,2.936,2.936,2.935,2.939,2.939,2.941,2.94,2.941,2.94,2.942,2.941,2.943,2.942,2.948,2.95,2.951,2.952,2.951,2.951,2.953,2.952,2.954,2.952,2.956,2.956,2.955,2.954,2.953,2.951,2.951,2.951,2.949,2.946,2.952,2.953,2.953,2.953,2.951,2.949,2.948,2.946,2.944,2.938,2.941,2.94,2.942,2.944,2.942,2.94,2.941,2.941,2.941,2.94,2.946,2.947,2.949,2.95,2.951,2.951,2.953,2.955,2.954,2.95,2.953,2.953,2.957,2.959,2.962,2.966,2.969,2.97,2.975,2.973,2.977,2.979,2.98,2.983,2.986,2.988,2.986,2.986,2.988,2.986,2.992,2.992,2.994,2.994,2.995,2.995,2.996,2.996,2.998,2.995,2.998,2.995,2.996,2.994,2.994,2.993,2.994,2.991,2.991,2.989,2.989,2.988,2.987,2.988,2.986,2.988,2.989,2.986,2.986,2.981,2.985,2.984,2.985,2.985,2.985,2.986,2.985,2.982,2.982,2.979,2.981,2.981,2.981,2.979,2.98,2.977,2.976,2.973,2.973,2.968,2.968,2.969,2.965,2.964,2.961,2.958,2.956,2.954,2.953,2.944,2.947,2.944,2.942,2.939,2.937,2.937,2.935,2.935,2.934,2.928,2.928,2.932,2.932,2.931,2.934,2.936,2.937,2.934,2.935,2.931,2.931,2.931,2.93,2.928,2.93,2.931,2.932,2.931,2.933,2.928,2.933,2.938,2.937,2.937,2.938,2.941,2.943,2.941,2.943,2.943,2.944,2.948,2.947,2.946,2.943,2.944,2.945,2.944,2.946,2.946,2.946,2.951,2.953,2.953,2.952,2.952,2.952,2.95,2.949,2.949,2.949,2.95,2.95,2.952,2.951,2.95,2.952,2.95,2.95,2.947,2.945,2.948,2.949,2.95,2.951,2.951,2.953,2.954,2.953,2.953,2.954,2.956,2.958,2.959,2.959,2.96,2.959,2.958,2.955,2.953,2.954]
Loading

Copy link

github-actions bot commented Feb 10, 2025

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

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,99.997,100,100.003,100.003,100,100,100,100,100,100,100,100,99.997,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,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,99.997,100,100,100,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.003,100,100,100,100.003,100,100,100,100,100,100,100.003,100,100.003,100,100,99.993,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,99.997,99.997,100,100,100,100,100,100,99.997,100.003,100,100,100,100.003,100.003,100,100,99.997,100,100.003,100,99.997,100,100,99.993,100,100,100,100,100.003,100,100,100,100.003,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,99.997,100,100.003,100,100,100.003,100,100,100,100,100,100,99.997,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.003,100,100,100,100.003,100,100,100,100,100,100.003,100,100,100.003,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,100,100,100,99.997,100,100,100.003,100.003,99.997,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,100,100,99.993,100,100,100,100,100,100,100,99.997,100,100.003,100,99.997,100,100,99.997,100,100.003,100,100,100.003,99.997,100,100,100,99.997,100,100,100,100.003,100,100,100.003,100,99.997,100,100,100,100,100,100,100.003,100,100,100.003,100,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,100,100,99.997,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,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,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,99.997,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.003,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.003,100,100,100,100,100,99.997,100.003,100,100,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100.003,100,100,100.003,99.997,100,100,100,100,99.997,100.003,99.997,100,100,100,100,100,100,100,100.003,100.004]
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" 851 --> 1110
    line [945.667,979,1000,999.931,1000,1008.621,999.966,1000,999.966,1000,1000,1000,1000.034,1000.069,999.966,1000,1000,1000,1000.069,999.966,1000.034,1000,1000,1000,999.966,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000.069,1000,1000.034,1000.034,1000,1000.034,999.966,1000,1000,1000,1000,1000.034,1000,1000,1000,1000,1000,1000,1000.069,1000.034,1000.034,1000.034,999.966,999.966,1000,999.966,999.966,1000,999.966,1000,999.966,999.931,1000,999.966,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000.034,999.966,1000,1000.034,999.966,1000,1000,1000,999.966,1000.034,1000.034,1000,1000.034,1000.034,1000,999.345,1000,1000.034,1000.069,999.966,1000.034,999.966,1000,999.966,999.966,999.966,1000,999.966,1000,1000,1000.034,1000,1000,1000.034,1000,1000,1000,1000,999.966,1000,1000.034,1000,999.966,999.966,1000.655,999.966,1000.034,1000,1000.034,1000,1000.034,1000,1000.069,1000.069,1000.034,991.345,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000,1000.034,1000.034,1000.069,1000.034,1000,1000,1000.034,1000.069,1000,1000.034,1000.034,1000,1000,999.966,1000,1000.034,1000.034,1000,999.966,1000,1008.655,1000.034,1000,999.931,1000.034,1000.034,1000.034,1000,1000.034,999.966,999.966,999.966,1000,1000,1000.034,999.966,1000,1000,1000.034,1000.034,999.931,1000,1000.069,1000,1000,1000,999.966,1000,1000,1000.034,999.966,1000.034,1000.034,999.966,999.966,999.966,1000.034,999.966,1000,1000,1000,1000,1000.034,999.966,1000.034,999.966,1000.034,1000,999.966,1000.034,1000.034,999.966,1000,999.966,999.966,1000.034,1000,1000,999.966,1000,999.966,999.966,1000,1000.034,1000,999.966,1000.034,999.966,999.966,999.966,1000,999.966,1000,999.931,1000,1000,1000,1000.034,1000,999.966,1000,1000,999.966,999.966,1000,999.966,1000,1000,1000.034,999.966,1000,999.966,999.966,1000,1000,1000,1000,1000.069,1000.034,1000.034,1000,1000,1000.034,1000,1000,999.966,999.966,1000,999.966,1000,1000.034,1000.069,1000.034,999.966,1000.034,1000,1000,999.966,1000.069,1000,1000.069,1000,1000.034,1000.034,999.966,1000.034,999.966,1000,999.931,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000.034,1000,1000,999.931,1000.034,999.966,1000,1000,1000,1000,1000,1000.034,1000,1000.034,999.966,999.966,1000,1000,999.966,1000.034,1000,1000,1000,1000,1000.034,999.966,1000,1000.034,999.966,1000.034,1000,999.966,1000.034,999.966,1000.069,999.966,1000.034,1000,1000.034,999.966,1000,999.966,999.966,1000.034,999.966,1000.034,1000.034,1000.069,1000,1000.034,1000.034,1000,1000.034,1000,1000.034,1000,999.966,1000,1000,1000,1000.034,1000,1000.034,1000,1000.069,1000,1000.034,1000,1000,1000.034,1000,1000.034,1000,1000.069,999.966,999.966,1000,1000,1000,1000,1000.034,999.966,1000,999.966,1000,1000.034,1000.034,999.966,1000.034,999.966,1000.034,1000,999.966,999.966,999.966,999.966,1000,1000.034,999.966,1000.034,999.966,1000,1000,1000,1000.034,999.966,999.966,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,1000,999.966,1000.034,999.966,1000,1000.034,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000.034,999.966,999.966,1000.034,1000,1000,1000,999.966,1000,1000,1000,1000,1000.034,1000,999.966,1000,1000,1000,1000,1000,999.966,999.966,1000,1000,999.966,999.966,1000,1000.034,1000,999.966,1000,1000.034,999.966,999.966,999.966,1000.034,1000,1000,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000,999.931,1000.034,1000,1000.034,1000,1000,1000,1000,1000,1000,999.966,1000.034,1000,1000,1000.034,999.966,1000.069,1000,1000.034,1000,1000,1000,999.966,1000,999.966,1000.034,999.966,1000,1000,1000.069,1000,1000.034,1000,1000,999.966,1000,1000.034,999.966,1000,1000,1000,1000.034,999.966,1000,1000.069,999.966,1000,1000,1000,999.966,999.966,1000,1000,1000,1000,1000.034,999.966,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000,1000.034,999.966,1000,1000,1000,1000,999.966,999.966,1000.034,999.966,1000,999.966,1000.034,1000,1000.034,999.966,1000,1000,1000,1000.034,1000,999.966,1000.034,1000,1000,1000,1000.034,1000,1000,1000,1000.034,1000.034,1000,1000,1000,954.333]
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" 85 --> 111
    line [94.567,97.9,100,100,100,100.862,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.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,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,95.433]
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.873,1.88,1.879,1.878,1.879,1.88,1.88,1.88,1.88,1.88,1.871,1.877,1.875,1.875,1.875,1.875,1.875,1.873,1.873,1.874,1.866,1.873,1.873,1.873,1.874,1.873,1.872,1.87,1.869,1.903,1.898,1.902,1.903,1.905,1.906,1.905,1.907,1.908,1.908,1.91,1.904,1.911,1.911,1.912,1.912,1.914,1.915,1.916,1.917,1.918,1.914,1.919,1.92,1.919,1.92,1.921,1.922,1.923,1.894,1.894,1.89,1.892,1.891,1.891,1.891,1.89,1.89,1.889,1.887,1.889,1.883,1.887,1.887,1.887,1.886,1.886,1.887,1.885,1.884,1.883,1.879,1.881,1.881,1.881,1.88,1.88,1.882,1.882,1.881,1.891,1.917,1.92,1.919,1.919,1.92,1.921,1.922,1.922,1.921,1.922,1.919,1.92,1.92,1.92,1.921,1.921,1.921,1.921,1.921,1.921,1.921,1.923,1.924,1.925,1.925,1.925,1.925,1.926,1.918,1.891,1.891,1.892,1.892,1.892,1.892,1.893,1.893,1.892,1.891,1.891,1.89,1.892,1.892,1.892,1.892,1.892,1.892,1.893,1.893,1.895,1.894,1.895,1.894,1.893,1.892,1.892,1.891,1.89,1.89,1.889,1.903,1.907,1.906,1.906,1.905,1.905,1.905,1.904,1.904,1.903,1.902,1.903,1.902,1.902,1.902,1.902,1.901,1.9,1.895,1.895,1.894,1.895,1.894,1.894,1.893,1.894,1.894,1.895,1.894,1.877,1.872,1.875,1.874,1.874,1.874,1.874,1.874,1.875,1.874,1.874,1.873,1.874,1.875,1.875,1.875,1.874,1.874,1.874,1.873,1.873,1.871,1.871,1.873,1.873,1.871,1.87,1.869,1.869,1.868,1.867,1.875,1.876,1.876,1.876,1.875,1.874,1.874,1.873,1.871,1.869,1.869,1.867,1.867,1.865,1.865,1.864,1.863,1.862,1.862,1.862,1.861,1.859,1.86,1.858,1.858,1.857,1.855,1.855,1.855,1.842,1.841,1.84,1.842,1.843,1.843,1.842,1.842,1.844,1.845,1.843,1.845,1.844,1.848,1.848,1.85,1.849,1.849,1.848,1.848,1.848,1.849,1.848,1.851,1.85,1.85,1.85,1.85,1.85,1.851,1.851,1.852,1.852,1.854,1.854,1.853,1.851,1.85,1.848,1.849,1.849,1.849,1.846,1.847,1.846,1.847,1.847,1.846,1.846,1.846,1.844,1.845,1.843,1.845,1.845,1.846,1.846,1.846,1.846,1.845,1.843,1.843,1.842,1.842,1.843,1.845,1.845,1.846,1.846,1.846,1.845,1.846,1.845,1.846,1.846,1.845,1.845,1.846,1.847,1.847,1.845,1.846,1.845,1.846,1.846,1.846,1.846,1.846,1.846,1.846,1.845,1.846,1.846,1.849,1.849,1.85,1.85,1.851,1.851,1.852,1.852,1.853,1.853,1.856,1.857,1.858,1.857,1.858,1.859,1.86,1.86,1.862,1.861,1.862,1.863,1.864,1.864,1.865,1.866,1.866,1.865,1.867,1.863,1.864,1.864,1.864,1.863,1.862,1.862,1.861,1.859,1.86,1.858,1.858,1.858,1.857,1.857,1.855,1.854,1.853,1.852,1.852,1.85,1.855,1.854,1.855,1.854,1.853,1.853,1.852,1.85,1.851,1.849,1.851,1.851,1.851,1.85,1.852,1.852,1.853,1.849,1.849,1.849,1.852,1.852,1.852,1.852,1.853,1.854,1.854,1.854,1.855,1.851,1.851,1.851,1.852,1.853,1.852,1.853,1.854,1.856,1.857,1.858,1.861,1.862,1.863,1.862,1.862,1.861,1.862,1.862,1.864,1.862,1.864,1.864,1.865,1.865,1.864,1.865,1.864,1.863,1.864,1.864,1.866,1.865,1.864,1.864,1.864,1.862,1.861,1.858,1.857,1.853,1.861,1.86,1.86,1.861,1.862,1.861,1.861,1.859,1.859,1.856,1.858,1.857,1.856,1.855,1.854,1.854,1.854,1.853,1.852,1.851,1.851,1.851,1.851,1.85,1.85,1.85,1.852,1.851,1.85,1.841,1.844,1.843,1.843,1.843,1.843,1.843,1.842,1.842,1.842,1.841,1.846,1.846,1.847,1.848,1.848,1.849,1.849,1.848,1.846,1.847,1.849,1.851,1.853,1.853,1.854,1.854,1.853,1.853,1.852,1.852,1.854,1.854,1.854,1.856,1.855,1.855,1.854,1.854,1.852,1.849,1.849,1.85,1.847,1.847,1.846,1.846,1.847,1.847,1.847,1.846,1.844,1.843,1.844,1.842,1.841,1.841,1.841,1.842,1.839,1.838,1.837,1.84,1.838,1.838,1.837,1.837,1.838,1.84,1.841,1.842,1.84,1.844,1.843,1.843,1.843,1.843,1.844,1.844,1.842,1.843,1.843,1.846,1.846,1.846,1.848,1.849,1.849,1.849,1.849,1.849,1.845]
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.963,2.969,2.968,2.966,2.965,2.964,2.964,2.964,2.961,2.962,2.955,2.959,2.957,2.957,2.956,2.957,2.955,2.954,2.951,2.954,2.944,2.947,2.945,2.943,2.943,2.941,2.941,2.938,2.936,2.965,2.957,2.964,2.963,2.962,2.961,2.961,2.961,2.962,2.962,2.963,2.958,2.966,2.965,2.965,2.965,2.964,2.965,2.965,2.963,2.965,2.964,2.968,2.971,2.97,2.97,2.97,2.972,2.972,2.946,2.947,2.943,2.948,2.949,2.95,2.95,2.949,2.947,2.947,2.946,2.948,2.942,2.946,2.945,2.945,2.946,2.946,2.945,2.946,2.947,2.947,2.945,2.946,2.947,2.948,2.948,2.947,2.948,2.948,2.948,2.956,2.979,2.982,2.982,2.984,2.984,2.984,2.985,2.984,2.984,2.984,2.986,2.987,2.989,2.989,2.989,2.99,2.99,2.989,2.989,2.986,2.986,2.988,2.987,2.988,2.989,2.991,2.992,2.991,2.982,2.96,2.958,2.96,2.958,2.958,2.959,2.962,2.962,2.961,2.959,2.957,2.958,2.962,2.961,2.961,2.961,2.962,2.961,2.963,2.964,2.968,2.966,2.966,2.966,2.965,2.963,2.963,2.963,2.964,2.961,2.964,2.974,2.977,2.978,2.978,2.978,2.978,2.977,2.977,2.977,2.974,2.969,2.969,2.97,2.969,2.966,2.966,2.965,2.963,2.956,2.956,2.958,2.958,2.957,2.956,2.956,2.957,2.957,2.959,2.956,2.943,2.942,2.944,2.945,2.942,2.942,2.944,2.945,2.944,2.945,2.947,2.946,2.945,2.945,2.945,2.946,2.947,2.947,2.948,2.947,2.944,2.944,2.944,2.944,2.943,2.943,2.943,2.943,2.947,2.948,2.946,2.954,2.954,2.954,2.955,2.955,2.954,2.955,2.957,2.954,2.955,2.958,2.96,2.963,2.963,2.962,2.964,2.964,2.963,2.965,2.963,2.965,2.962,2.965,2.962,2.961,2.96,2.954,2.954,2.954,2.941,2.939,2.94,2.942,2.943,2.943,2.942,2.939,2.94,2.939,2.935,2.933,2.932,2.934,2.933,2.933,2.931,2.932,2.93,2.931,2.929,2.933,2.931,2.938,2.938,2.936,2.934,2.93,2.93,2.932,2.932,2.933,2.931,2.932,2.932,2.93,2.93,2.93,2.929,2.932,2.934,2.935,2.931,2.933,2.93,2.931,2.931,2.934,2.933,2.933,2.932,2.933,2.927,2.927,2.929,2.931,2.931,2.933,2.932,2.934,2.93,2.929,2.927,2.927,2.929,2.93,2.93,2.93,2.927,2.926,2.922,2.925,2.923,2.925,2.925,2.925,2.925,2.926,2.926,2.926,2.923,2.925,2.925,2.929,2.929,2.928,2.925,2.925,2.925,2.926,2.925,2.926,2.925,2.925,2.924,2.925,2.924,2.926,2.926,2.928,2.926,2.927,2.926,2.927,2.926,2.927,2.925,2.928,2.929,2.931,2.93,2.929,2.927,2.928,2.928,2.93,2.93,2.929,2.929,2.931,2.932,2.935,2.933,2.936,2.934,2.936,2.934,2.934,2.935,2.934,2.931,2.932,2.933,2.932,2.931,2.933,2.932,2.929,2.928,2.927,2.927,2.928,2.926,2.932,2.929,2.93,2.928,2.927,2.925,2.924,2.922,2.928,2.926,2.929,2.928,2.928,2.926,2.927,2.928,2.927,2.927,2.925,2.925,2.928,2.928,2.928,2.93,2.931,2.929,2.928,2.925,2.926,2.921,2.923,2.923,2.925,2.926,2.927,2.926,2.928,2.924,2.926,2.926,2.93,2.933,2.934,2.932,2.931,2.932,2.934,2.934,2.935,2.931,2.934,2.934,2.934,2.935,2.938,2.937,2.937,2.935,2.935,2.937,2.941,2.94,2.941,2.941,2.941,2.938,2.942,2.94,2.939,2.937,2.945,2.943,2.943,2.945,2.945,2.942,2.942,2.942,2.942,2.938,2.94,2.939,2.94,2.938,2.939,2.942,2.943,2.945,2.944,2.94,2.94,2.939,2.938,2.936,2.939,2.936,2.937,2.937,2.936,2.926,2.928,2.927,2.927,2.929,2.929,2.929,2.929,2.929,2.927,2.926,2.931,2.93,2.932,2.932,2.929,2.929,2.925,2.922,2.921,2.923,2.926,2.932,2.932,2.931,2.928,2.926,2.924,2.924,2.924,2.925,2.927,2.931,2.931,2.933,2.932,2.931,2.931,2.932,2.93,2.926,2.927,2.93,2.929,2.929,2.929,2.929,2.931,2.931,2.929,2.929,2.925,2.926,2.925,2.925,2.924,2.924,2.926,2.924,2.923,2.925,2.919,2.922,2.918,2.919,2.918,2.916,2.917,2.918,2.919,2.917,2.913,2.915,2.915,2.916,2.919,2.919,2.919,2.916,2.912,2.909,2.91,2.914,2.915,2.915,2.916,2.918,2.918,2.919,2.915,2.916,2.912]
Loading

Copy link

github-actions bot commented Feb 10, 2025

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

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, %" 86 --> 111
    line [99.447,99.423,99.196,98.964,98.963,98.938,98.996,99.021,99.057,99.092,99.097,99.096,99.091,99.08,99.072,99.072,99.082,99.067,99.073,99.032,99.078,99.117,98.999,98.949,98.979,99.002,98.917,98.792,99.381,98.65,98.553,98.554,98.717,98.691,98.694,98.632,98.551,98.681,98.494,98.453,98.408,98.375,98.317,98.266,98.206,98.148,98.079,98.019,98.022,97.909,97.862,97.929,97.971,97.91,97.849,98.075,98.441,97.459,98.8,98.999,99.309,99.332,99.397,99.477,99.496,99.606,99.382,99.613,99.623,99.654,99.664,99.675,99.723,99.758,99.779,99.815,99.822,99.827,100.214,99.842,99.913,99.949,99.95,99.97,99.971,99.976,99.971,99.97,99.874,99.712,99.682,99.634,99.471,99.393,99.024,98.946,98.869,98.807,98.701,98.639,98.582,98.549,98.45,98.363,98.28,98.192,98.061,97.309,97.819,97.653,97.451,97.246,97.054,96.81,96.466,96.069,95.851,96.1,96.563,96.631,96.735,97.267,97.58,98.951,99.168,99.38,99.504,99.708,99.767,99.797,99.811,99.86,99.892,99.919,99.944,99.946,99.948,99.95,99.961,99.972,99.973,99.974,99.975,99.984,99.992,99.992,99.993,100,100,100,100,100,100,100,100,100,100,100,100,100,99.994,100,100,100,99.994,100,100,100,100,100,100,100,100,99.995,100,100,100.005,100,100,100,100,100,100,100,100,100,100,100,100,100.005,100,100,100,100.005,100,100,100,100,100,100,100,100,100.006,100,100,99.994,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.995,100,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.004,99.996,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.004,100,100,100,100,100,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.982,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.996,100,100,100.004,100,100,100,100,100,100,100,100,100,100.017,100.017,100,100,100.004,100,100,100,100,100,100,100,100,100,100,100,100.004,100,100,99.909,99.912,99.91,99.908,99.907,99.906,99.905,99.904,99.902,99.901,99.88,99.9,99.898,99.897,99.891,99.895,99.894,99.892,99.891,99.889,99.888,99.888,99.886,99.886,99.885,99.884,99.884,99.884,99.882,100,100,100,100,100,100,100,100,100,100,100,100,100,99.995,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.019,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.996,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.991,99.996,99.991,100.013,99.991,99.991,99.991,99.991,99.991,99.974,100,100,100,100,100,100,100,100,100,100.004,100,100,100,100,100,100,100,100,100,100,99.996,100,99.979,100,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,100,100,100,100,100,100,99.996,100,100,100,100,100,100,100,99.984,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,100,100.016,100,100.012,100.004,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, %" 48 --> 111
    line [67.719,67.316,66.599,65.679,64.986,64.457,64.301,63.946,63.385,62.956,62.226,61.635,61.18,60.398,59.5,59.448,58.774,57.329,56.379,56.198,56.465,56.694,56.286,55.204,55.151,54.952,54.68,54.949,55.068,54.377,54.452,54.969,55.556,55.21,55.034,54.914,55.811,55.928,56.085,55.52,55.244,56.326,56.716,56.767,56.981,57.825,58.279,57.125,56.005,55.405,55.316,55.387,56.613,56.663,57.253,58.934,60.299,59.574,60.827,61.59,61.486,61.875,63.166,64.456,64.286,63.76,64.713,64.556,64.738,65.428,64.537,65.361,65.349,64.936,64.759,64.894,66.741,68.608,69.945,70.653,71.744,72.802,74.065,74.463,73.853,73.288,74.673,75.23,74.328,73.927,73.143,72.821,72.772,73.44,73.326,73.134,73.971,74.572,75.394,75.925,75.925,77.304,78.28,78.924,79.636,79.814,79.463,79.164,79.257,79.549,78.91,78.977,79.738,80.917,81.658,81.612,81.486,82.307,83.126,83.921,84.579,85.047,85.358,86.958,87.696,88.624,89.373,89.982,90.541,91.259,91.333,91.756,92.145,92.507,92.865,93.139,93.465,93.949,94.142,94.73,95.074,95.465,95.636,96.004,96.206,97.017,97.417,98.035,98.838,99.017,99.29,99.863,99.862,99.862,99.862,99.862,99.862,99.863,99.862,99.862,99.862,99.862,99.862,99.862,99.827,99.862,99.862,99.863,99.863,99.862,99.862,99.862,99.863,99.862,99.862,99.862,99.862,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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.035,100,99.828,99.446,99.449,99.448,99.447,99.447,99.451,99.449,99.448,99.449,99.448,99.45,99.448,99.45,99.451,99.45,99.45,99.451,99.447,99.45,99.45,99.449,99.449,99.449,99.451,99.451,99.451,99.451,99.45,99.621,100,100,100,100,100,100,100,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.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,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,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]
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" 146 --> 1108
    line [683.194,713.982,745.403,785.277,813.429,844.818,878.39,914.102,947.873,983.931,988.552,988.276,985.897,978.655,984.862,985.103,1006.621,990.069,997.069,997.069,998.414,992.207,991.759,984.069,992.931,994.828,980.793,964.448,952.897,934.621,924.448,920.345,892.241,879.828,868.517,844.241,830.724,815.483,801.414,782.517,771.31,755.414,727.276,715.931,701.448,679.759,665.793,647.469,627.724,616.862,601.724,584.414,576.069,551.069,537.103,533.862,541.828,538.828,551.793,551.172,538.931,546.966,543.241,554.103,560.862,559.793,563.379,561.414,567.414,567.724,574.483,594.172,586.069,599.241,609.552,614.828,620.517,637.828,645.966,655.552,673.207,682,693.241,696.138,703.793,704.966,712.069,699.379,686.862,681.414,672.759,669.379,645.276,636.345,621.586,605.483,591.724,575.138,557.621,539.721,520.379,508.483,482.655,461.379,443.138,425.241,396.483,375.414,352.517,329.138,304.414,281.724,263.379,243.241,221.483,199.138,188.655,183.897,177.586,169.931,165.793,162.759,165.276,170.913,178.138,189.172,201.793,212.276,221.567,238.172,255.138,270.483,287.069,297.276,306.931,320.241,333.862,345.69,354.759,368.586,386.931,400.103,414.31,424.621,441.828,458.793,478.381,497.414,510.31,524,536.828,543.138,550.16,554.966,558.483,564.379,569.172,578.172,576.931,575.621,579.586,580.172,587.966,594.931,602.069,604,612.103,624.379,631.379,634.31,640.276,645.724,655.828,655.862,659.828,664.046,668.138,675.345,682.552,695.138,706.862,713.586,723.31,725.483,721.034,715.414,702.71,691,682.586,675.862,671.966,665.241,658.034,648.517,641.828,631.069,619.621,610.345,600,593,583.586,587.138,593.517,592.793,592.897,593.931,599.931,604.448,602.345,599.655,592.517,589.966,592.931,599.69,610.793,629.147,649.138,662.276,672.069,682.793,695.793,706.655,719.034,727.828,735.655,748.862,761.793,776.207,785.966,796.552,792.586,791.655,792.897,793.759,793.448,790.724,790.103,792.966,796.069,808.414,809.724,810.724,814,812.828,813.793,815.138,815.552,815.379,814.379,813.241,816.31,815.345,820.897,826.414,822.414,823.207,821.759,822.759,824.379,828.621,828.655,827.943,825.276,825.483,824.207,823.069,822.966,823.655,823.276,824.31,824.103,822.276,823.862,823.655,822.621,826.759,833.414,837.759,840.621,843.621,850.241,840.655,831.862,827.586,810,799.517,787.586,776.897,768.276,761.172,751.5,745.828,735.724,727.915,717.448,704.379,696.172,681.517,670.276,662.552,652.345,642.759,628.828,614.517,597.103,577.448,559.207,540.759,524.966,505.448,502.862,497.621,490.621,498.552,506.414,516.897,526.759,534.793,542.759,554.448,563.586,573.837,583.523,594.724,601.828,606.138,619.034,630.207,640.138,650.483,662.241,667.69,681.207,695.966,706.517,720.621,735.345,747.759,763.172,773.69,787.379,803.241,810.138,811.103,806.655,807.31,808.103,808.966,810.31,811.103,812.843,814.172,812.034,815.793,816.966,816.862,816.897,812.828,814.276,813.724,820.448,820.586,817.103,820.345,816.69,815.759,814.034,814.276,815.897,815.448,815.828,818.103,817.379,822.759,820.414,819,818.69,817.862,815.483,810.345,809.517,810.276,809.379,808.759,804.862,802,804.897,792.414,779.276,764.379,749.828,738.88,730.793,723.655,715.621,705.828,696.172,690,686.308,677.897,671.379,666.517,656.897,651.414,640.724,630.759,621.621,615.552,614.103,607.621,602.517,599.414,596.69,596.655,593.517,584.276,591.379,600,614.207,623.448,633.423,638.345,646.828,651.483,656.621,659.862,663.207,667.069,671,674.655,679.207,684.207,686.793,695.448,702.241,707.069,713.241,714.241,719.69,721.862,723.891,728.897,729.793,734.517,744.345,741.724,744.293,746,752.276,752.897,754.724,754.034,757.621,760.69,767.172,765.931,767.138,769.828,772.069,774.172,778.828,783.808,786.828,786.207,786.897,782.931,788,788.69,795.276,795.324,791.759,793.069,791.621,788.828,793.517,792.779,795.414,793.655,799.483,804.69,807.172,807.69,812.931,811.552,815.655,813.414,813.448,813.103,812.621,813.034,815.367,817.034,819.345,819.724,824.034,820.828,823.276,821.931,824.552,830.276,830.621,832.759,836.207,839.517,843.276,838.138,838.897,837.5,836.069,838.621,838.69,837.414,832.966,834.069,836.931,835.862,836.621,839.138,839.793,841.034,838.655,840.172,845.586,848.621,851.241,849.414,847.207,848.517,848.448,850.655,852.793,852.862,852.966,854.724,859.207,859.586,857.02,854.897,854,856.138,855.552,859.517,859.966,860.069,861.31,858.655,855.828,855.759,852.862,854.207,853,851.034,849.483,848.31,851.586,853.828,849.69,849.207,850.517,850.724,852.103,853.655,853.414,854.172,856.897,861.241,861.01,862.414,863.828,866.414,869.828,870.379,871.931,871.845,875.517,878.448,877.207,879.759,884.069,857.374]
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" 56 --> 113
    line [63.174,66.313,69.034,72.729,75.033,77.895,80.929,84.24,87.275,90.759,91.379,91.138,91.138,90.207,91.103,89.966,90.586,89.862,90.263,90.69,90.138,89.897,90.241,89.448,90.034,90.172,88.793,88.483,88.103,87.448,87.138,88.828,86.276,86.379,87.345,85.966,86.931,86.379,86.138,85.276,86.138,85.586,83.172,83.828,84.966,85.276,84.966,84.219,82.69,83.897,83.034,83.862,83.69,83.069,84.862,86.069,85.379,85.724,88.379,88.069,85.414,88.276,87.345,88.379,88.345,88.586,88.241,88.241,89.379,88.172,89.069,91.586,89.862,90.966,92.172,91.448,92.379,94.138,93.276,94.586,95.31,96.103,95.862,94.655,94.69,96.172,97.483,93.828,93.621,94.034,92.828,94.138,91.69,92.828,91.655,92.414,93,92.759,94.172,93.235,94.103,94.655,93.034,92.276,92.793,92.586,91.172,92.345,91.931,91.724,91.069,91.69,92.241,92.517,91.931,91.138,93.31,93.552,94.207,95.862,95.483,95.931,98.207,98.61,98.931,98.517,98.966,98.448,98.8,98.621,99.069,99.552,99.207,99.862,99.552,100.517,99.724,99.724,99.483,100.103,100.793,100.379,100.345,100.103,100.897,100.586,101.441,101.759,100.862,101.724,101.966,100.448,100.079,100.276,100.172,100.276,100.103,100.379,100.103,99.931,99.931,100.172,99.897,100.276,99.931,100.069,100.034,100.552,100.414,99.655,100.138,99.828,100.483,99.931,100.103,100.11,100.276,100,100.207,100.31,100.138,100.172,100.069,100.034,99.759,99.483,98.959,99.414,99.552,99.793,99.828,100.034,99.621,99.862,100.31,99.793,99.793,99.621,99.862,99.621,99.897,99.966,100.31,100.034,99.966,100.069,100.138,100.034,100,99.621,99.828,100.034,100.207,100.069,100.448,101.248,100.586,100.414,100.241,100.379,100.207,100.517,100.345,99.759,100.414,100.103,100.276,100.31,100.483,100.207,99.724,99.897,100.103,100.034,99.966,99.897,99.931,100.172,100.414,100.379,100.034,99.931,100.207,99.828,100.103,100.207,100.069,100.069,99.931,99.931,99.931,100,100.414,99.931,100,99.966,100.172,99.966,100.069,100.345,99.897,99.752,100.103,99.931,100.069,99.966,100.034,100,99.793,100.103,99.862,99.931,100.138,99.897,99.897,100.138,100.138,100.138,100.034,100.034,100,99.69,99.897,99.759,99.724,99.655,99.655,99.621,100,100.138,99.8,99.621,99.69,99.924,99.759,99.655,99.655,99.724,99.448,100.034,99.69,99.724,99.586,99.759,99.241,99.31,99.379,99.31,99.379,99.414,99.69,99.586,99.897,100.241,100.172,100.276,100.517,99.897,100.034,100.345,100.345,100.334,100.145,100.276,99.931,100.379,100.276,100.552,99.897,100.414,100.276,100.379,100.138,100.586,100.379,100.414,100.655,100.517,100.621,100.517,100.517,100.379,100.069,100.207,99.862,99.862,99.966,100.069,100.034,100,100.114,99.931,100,100.276,99.828,99.966,99.862,100.31,99.931,99.931,99.828,100.069,100,100.172,99.966,99.966,100.138,100.034,99.931,100.241,100.034,99.931,99.897,100.069,99.897,100.241,100.034,99.897,99.828,99.931,100,99.931,99.862,100.034,99.897,99.931,100.138,99.655,100.138,99.931,99.793,99.821,100.414,100.103,99.966,100.069,100.034,100.345,99.921,100.276,100.586,100.31,100.241,100.448,99.759,100.241,100.345,100.069,100.172,100.103,100.517,100.448,100.517,100.586,100.31,100.103,100.69,100.103,100.724,100.345,100.731,100.138,100.414,100.241,99.966,100.138,100.172,100.148,100.138,99.552,99.966,100.207,99.759,100.448,100.069,100.207,100.483,100.241,100.172,99.793,100.231,100.138,99.931,100.241,100.138,99.862,100.441,99.931,100.414,99.862,100,99.966,100.379,100.172,100.172,100,100.345,99.931,100.345,100.103,100.069,100.234,100.345,100.069,99.759,99.828,99.966,100.276,100.345,99.941,100.138,100.172,99.966,99.966,100.207,99.834,100.276,100,100.138,100.103,100.207,99.931,100.069,99.897,99.966,99.621,100.034,99.966,99.759,100,100.214,99.931,99.966,100.172,100.207,100.069,99.897,99.931,100,99.897,100.034,100.069,100,100.138,100.31,99.414,100.069,100.093,99.966,99.931,99.759,100.034,99.724,100.103,100.448,99.966,100,100.379,100.103,99.897,99.724,99.897,100,100.138,99.966,100,99.931,100.103,99.966,99.966,99.966,100,100.069,99.966,100.379,99.862,99.976,99.793,100,100.172,100.138,100.31,99.966,99.931,100.241,100,99.759,100.103,100.138,100.207,100.172,100.172,99.966,100.172,100.172,99.897,99.931,100.103,100.034,100.138,100.103,99.897,99.966,100.069,100.138,99.828,100.166,100,100.069,100.241,99.966,100.069,100,99.848,100.138,100.103,99.793,100.103,100.034,96.776]
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" 140 --> 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,992.441,985.502,982.38,975.921,966.797,959.821,949.852,943.526,938.703,936.543,933.528,930.882,930.822,934.787,943.998,947.989,953.983,957.239,967.834,972.104,975.859,977.829,980.4,984.598,988.668,992.931,994.933,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,996.17,972.05,953.836,933.637,911.123,886.199,865.639,837.194,812.853,787.583,744.792,711.055,677.537,645.248,582.448,522.562,495.015,485.181,473.014,461.609,451.178,444.59,432.337,417.659,402.375,382.498,368.547,350.255,328.642,312.726,292.178,275.712,266.692,256.257,237.762,211.259,204.404,200.485,199.596,199.448,198.004,197.267,196.186,195.886,195.16,193.509,192.377,191.963,191.288,190.69,188.902,188.47,187.944,187.354,186.9,185.549,184.82,183.673,181.914,181.309,180.113,179.542,180.045,181.067,183.573,186.66,188.855,189.922,190.669,191.82,193.149,194.711,195.909,197.56,199.395,204.031,228.243,239.863,256.824,255.572,250.005,250.811,251.009,250.572,247.551,245.641,246.531,247.653,258.886,261.721,260.07,255.264,239.414,199.819,196.108,193.658,192.354,190.982,189.187,187.262,185.003,183.199,181.693,178.955,177.098,174.1,172.281,169.381,170.272,171.048,170.714,170.339,170.513,171.109,171.051,170.551,170.149,167.455,166.664,166.858,165.831,166.289,166.257,165.82,165.635,165.727,166.059,165.996,165.283,165.929,164.433,162.729,163.59,163.092,163.072,162.771,162.72,161.462,160.846,160.787,161.527,161.498,161.693,162.336,162.614,162.712,162.58,162.376,162.155,163.059,162.806,162.959,163.296,162.391,160.899,159.63,158.865,158.069,155.731,158.93,161.486,162.663,167.316,170.435,173.158,175.303,176.964,178.2,180.133,181.273,182.615,184.151,185.32,186.981,187.867,189.792,191.457,192.329,193.254,194.371,196.175,197.861,199.698,222.748,255.277,284.193,299.86,323.822,328.57,339.298,350.546,341.237,332.479,322.813,315.359,309.472,303.577,293.152,284.19,277.103,265.204,257.767,247.789,243.512,223.532,203.312,199.36,198.417,197.114,195.87,193.824,191.387,189.446,186.409,183.296,180.965,177.103,174.765,171.616,167.704,165.82,165.583,166.578,166.371,166.094,165.738,165.385,165.777,165.295,164.681,165.155,164.322,164.033,163.823,164.328,165.398,165.107,165.102,163.57,163.667,164.663,164.243,165.325,165.408,165.805,165.815,165.269,165.642,165.47,165.011,165.189,164.384,165.086,165.627,165.371,165.706,165.79,166.975,167.303,167.252,167.392,167.53,168.224,168.808,168.402,173.102,177.858,183.064,187.768,192.27,195.253,197.799,199.731,235.252,259.988,274.399,281.761,293.569,300.749,308.941,322.248,331.591,345.456,357.582,364.4,368.694,370.487,375.967,379.149,381.3,383.486,384.367,387.486,393.421,385.156,377.923,365.265,354.35,340.832,331.811,321.918,317.987,306.221,300.805,293.045,288.985,281.687,277.344,272.025,260.748,251.865,227.459,199.872,199.585,199.112,199.096,198.399,198.015,197.872,197.527,197.489,197.104,195.897,195.818,195.935,195.722,195.379,195.274,195.196,195.278,194.961,194.634,193.957,194.077,193.929,193.834,193.957,193.613,193.255,192.975,192.683,192.691,192.448,193.01,192.757,192.692,192.462,192.49,192.693,192.652,192.526,192.769,192.566,192.386,192.217,192.285,191.906,191.519,191.318,191.22,190.786,190.828,190.537,190.783,190.842,190.793,190.964,190.989,190.743,190.533,190.571,190.767,190.297,190.45,190.266,190.298,190.062,189.743,189.747,189.72,189.191,188.935,188.519,188.875,189.042,189.187,189.266,188.936,188.784,188.976,189.541,189.894,189.524,189.504,189.195,188.948,188.8,188.611,188.959,188.597,187.97,187.517,187.343,187.545,187.814,187.79,187.692,187.47,187.179,187.4,187.294,187.183,186.842,186.562,186.839,186.989,187.152,187.12,187.114,186.555,186.112,186.199,186.223,186.558,186.851,186.912,187.246,187.072,187.371,187.459,187.701,187.693,187.384,187.049,187.725,187.814,187.716,187.79,187.543,187.426,187.484,187.395,187.142,186.852,187.134,186.997,186.795,186.674,186.334,186.266,186.102,186.064,185.822,185.4,185.468,185.201,184.867,184.591]
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" 283 --> 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,986.415,978.118,941.689,913.024,860.927,747.39,683.046,499.237,482.303,478.108,476.596,476.116,475.715,475.085,474.08,473.852,473.615,473.113,472.848,470.426,469.455,468.03,467.54,466.249,464.248,462.703,462.177,461.312,460.853,456.129,454.019,452.596,451.23,451.087,447.889,445.82,442.603,437.949,435.919,431.771,429.473,431.119,432.698,440.677,458.115,462.017,463.963,465.24,465.947,467.194,468.571,470.078,471.618,473.615,474.648,475.812,476.335,476.922,476.916,476.355,476.337,476.483,476.263,475.948,475.798,475.853,476.018,476.967,477.234,477.172,476.585,475.83,471.276,459.909,456.605,454.53,452.302,449.593,446.686,443.194,440.149,438.357,430.919,424.792,415.029,408.994,396.929,400.732,405.327,403.874,402.651,403.367,406.347,406.112,404.231,402.5,386.878,383.96,379.917,379.252,374.856,377.683,376.165,376.686,378.747,376.506,376.154,373.265,378.151,366.829,346.396,352.542,350.052,350.258,347.955,345.089,336.517,330.914,335,343.363,343.633,336.966,346.884,348.906,348.958,348.746,343.363,343.741,348.007,352.339,350.67,350.67,344.429,335.623,333.74,333.276,330.02,314.894,339.389,361.608,370.463,394.927,406.818,416.799,423.379,427.461,430.708,435.124,437.373,440.701,444.484,445.872,448.65,450.06,453.982,456.387,457.879,459.131,460.428,462.802,465.026,467.025,469.014,471.364,474.212,475.544,477.851,478.046,479.346,480.103,479.565,479.121,477.853,477.333,476.874,476.522,475.637,475.019,474.289,473.397,472.584,472.136,471.759,469.764,468.475,467.587,466.557,465.171,464.189,461.776,459.064,456.201,451.349,444.824,440.114,431.576,424.729,412.879,397.017,385.145,380.247,384.775,381.311,380.863,376.686,374.597,374.64,374.147,371.009,372.434,366.606,363.443,362.823,366.338,369.356,367.064,368.273,355.731,357.745,360.129,353.775,361.952,364.533,363.448,363.589,363.73,365.417,364.86,360.225,362.918,356.809,362.484,366.651,363.16,364.626,363.443,369.85,371.302,370.239,372.982,378.109,383.185,387.383,388.435,408.617,429.875,446.08,459.948,467.974,472.365,475.499,477.027,479.737,481.354,482.219,483.004,484.144,484.803,485.456,485.978,486.618,487.76,489.234,489.666,490.099,490.224,490.556,490.782,490.971,491.076,491.192,491.371,491.225,488.859,486.422,483.287,480.2,478.29,477.326,476.331,476.233,475.347,475.24,474.938,474.695,474.116,473.896,473.591,473.349,473.156,472.325,470.761,470.436,469.937,470.22,469.968,469.968,469.968,469.437,469.101,468.934,467.602,467.65,467.856,467.723,467.179,467.135,467.345,467.203,466.721,466.633,465.765,466.184,466.063,465.627,465.337,464.992,464.71,464.044,463.632,463.547,463.25,463.512,462.513,462.224,461.055,460.458,461.491,461.477,461.206,461.594,461.401,461.314,460.738,460.952,460.364,459.38,458.761,458.718,457.407,457.687,456.86,457.149,457.254,457.284,457.746,458.293,458.006,457.424,457.2,457.363,457.012,457.738,457.018,457.299,457.269,456.458,456.745,457.071,456.061,455,453.629,454.717,454.844,455.201,455.354,455.139,455.124,455.956,456.264,457.312,457.063,457.837,457.988,457.32,456.262,455.579,456.386,456.309,455.111,453.881,453.049,453.493,454.127,453.947,453.408,452.631,451.99,452.296,452.422,452.044,450.675,450.246,450.483,451.082,451.259,451.117,450.909,450.761,449.495,449.629,449.297,449.536,450.462,451.073,452.132,451.567,451.421,452.429,452.887,453.095,452.22,451.555,452.492,452.514,452.129,451.867,451.292,450.675,451.844,452.112,451.438,450.932,451.637,451.397,450.702,449.879,448.477,448.607,447.59,447.217,447.072,446.307,446.671,446.505,446.078,445.768]
Loading

Copy link

github-actions bot commented Feb 10, 2025

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

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,99.997,100,100,100,100,100,100,100,100,100,100,99.993,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.976,99.972,99.976,99.976,99.976,99.979,99.976,99.976,99.976,99.966,99.976,99.976,99.976,99.976,99.976,99.976,99.983,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100.01,100,100,100,100,100,100,100,100,100,99.897,99.82,99.81,99.809,99.81,99.81,99.81,99.81,99.81,99.807,99.81,99.81,99.81,99.81,99.81,99.81,99.817,99.81,99.81,99.806,99.796,99.796,99.796,99.796,99.796,99.796,99.796,99.796,99.8,99.899,99.976,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.979,99.986,99.986,99.986,100,100,100,100,100,100,100,100,100,100,100,99.863,98.787,97.89,97.521,97.238,96.87,96.675,96.495,96.333,96.176,96.036,95.857,95.668,95.474,95.253,95.042,94.793,94.515,94.199,93.862,93.478,93.045,92.545,91.937,91.245,90.468,89.45,88.21,87.174,86.767,89.832,93.33,94.68,95.94,97.982,98.657,99.199,99.48,99.573,99.667,99.694,99.791,99.788,99.786,99.784,99.783,99.818,99.815,99.812,99.808,99.805,99.76,99.797,99.794,99.791,99.792,99.787,99.784,99.782,99.781,99.777,99.779,99.779,99.778,99.821,99.817,99.863,99.863,99.86,99.858,99.903,99.902,99.848,99.789,99.668,99.65,99.628,99.605,99.59,99.564,99.619,99.599,99.573,99.545,99.503,99.465,99.423,99.361,99.291,99.21,99.077,98.908,98.701,98.795,98.662,98.268,97.59,96.33,95,93.846,84.615,78.571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,99.823,99.621,99.551,99.552,99.482,99.378,99.24,99.206,99.137,99.068,98.999,98.964,98.966,98.895,98.896,98.862,98.862,98.86,98.828,98.756,98.722,98.689,98.621,98.619,98.586,98.554,98.55,98.552,98.502,98.684,98.862,98.897,98.897,98.966,99.035,99.173,99.139,99.207,99.242,99.31,99.277,99.24,99.207,99.207,99.241,99.207,99.208,99.241,99.312,99.346,99.379,99.413,99.414,99.414,99.413,99.38,99.345,99.345,99.346,99.345,99.332,98.748,97.594,97.39,97.28,97.249,97.23,97.195,97.169,97.232,97.215,97.265,97.264,97.237,97.247,97.264,97.229,97.197,97.188,97.034,96.878,96.514,96.528,96.576,96.614,96.646,96.713,96.712,96.713,96.808,97.353,98.455,98.648,98.524,98.583,98.48,98.547,98.578,98.551,98.578,98.652,98.619,98.642,98.548,98.443,98.406,98.447,98.377,98.525,98.638,98.868,98.893,98.856,98.714,98.651,98.551,98.548,98.545,98.51,98.517,98.499,98.043,97.292,96.751,96.559,96.464,96.401,96.262,96.047,95.53,95.156,94.437,93.83,93.229,92.48,92.156,92.033,91.403,90.778,89.868,89.445,89.188,88.762,88.358,88.035,87.6,87.466,87.427,87.263,87.193,87.415,88.076,88.195,88.28,88.406,88.32,88.334,88.505,88.972,89.408,89.89,90.292,90.672,91.279,91.369,91.44,91.724,92.065,92.416,92.164,91.698,91.508,91.264,91.031,90.878,90.33,89.812,89.331,88.9,88.808,88.241,87.932,87.374,86.632,85.962,85.183,84.337,83.438,82.575,81.533,80.459,79.492,78.522,77.72,76.734,76.316,75.676,75.483,75.078,74.784,74.534,73.997,73.615,72.822,72.341,71.577,70.68,70.076,69.396,68.735,67.939,67.095,66.091,65.337,64.844,64.251,63.791,63.254,62.927,62.639,62.073,61.331,60.526,59.834,58.787,58.388,57.494,56.697,55.775,54.64,53.972,53.123,52.48,51.579,51.207,51.07,50.691,50.242,49.966,49.445,49.346,49.446,48.912,48.588,48.166,47.668,47.219,47.114,46.906,47.037,46.978,46.766,46.773,47.002,46.634,46.547,46.39,46.061,45.853,45.762,45.875,45.489,45.574,45.269,44.64,44.091,43.484,43.164,43.162,42.659,42.032,41.43,40.859,40.18,39.681,39.183,38.595,37.98,37.162,36.552,36.087,35.571,34.695,34.234,33.818,33.736,33.437,33.253,32.801,32.054,31.87,31.592,31.094,30.775,30.471,30.038,29.593,29.389,29.139,28.645,28.729,28.409,28.226,27.979,27.999,27.543,27.32,27.072,26.821,26.749,26.772,26.821,26.33,25.907,25.526,25.414,24.966,24.742,24.871,25.189,25.233,25.069,24.585,24.066,23.903,23.851,23.277,23.215,23.665,23.742,24.043,24.07,24.355,24.406,24.767,24.931,25.353,25.539,25.424,25.095,24.827,24.897,24.81,24.612,24.594,24.638,24.716,24.81,24.343,23.824,23.88,24.26,24.604,24.742,24.526,24.776,24.767,24.595,24.621,24.128,23.886,23.373,23.045,22.796,22.514,22.203,21.94,21.246,20.465,19.73,18.963,18.328,17.725,17.004,16.469,15.495,14.412,13.728,13.068,12.284,11.63,10.694,10.028,9.268,8.295,7.473,6.462,5.376,4.993,4.323,3.792,2.908,2.053,1.405,0.578,0.108,0.145,0.902,1.45,2.541,3.26,3.589,3.697,3.696,3.689,3.684,3.684,3.686,3.686,3.68,3.68,3.683,3.68,3.673,3.672,3.668,3.667,3.665,3.664,3.659,3.622,3.646,3.647,3.642,3.64,3.506,2.766,2.221,1.142,0.428,0.107]
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" 0 --> 1128
    line [918.444,951.677,985.01,1000.034,1000,1000.034,1000.034,999.966,1000,1000.069,1000.034,1000.276,1000.103,1000.034,1000.034,1000.034,1000.034,1000.276,1000,1000.034,999.759,1000,999.897,1000.069,1000.034,999.552,1000.103,999.897,990.586,988.103,1000.517,999.172,999.897,999.621,999.207,999.207,999.172,1000.069,999.621,999.897,999.069,999.931,999.862,1000.103,1000.103,1000.069,999.897,999.828,999.138,999.655,1000.069,1000.345,999.759,999.966,1001.172,999.483,1000.241,1009.552,1011.31,999.828,1000.862,1000.172,1000.621,1000.931,1001.034,1000.931,1000.241,1000.414,999.828,1001.207,999.931,999.897,1000.138,999.897,999.897,1000.31,1000.241,1000.793,1001.31,999.966,999.483,1000.069,1000.276,999.586,1000.552,1000.172,1000.207,1000.586,999.966,984.86,973.345,994.276,997.034,995.31,999.138,1000.655,998.966,1000,999.034,985.172,999.655,997.621,1000.276,996.897,998.103,999.034,999.069,995.966,995.586,977.966,995.897,997.379,998,999.621,999.207,998.31,997.931,998.276,1014.759,1024.69,1003.966,998.966,1000.966,997.31,996.31,997.69,998.207,999.103,1013.276,997.69,999.966,994.448,1001,998.897,998.552,1000.31,1000.517,1001.207,1018.448,1001.759,1000.138,999.034,997.621,998.414,999.621,1000.379,998.517,997.862,1000.621,990.966,980.034,983.724,983.966,973.828,953.862,933,906.414,877.552,848.276,816.069,789.862,756.621,726.759,695.552,663.276,635.034,604.586,574.586,543.345,513.483,483.241,453.172,422.759,391.31,360.379,331,299.069,267.621,245.975,228.276,192.966,161.828,139.345,128.241,116.172,110.379,107.69,106,105.034,103.621,101.31,99.069,97.759,96.828,95.655,95.138,94.552,93.276,91.793,89.793,88.517,86.034,84.862,83.828,82.552,82.724,80.897,79.698,79.138,78.552,77.414,77.966,78,77.759,76.966,75.276,75.31,75.483,73.759,72.655,71.414,70.414,67.862,65.345,62.276,59.069,55.69,52.345,50.517,47.448,45.241,43,40.379,37.862,34.724,32.241,29.862,26.966,24.31,21.828,18.69,15.793,13.276,11.448,10.31,7.966,5.724,3.759,2.759,2.241,0.897,0.483,0.069,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.103,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207,0.207]
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" 7 --> 114
    line [91.835,95.168,98.468,100,100,100,100,100,100,100,100,100.069,100,100,100,99.966,100,100.034,99.966,100,99.931,99.966,99.966,100,100,99.897,100,99.966,98.69,97.621,99.966,99.897,99.966,99.897,99.862,99.862,99.821,99.931,99.897,99.897,99.828,100,99.862,99.966,100,99.966,99.862,100.034,99.759,99.828,99.931,100,99.897,99.966,100.138,99.862,100,101.276,102.207,100,100.055,100,100.069,100.103,100.103,100.145,100.034,100.034,100,100.138,99.759,100,100,100,99.966,100.103,99.931,100.207,100.241,100,99.828,100.034,100,99.897,100.103,100,100,100.103,100,98.151,96.414,98.897,99.103,98.897,99.034,99.586,99.586,99.862,99.655,97.828,99.621,99.552,99.828,98.966,99.552,99.552,99.655,99.345,98.828,97.207,98.931,99.31,99.69,99.793,99.724,99.655,99.621,99.655,101.552,102.897,100.448,99.448,100.448,99.793,99.828,99.655,99.414,99.966,101.828,99.759,99.897,99,99.759,99.69,99.517,99.931,99.828,100.552,101.241,100.552,99.724,99.448,99.241,99.655,99.931,99.759,99.552,99.517,99.966,98.759,98.655,98.034,99.759,99.207,99.483,99.655,99.621,99.448,99.517,98.241,99.793,100.034,99.31,99.966,99.345,99.552,99.069,100.207,99.034,99.966,99.828,99.724,99.517,99.138,99.552,100.138,100.103,99.897,101.231,101.931,101.793,100.483,100.621,100.828,100.379,100.207,100.793,101,101.897,100.621,100.517,100.552,100.034,100.276,100.31,100.414,100.379,100.034,99.448,99.69,99.897,99.862,99.966,99.793,99.138,99.172,99.552,99.424,99.207,99.414,99.724,99.414,98.793,99.483,99.138,99.069,98.69,98.552,98.966,99.172,99.034,99.379,99.207,99.448,99.586,99.517,99.862,99.897,99.69,99.931,99.724,99.586,99.724,99.862,99.724,99.379,99.448,99.828,99.483,99.379,99.241,99.862,99.379,99.655,99.448,99.517,100.034,99.897,99.586,99.828,99.517,99.586,99.414,99.483,99.69,99.621,99.379,99.414,99.207,99.414,99.379,99.414,99.345,100,99.862,99.793,99.655,100.069,99.379,100.138,99.586,99.828,98.931,99.655,99.828,99.828,99.759,99.759,100.069,99.828,99.69,99.897,100.069,99.897,99.862,99.828,99.793,99.793,100.069,99.897,99.759,100.103,99.483,99.724,99.793,99.759,99.621,100.103,99.586,99.759,99.379,100.345,99.552,99.586,99.621,99.621,99.69,99.379,99.621,99.759,99.655,99.586,99.517,99.621,99.862,99.828,99.655,99.241,99.724,99.759,99.655,99.586,99.724,99.586,99.759,99.862,99.966,99.759,99.793,100.103,99.897,99.931,99.828,99.759,99.655,99.966,99.862,99.897,100.034,100.207,99.897,99.793,99.828,99.966,100,100,100.069,100.241,100.207,100.034,100,99.724,99.724,99.828,99.759,99.552,99.966,100.103,100.069,99.966,99.138,100.241,100.172,100.103,100,100.241,99.241,99.69,99.483,99.724,100,99.931,99.897,99.828,99.931,100.172,100.069,99.724,99.724,100.069,100.207,100.207,100.069,99.966,100.207,99.828,99.966,100.138,98.897,100.621,99.586,99.655,100.138,99.862,99.862,100.586,99.655,99.414,99.448,99.103,98.966,98.828,98.759,98.621,98.138,97.862,97.966,97.897,97.69,96.655,97.379,97.31,97.103,96.855,96.897,96.586,96.207,97.379,96.517,96.379,96.034,95.749,95.69,95.448,95.586,95.745,95.793,95.655,95.621,95.542,95.586,95.655,95.759,95.69,95.69,95.759,95.759,95.655,96.483,95.517,95.552,95.621,95.662,95.586,94.517,95.276,95.345,95.172,95.207,95.414,95.631,95.138,96.345,96.241,96.082,96.069,96.103,96.276,96.424,96.414,96.345,96.345,96.517,96.517,96.448,96.517,96.69,96.724,96.828,96.862,96.897,96.931,97.069,98.069,97.414,97.379,97.517,97.586,97.379,97.241,97.793,96.586,96.724,96.931,96.966,97.034,97.103,97.069,97.069,97.172,97.103,97.103,97.241,97.241,97.241,97.069,97.172,97.241,97.103,97.103,97.172,97.103,97.207,97.103,97.172,97.207,97.172,97.241,97.207,97.241,97.241,97.172,97.103,97.276,97.207,97,97,97.069,97.034,96.966,97,96.966,96.966,96.966,97.103,97,97,97.172,97.034,97.069,97,96.172,97,96.103,96.828,96.828,96.862,96.759,96.759,96.793,96.931,97,96.828,96.897,97.034,97.103,96.897,96.897,97,96.931,96.828,96.966,96.931,96.931,96.897,96.966,96.862,96.034,96.759,96.828,97.621,96.828,97.69,96.862,96.862,96.862,96.897,96.862,96.862,96.655,96.69,96.724,96.621,96.571,91.532,88.403,85.169,81.935,78.701,75.502,72.232,68.997,65.727,62.564,59.257,56.058,53.737,49.661,46.499,43.264,40.029,36.793,33.634,30.358,27.12,23.923,20.683,17.44,14.388,11.04,7.84]
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 [12.215,11.517,10.813,8.224,7.31,7.327,7.372,7.352,7.331,7.092,7.193,7.169,6.685,6.582,6.58,6.592,6.664,6.659,6.748,6.462,7.144,8.112,8.725,9.239,9.793,10.287,12.072,13.023,14.185,19.633,78.555,79.122,80.575,80.87,81.048,81.174,81.806,81.916,82.058,83.809,84.815,84.923,84.951,84.969,84.968,84.971,85.227,85.46,85.636,85.563,85.642,85.881,86.269,86.358,86.422,86.653,86.598,81.262,47.491,42.539,42.336,41.825,41.647,41.397,41.064,40.469,39.997,39.433,38.237,37.307,37.365,37.513,37.53,38.293,38.471,37.847,36.977,36.56,35.669,35.451,35.613,35.726,35.467,34.508,34.431,34.299,33.712,33.619,33.063,34.55,42.879,323.083,376.086,391.136,412.104,417.275,422.042,425.276,428.693,437.354,449.927,454.281,454.865,460.054,466.181,469.521,470.235,471.479,474.808,488.128,493.9,494.053,494.184,493.989,494.039,494.15,494.204,494.18,491.426,457.776,390.791,385.016,387.524,382.793,382.407,384.094,386.194,384.224,378.446,367.788,365.702,369.996,370.147,367.727,367.961,370.672,371.918,367.305,348.71,340.342,348.7,355.708,366.829,373.184,375.69,378.801,381.756,385.22,389.307,392.299,410.634,471.455,605.991,728.53,789.346,857.804,893.105,921.706,945.306,967.599,985.401,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,952.385,747.432,632.955,525.37,488.54,484.377,474.118,468.747,467.823,466.421,465.246,459.916,457.063,453.362,454.3,451.84,452.973,452.35,455.048,456.242,453.678,449.446,443.939,441.015,439.365,434.3,428.333,424.004,414.023,401.779,394.403,383.6,378.822,370.164,361.949,355.512,359.251,352.685,350.755,354.118,357.867,364.565,364.883,366.736,372.435,363.702,364.536,359.355,353.966,355.437,358.289,376.25,387.5,383.231,388.226,393.421,405.755,425.918,448.478,461.585,468.235,469.483,493.654,692.857,879.167,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,1000,1000,1000,1000,1000,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,1000,1000,1000,1000,1000,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]
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" 12 --> 1100
    line [22.168,20.229,19.831,17.748,16.459,16.445,16.459,16.403,16.417,15.927,16.202,16.081,14.753,14.587,14.612,14.589,14.773,14.747,15.002,14.408,15.95,17.512,18.375,19.065,19.823,22.893,28.882,32.044,33.894,44.621,186.55,186.045,185.713,185.953,186.535,186.907,186.992,186.911,186.948,187.486,187.896,187.419,187.699,187.39,187.28,187.273,187.927,187.568,188.125,187.971,187.584,187.501,187.792,187.645,187.466,187.964,187.664,183.44,99.222,75.221,73.47,71.493,70.579,68.653,67.134,65.474,63.522,61.389,56.774,53.379,52.588,52.837,52.158,56.711,57.301,52.804,49.913,49.869,49.738,49.531,49.502,49.503,49.597,49.375,49.52,49.45,49.302,49.293,49.315,49.469,65.981,620.909,709.47,734.058,773.718,789.222,794.152,800.571,803.672,815.331,841.786,843.514,844.042,849.078,857.618,863.854,865.329,866.701,881.299,902.037,923.226,927.184,926.532,926.29,926.452,926.613,926.929,926.849,922.177,884.397,739.878,716.327,741.392,719.036,718.59,716.321,716.108,719.823,710.077,663.757,668.088,671.912,694.803,699.011,709.836,715.188,721.41,707.979,682.735,678.919,670.556,688.816,711.307,729.567,735.952,739.033,743.372,745.853,758.882,762.719,802.801,882.509,932.516,946.875,953.929,958.799,966.601,975.758,996.005,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]
Loading

Copy link

github-actions bot commented Feb 10, 2025

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

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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.003,100,100,100,100,100.003,100,100,100,100,100,100,100,100,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,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.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,99.997,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.003,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,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.003,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,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.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.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,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,99.997,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.003,100,100,100,100,100.003,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" 812 --> 1108
    line [903.327,936.621,969.984,1003.449,1000.034,1000,999.966,999.931,999.966,999.966,1000,1000,1000.034,999.966,1000.034,999.966,1000.034,999.931,1000,1000.034,1000.034,1000.034,1000.034,999.966,1000.034,999.966,1000.034,1000,1000.034,997.69,1000.069,999.966,1000.034,1000.069,1000.069,1000.034,1000.069,1000.034,1000.034,1000.034,999.966,999.966,1000,1000,1000,999.966,1000.034,1000.034,999.966,1000,1000,999.966,1000.034,1000,1000.034,1000,1000,1000,1002.31,999.931,1000.034,999.966,999.897,999.931,999.966,1000,1000,999.966,1000,1000,1000.034,999.966,1000,1000,1000.069,999.966,1000,1000,1000,999.931,1000.034,1000,1000,999.931,1000,999.966,999.966,999.931,999.966,1000,993.586,1000.069,1000.034,1000.034,999.966,999.966,1000.069,1000,1000.069,1000,1000.034,1000,1000,1000,1000.069,1000,1000.034,999.966,1000.034,999.966,1000,1000,1000.034,999.966,1000.069,1000.034,1000.103,1000.034,1000,1006.414,1000,999.966,1000,1000,1000.034,999.966,999.966,999.966,1000,1000.034,1000.034,1000,1000,1000,999.966,1000,1000.034,1000,1000.034,1000,1000,1000.069,1000.034,1000,1000,999.966,1000.034,999.966,999.966,999.966,994.586,999.621,1000.034,1000,1000,1000,1000,999.966,1000,1000,1000,999.931,999.966,1000.034,1000,999.966,1000.034,1000,1000.034,999.966,999.966,1000,1000,999.931,999.966,1000,1000,1000.034,1000,1005.448,1000.414,1000,999.966,999.966,1000.034,1000.034,1000.034,1000,1000,1000.034,999.897,999.897,1000,999.966,999.966,1000.034,1000,999.931,1000,1000,1000.034,1000.034,1000.069,999.931,1000.034,1000.034,999.897,999.966,1000,1000,1000.034,999.931,1000,999.966,1000,999.931,1000,1000,1000.034,1000.103,1000.069,1000.034,1000.034,1000.103,999.966,1000.034,1000.034,1000.069,1000.034,999.966,999.931,1000.034,1000.069,1000,999.966,1000.103,1000.069,1000.034,999.862,999.966,1000.069,1000.034,1000.034,999.966,1000.103,1000.034,1000.034,999.966,1000.034,1000.034,1000,1000.069,999.966,1000,999.966,1000.034,1000,999.897,1000.034,1000.069,1000,1000.034,999.966,1000.103,1000,1000.034,1000,1000.172,1000.034,1000.103,1000.034,1000,1000.034,1000,1000,1000.034,1000.034,1000.034,1000.034,1000,999.966,1000.034,1000,1000,1000,999.966,1000.103,1000.034,999.966,1000,1000.034,1000.034,999.966,1000.069,1000.034,1000,999.931,1000,1000,1000,1000,1000,1000.034,1000,999.931,1000,1000.034,1000.034,1000.034,1000,999.966,1000.034,1000.034,1000.034,1000.034,1000,999.931,1000.069,1000,1000,1000.034,999.966,1000,999.966,999.862,1000.034,1000,1000,1000,1000.034,1000,999.931,1000,1000.034,999.931,999.931,999.931,999.966,1000,1000.034,999.931,1000,999.931,1000.034,1000,1000.034,999.966,1000,999.966,999.931,1000.034,999.931,1000,1000.138,1000,1000,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,1000,999.931,1000,1000.034,999.828,1000,999.931,999.966,1000,1000,1000,1000.034,999.966,1000,1000.034,999.966,999.966,999.966,1000,1000.034,1000.034,999.966,999.966,1000.034,1000,1000,1000,1000.034,1000,1000.034,1000.034,1000,1000.034,1000.172,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000.069,1000,999.966,1000.069,1000,1000.034,1000,999.931,999.966,1000.034,1000,999.966,999.966,1000,1000.034,1000,1000,999.897,1000.069,1000.034,1000,1000,1000,999.966,999.966,999.966,1000,1000.034,1000.034,1000.034,1000,1000,999.966,1000.034,1000,999.966,1000.034,1000,999.966,1000,1000.034,1000.034,1000,1000,1000.034,1000.034,1000.069,1000,999.931,1000.034,1000.034,1000.034,1000.069,1000.069,1000.069,1000,999.966,999.966,1000,1000,1000.069,1000.034,1000,1000.034,1000.069,1000.034,1000.034,1000.069,1000.034,999.966,1000.034,1000,1000,999.966,1000,999.966,999.931,1000.069,999.931,1000,999.931,1000,999.966,999.966,1000.034,999.966,1000,999.931,1000,999.966,1000,1000.034,1000,999.931,999.966,999.966,1000,1000.034,1000.034,999.897,1000,1000.034,1000,999.931,1000,1000.034,999.931,1000.034,999.966,1000.069,999.966,1000.034,1000,999.897,1000.034,1000.034,1000.103,1000.034,1000,999.966,999.966,1000,1000.034,1000.034,1000.034,999.966,999.966,1000.034,1000.103,1000.034,999.966,1000,1000.034,1000.069,1000.034,1000.069,1000,1000,1000,1000.034,999.966,1000,1000.103,1000.034,999.931,999.966,999.931,1000.069,1000.034,1000.034,1000,1000,999.966,999.966,1000.034,999.931,999.966,999.966,1000,1000.034,1000.069,1000.069,999.931,1000.034,1000,1000.034,966.768]
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 --> 111
    line [90.374,93.707,97.04,100.386,100,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.793,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.207,100,100,100,100,100,100,100,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.517,99.924,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.483,100.076,100,100,100,100,100,100,100,100,100,99.966,99.966,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.034,100.034,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,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,100,100,100,100,100,100,100,100,100,100,100,96.673]
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 --> 6
    line [2.93,2.959,2.948,2.937,2.812,2.814,2.815,2.821,2.82,2.825,2.781,2.81,2.809,2.804,2.797,2.797,2.794,2.741,2.657,2.701,2.655,2.705,2.705,2.705,2.7,2.691,2.683,2.671,2.651,2.756,2.858,2.875,2.879,2.879,2.875,2.87,2.866,2.861,2.851,2.857,2.832,2.855,2.862,2.864,2.858,2.862,2.863,2.862,2.823,2.826,2.779,2.801,2.803,2.804,2.805,2.808,2.808,2.808,2.694,2.528,2.503,2.523,2.525,2.532,2.539,2.545,2.555,2.561,2.557,2.56,2.533,2.551,2.555,2.562,2.568,2.573,2.58,2.588,2.587,2.589,2.578,2.613,2.615,2.613,2.617,2.619,2.619,2.623,2.615,2.625,2.832,2.99,2.997,2.997,2.995,2.997,2.997,3.012,2.998,3.045,3.092,3.175,3.243,3.255,3.282,3.296,3.307,3.298,3.299,3.286,3.242,3.285,3.337,3.343,3.339,3.344,3.358,3.359,3.341,2.88,2.743,2.737,2.743,2.75,2.749,2.747,2.743,2.747,2.733,2.709,2.702,2.676,2.68,2.677,2.666,2.657,2.662,2.661,2.657,2.643,2.647,2.628,2.65,2.652,2.658,2.656,2.657,2.66,2.663,2.657,2.717,2.884,2.92,2.922,2.918,2.917,2.917,2.914,2.913,2.895,2.913,2.905,2.903,2.904,2.911,2.906,2.902,2.903,2.898,2.882,2.897,2.892,2.909,2.906,2.911,2.91,2.91,2.908,2.9,2.839,2.679,2.629,2.641,2.643,2.645,2.648,2.656,2.662,2.682,2.711,2.832,2.897,2.966,3.004,3.206,3.296,3.386,3.465,3.556,3.627,3.779,3.787,3.882,3.921,3.946,3.979,4.01,4.106,4.17,4.296,4.534,4.59,4.994,5.24,5.229,5.22,5.217,5.206,5.184,4.961,4.904,4.824,4.776,4.709,4.662,4.639,4.576,4.49,4.408,4.128,4.102,3.951,3.899,3.852,3.792,3.739,3.627,3.521,3.235,2.935,2.894,2.652,2.587,2.59,2.586,2.586,2.582,2.584,2.588,2.575,2.582,2.58,2.579,2.585,2.55,2.551,2.548,2.555,2.553,2.538,2.533,2.558,2.57,2.574,2.576,2.584,2.579,2.586,2.589,2.578,2.572,2.581,2.606,2.616,2.624,2.63,2.633,2.638,2.636,2.636,2.628,2.638,2.649,2.652,2.651,2.656,2.649,2.648,2.647,2.643,2.615,2.614,2.624,2.625,2.63,2.63,2.626,2.619,2.606,2.599,2.582,2.565,2.569,2.56,2.561,2.556,2.549,2.547,2.54,2.524,2.516,2.523,2.539,2.555,2.552,2.558,2.556,2.551,2.552,2.551,2.544,2.545,2.563,2.558,2.553,2.561,2.562,2.553,2.549,2.552,2.544,2.551,2.565,2.563,2.561,2.563,2.557,2.557,2.556,2.542,2.52,2.521,2.529,2.528,2.528,2.533,2.543,2.537,2.539,2.526,2.508,2.506,2.516,2.52,2.513,2.516,2.524,2.524,2.525,2.525,2.533,2.539,2.543,2.547,2.547,2.552,2.557,2.562,2.559,2.554,2.548,2.594,2.6,2.604,2.596,2.587,2.583,2.579,2.577,2.583,2.563,2.571,2.575,2.575,2.572,2.568,2.564,2.552,2.548,2.53,2.505,2.523,2.519,2.537,2.536,2.534,2.529,2.532,2.529,2.508,2.417,2.44,2.434,2.465,2.466,2.478,2.483,2.496,2.487,2.493,2.461,2.475,2.473,2.496,2.497,2.501,2.5,2.497,2.492,2.497,2.462,2.492,2.467,2.481,2.478,2.482,2.477,2.482,2.488,2.497,2.465,2.487,2.457,2.483,2.473,2.467,2.458,2.459,2.472,2.477,2.452,2.472,2.452,2.48,2.48,2.49,2.495,2.488,2.481,2.491,2.456,2.478,2.454,2.48,2.473,2.47,2.466,2.461,2.459,2.455,2.428,2.462,2.436,2.459,2.462,2.462,2.464,2.44,2.444,2.447,2.423,2.453,2.426,2.446,2.447,2.447,2.45,2.457,2.453,2.462,2.448,2.473,2.44,2.467,2.473,2.473,2.476,2.488,2.496,2.504,2.481,2.516,2.501,2.525,2.526,2.531,2.534,2.534,2.534,2.536,2.516,2.537,2.523,2.533,2.539,2.543,2.547,2.554,2.552,2.564,2.551,2.573,2.57,2.629,2.629,2.631,2.624,2.621,2.619,2.618,2.591,2.612,2.619,2.638,2.639,2.648,2.653,2.655,2.66,2.659,2.645,2.651,2.657,2.672,2.668,2.664,2.657,2.66,2.652,2.65,2.639,2.643,2.616,2.638,2.641,2.641,2.644,2.64,2.64,2.644,2.625,2.6,2.598,2.608,2.601,2.594,2.593,2.589,2.58,2.583,2.581,2.574,2.559,2.57,2.57,2.571,2.565,2.555,2.561,2.596,2.671,2.727,2.807,2.814]
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" 4 --> 13
    line [6.847,6.938,6.923,6.871,6.444,6.449,6.463,6.481,6.463,6.476,6.342,6.445,6.458,6.43,6.418,6.423,6.423,6.215,5.8,6.047,5.875,6.05,6.039,6.021,6.016,6.025,5.997,5.971,5.929,6.286,6.596,6.628,6.691,6.71,6.701,6.691,6.681,6.701,6.662,6.667,6.571,6.639,6.653,6.648,6.629,6.634,6.63,6.634,6.45,6.474,6.312,6.384,6.397,6.381,6.361,6.387,6.382,6.369,5.998,5.451,5.417,5.459,5.483,5.517,5.568,5.593,5.609,5.613,5.541,5.537,5.417,5.497,5.533,5.546,5.563,5.592,5.653,5.719,5.649,5.708,5.703,5.883,5.878,5.925,5.921,5.948,5.957,5.952,5.914,5.909,6.834,7.289,7.261,7.273,7.283,7.285,7.324,7.336,7.331,7.36,7.35,7.433,7.487,7.487,7.487,7.487,7.487,7.557,7.713,7.663,7.473,7.554,7.75,7.75,7.794,7.794,7.877,7.917,7.917,6.642,6.236,6.235,6.228,6.257,6.205,6.192,6.162,6.192,6.148,6.065,6.003,5.922,5.966,5.947,5.902,5.871,5.855,5.854,5.875,5.806,5.806,5.747,5.823,5.828,5.817,5.747,5.719,5.728,5.745,5.683,5.904,6.524,6.687,6.706,6.701,6.701,6.701,6.701,6.691,6.652,6.757,6.725,6.74,6.735,6.769,6.788,6.754,6.741,6.723,6.687,6.749,6.72,6.786,6.806,6.832,6.858,6.848,6.851,6.841,6.637,6.155,5.93,5.985,6,5.991,5.994,6.009,6.036,6.103,6.202,6.663,6.873,7.155,7.248,7.334,7.38,7.417,7.464,7.58,7.772,8.289,8.246,8.504,8.636,8.68,8.789,8.848,8.985,9.06,9.243,9.491,9.552,10.602,11.479,11.479,11.479,11.479,11.418,11.357,10.612,10.313,9.915,9.842,9.699,9.672,9.662,9.587,9.472,9.391,9.01,8.975,8.699,8.537,8.455,8.285,8.176,7.906,7.671,7.333,6.993,6.821,6.16,5.97,5.962,5.939,5.984,5.936,5.941,5.936,5.9,5.948,5.925,5.946,5.946,5.794,5.819,5.784,5.833,5.843,5.759,5.746,5.789,5.838,5.838,5.862,5.899,5.852,5.908,5.931,5.862,5.843,5.876,5.97,5.997,5.995,6.016,6.018,6.039,6.008,5.975,5.997,6.087,6.128,6.129,6.107,6.114,6.064,6.075,6.102,6.084,6,5.994,6.065,6.059,6.073,6.073,6.037,6.012,5.956,5.909,5.844,5.735,5.74,5.709,5.69,5.647,5.651,5.646,5.642,5.552,5.365,5.408,5.541,5.583,5.583,5.613,5.609,5.601,5.609,5.584,5.55,5.517,5.605,5.579,5.554,5.557,5.554,5.554,5.563,5.579,5.625,5.683,5.723,5.725,5.735,5.746,5.751,5.725,5.741,5.751,5.685,5.663,5.74,5.785,5.824,5.78,5.779,5.749,5.738,5.652,5.597,5.581,5.609,5.633,5.653,5.696,5.689,5.677,5.666,5.625,5.629,5.671,5.671,5.695,5.659,5.638,5.625,5.642,5.599,5.603,5.501,5.683,5.683,5.675,5.714,5.691,5.683,5.722,5.734,5.771,5.687,5.69,5.762,5.676,5.659,5.629,5.629,5.599,5.595,5.532,5.441,5.562,5.584,5.677,5.677,5.697,5.717,5.728,5.731,5.702,5.428,5.467,5.447,5.529,5.538,5.559,5.598,5.598,5.566,5.578,5.516,5.519,5.532,5.613,5.617,5.629,5.594,5.582,5.589,5.593,5.474,5.541,5.461,5.545,5.573,5.581,5.556,5.576,5.621,5.637,5.507,5.573,5.471,5.594,5.576,5.519,5.537,5.543,5.594,5.589,5.504,5.621,5.508,5.598,5.584,5.625,5.664,5.621,5.659,5.724,5.625,5.654,5.556,5.621,5.565,5.569,5.565,5.531,5.497,5.52,5.442,5.573,5.477,5.582,5.606,5.64,5.606,5.513,5.545,5.557,5.45,5.573,5.503,5.597,5.601,5.581,5.556,5.513,5.49,5.49,5.462,5.543,5.451,5.567,5.609,5.579,5.617,5.629,5.673,5.717,5.625,5.71,5.587,5.633,5.637,5.637,5.654,5.633,5.6,5.637,5.531,5.649,5.583,5.629,5.629,5.637,5.625,5.625,5.633,5.688,5.641,5.773,5.784,5.946,5.92,5.921,5.95,5.921,5.888,5.873,5.823,5.908,5.913,5.947,5.991,6.05,6.058,6.062,6.073,6.096,6.052,6.083,6.11,6.148,6.134,6.16,6.127,6.143,6.122,6.095,6.005,5.975,5.882,5.953,5.939,5.929,5.938,5.903,5.885,5.87,5.814,5.769,5.785,5.824,5.769,5.784,5.789,5.769,5.727,5.716,5.672,5.679,5.629,5.714,5.71,5.71,5.685,5.685,5.728,5.823,6.113,6.311,6.579,6.607]
Loading

Copy link

github-actions bot commented Feb 10, 2025

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

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 --> 1
    line [0.398,0.398,0.398,0.398,0.398,0.398,0.398,0.398,0.398,0.398,0.398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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, %" 83 --> 111
    line [92.366,92.736,93.068,93.371,93.657,93.912,94.156,94.371,94.575,94.766,94.944,97.662,99.764,100,100,100,100,100,100,100,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.965,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.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,99.689,99.69,99.69,99.69,99.69,99.69,99.689,99.69,99.689,99.69,99.69,99.69,99.689,99.69,99.69,99.689,99.689,99.69,99.69,99.69,99.689,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.691,100,100,100,100,100,100,100,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.827,99.345,99.345,99.345,99.345,99.345,99.344,99.346,99.346,99.345,99.345,99.345,99.345,99.344,99.345,99.345,99.345,99.345,99.346,99.345,99.345,99.346,99.345,99.344,99.345,99.345,99.345,99.344,99.346,99.52,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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" 1 --> 40
    line [35.66,35.55,35.451,35.361,35.278,35.203,35.133,35.069,35.01,34.955,34.621,2.104]
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" 61 --> 113
    line [68.066,71.395,74.69,77.986,81.385,84.681,88.115,91.377,94.708,98.073,101.439,102.08,102.379,100.517,100.103,99.966,100.103,100,100.069,99.931,99.966,100.034,100.103,100.103,100,100.034,100.103,99.793,100.034,99.966,99.379,100.069,100.138,100.034,100.069,100,99.966,100.034,99.966,99.931,100,100.069,100,100.034,100.103,100,99.966,100,100.103,100.069,100,100.034,100,100,100.034,100,100.241,99.966,100.069,100.621,100,99.966,100,99.931,99.931,100.069,99.931,100,100.069,99.966,100.034,100,99.966,100,100.034,100.034,99.966,100,100.034,100.069,100,99.966,100.069,99.966,99.966,99.931,100.034,100.034,100,100.034,99.552,99.931,100.069,100.034,100,100.034,100.069,99.931,100.069,99.931,100.103,99.966,99.966,99.897,100.034,100.069,99.897,99.828,99.966,99.966,100.034,99.897,100.034,100.034,100.034,100,100,100.034,100,100.483,100.103,100,100.034,100,100.069,100,100.034,100,100.034,99.828,99.931,100,100.103,99.931,100,100.103,100.138,99.966,100,99.931,100,100,100.034,99.931,100,100,100,100,99.966,100,99.748,99.448,99.966,100,100,100,100,99.931,100.172,100.138,100.034,99.966,100.034,100,99.931,99.966,100.069,100,100.069,100.103,100,99.966,100.103,99.966,99.931,100.034,100,99.966,99.897,100.217,100.483,100.034,99.966,99.966,100,99.931,100.069,99.966,99.966,100,99.966,100,99.897,100,100.034,100,99.966,99.966,99.966,99.966,99.966,99.931,99.931,100,100,99.931,100.034,100.034,100,100.034,100,100.034,99.966,100.034,100.069,100.034,100.034,99.966,100,100.034,100,100.069,100.034,99.966,99.966,100.034,100.034,99.966,100.034,100.069,100.034,100.069,100.034,99.966,100.034,100,100.069,100,100,100,100,100,99.931,99.966,99.966,99.966,100.034,99.966,100,100.034,99.931,99.966,100,99.966,100.034,99.931,100.034,100,99.897,100,100,100.034,100,100,100.034,100,100,100,100,100,100.069,99.966,100,100.034,99.966,100,99.966,100,99.897,100.069,100.069,100.034,100,99.966,100,100,100,100.069,100,99.966,99.966,99.931,100.034,99.966,100,100,99.966,100.034,99.931,100,100.069,100,99.966,100.069,99.966,100.069,99.966,100.034,100.034,100,100,100.034,100,100.034,100,100,100,100,100,99.931,100.069,100,100,100,100.069,100.034,99.966,100.034,100,100,100.034,100,99.966,100.034,99.966,100.034,100,99.966,100,100,100.034,100.034,100.034,99.931,99.966,100,100,99.966,100.103,100.034,99.931,100.034,99.966,99.966,100,99.966,100,100,99.966,99.966,100,99.966,100,99.966,100.034,100,100,99.931,100,99.966,99.931,99.966,100.103,100,99.966,99.931,100.034,100,99.897,99.931,100,100,99.966,100,100.069,100,99.966,100.034,100,100.034,100.034,99.966,100.034,99.966,100.069,99.966,100.069,99.966,100.034,100.034,100,99.931,100.034,100.069,100.103,100.034,100,100.034,100.103,99.931,100.034,100.034,100,99.931,99.966,99.966,100,99.966,99.966,100.034,99.966,99.966,100.034,99.897,100.069,100,100,100,99.966,100,100.069,99.966,99.862,100,100.034,99.897,100.034,100.034,100,100,100,99.966,100.069,100.034,100.069,100,100.034,100,99.931,100.069,100,99.966,100.069,99.897,99.931,100,99.966,100.034,99.966,99.966,100.034,100.138,99.966,99.931,100.069,100.034,99.966,100,99.966,99.966,100.034,100,100,99.931,99.966,99.931,100,100,100,100.034,100.034,99.931,100.069,100,99.966,100.034,100,100.034,100,99.966,99.966,100,100.069,100,100,100,100,99.966,99.862,100,99.966,100,100.069,100.034,100.069,100.034,100.034,100,99.966,100,100.069,99.966,99.931,100.034,99.931,100.034,100,99.966,100,99.966,99.931,99.966,100,99.931,99.966,100.034,100.069,100.103,100,100,99.966,99.966,100.034,99.966,99.931,100.034,99.931,100,99.966,100.034,100.069,100.103,100.034,100.069,99.966,100,100.034,100,100.034,100.103,100,100,100.034,99.931,99.931,100,100.034,99.931,99.966,100.034,99.966,100,100.034,100.069,99.897,100,100,100,99.966,100,99.966,99.931,99.966,100.034,100,100.034,100.034,100,99.966,100.034,95.884]
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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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" 44 --> 829
    line [753.498,724.329,695.492,666.692,637.063,608.324,578.461,550.056,521.096,495.879,481.081,465.15,260.79,98.894,94.678,94.02,92.869,92.257,92.071,91.041,89.854,86.286,85.681,85.118,84.528,82.665,81.66,80.587,80.485,77.317,82.785,81.975,81.262,78.625,76.319,76.796,77.35,76.673,76.584,76.135,77.956,77.101,77.338,77.22,77.303,76.796,76.919,77.338,77.617,76.643,75.962,75.112,75.61,74.619,75.73,75.253,75.776,74.889,74.975,63.87,57.692,53.887,54.167,52.367,53.604,51.98,53.903,53.871,57.156,54.183,55.849,55.031,56.418,58.43,58.656,58.656,57.201,57.186,58.173,57.156,57.186,55.88,57.663,54.418,54.418,53.854,52.598,51.65,51.014,49.999,58.721,76.929,79.063,78.346,78.571,77.906,77.781,76.257,75.395,74.591,75.656,74.87,73.328,73.997,73.78,73.445,73.028,73.225,73.81,73.967,73.78,72.859,75.986,75.708,75.848,75.862,76.404,76.653,76.404,71.571,49.905,49.748,49.84,49.815,49.827,49.828,49.868,49.935,52.964,57.745,64.821,65.672,65.463,66.851,68.493,69.436,69.013,68.93,68.778,68.941,69.333,66.588,66.576,65.634,65.61,64.573,64.031,63.66,64.043,63.66,65.012,72.329,78.678,78.855,78.855,78.947,78.667,77.382,73.051,67.885,67.933,67.549,64.771,64.789,64.824,65.052,63.732,65.035,64.504,63.449,64.029,62.981,64.983,64.806,67.774,67.726,69.325,68.766,68.402,68.656,56.942,49.999,57.411,57.158,57.143,57.173,57.618,57.909,58.871,58.382,61.635,63.59,62.274,62.234,62.221,62.827,62.645,68.214,68.067,67.769,67.769,66.851,67.78,66.505,67.143,66.691,67.287,67.275,66.01,66.164,65.327,61.799,62.036,62.821,64.515,63.789,64.708,63.626,63.99,60.601,58.284,59.686,59.468,59.497,60.184,59.468,52.598,54.703,54.387,56.815,57.588,57.071,59.256,59.054,59.025,59.27,58.557,59.497,58.571,58.333,56.587,57.602,61.317,60.669,62.513,60.669,61.277,60.669,62.5,63.064,62.132,62.513,62.694,63.464,63.253,61.931,61.892,61.905,60.91,59.551,58.857,57.128,56.886,57.396,55.264,56.098,55.28,55.556,54.43,55,53.214,50.697,50.342,49.925,49.956,50,50.36,49.91,49.972,51.633,51.309,49.999,49.894,49.909,51.014,49.939,54.114,54.371,53.822,54.703,55.808,58.6,57.588,58.348,60.165,60.165,59.959,59.931,59.298,59.27,57.113,55.828,54.733,57.367,56.113,56.067,57.411,55.813,52.301,51.02,52.318,52.925,52.941,51.661,53.846,49.927,49.956,50.345,52.318,49.987,49.867,49.868,49.854,49.722,49.629,49.654,49.699,49.667,49.771,49.694,49.661,49.708,49.57,49.556,49.511,49.422,49.393,49.469,49.452,49.461,49.597,49.66,49.641,49.626,49.622,49.526,49.477,49.299,49.337,49.24,49.273,49.369,49.355,49.488,49.43,49.404,49.481,49.843,49.861,54.503,54.194,56.188,56.442,58.003,58.945,58.721,59.659,60.583,62.827,60.126,59.457,59.21,59.152,61.828,63.788,64.167,65.853,65.534,68.052,69.418,69.658,70.168,69.539,70.417,70.021,69.264,64.818,65.628,61.842,62.808,61.217,61.243,60.151,60.611,62.409,62.821,64.084,62.253,62.029,62.616,65.423,64.746,63.214,63.395,62.594,61.799,61.173,58.117,54.821,52.432,52.052,52.38,52.721,53.389,53.99,53.683,52.397,52.738,52.414,53.024,53.683,55.177,53.65,53.091,50.691,52.397,50,52.721,51.074,49.807,49.864,49.837,49.84,53.226,52.286,54.161,54.953,55.506,54.969,54.403,56.061,55.808,57.071,56.572,56.557,56.325,56.572,55.521,55,54.371,53.226,52.631,53.494,52.971,49.988,50.342,49.933,49.932,49.947,50.017,51.97,49.97,49.798,49.879,49.807,49.875,49.821,49.833,49.805,49.832,49.829,49.814,50,51.376,52.938,55.823,56.587,56.587,57.101,58.793,60.797,59.75,64.952,64.806,65.323,65.628,66.435,66.424,65.64,64.121,65.156,64.806,64.782,65.962,64.634,65.802,67.92,69.028,68.658,69.28,69.16,69.409,71.064,71.975,70.948,70.36,70.958,71.084,70.258,69.492,69.209,65.562,64.557,65.538,66.535,66.5,66.667,68.011,69.099,68.432,68.443,67.579,69.231,69.895,70.135,67.989,68.26,68.388,66.82,66.82,65.397,63.023,60.797,61.653,62.461,62.422,62.846,63.93,64.121,65.132,66.412,66.709,65.628,66.412,66.755,67.045,65.628,64.806,64.273,63.712,64.286,60.811,62.422,61.868,64.659,63.198,62.422,64.73,64.89,64.866,64.89,65.877,65.702,66.332,65.586,66.038,65.877,65.217,66.05,64.706,64.89,65.409,64.718,66.655,66.82,66.185,67.41,68.142,68.153,67.989,68.682]
Loading

@qrort qrort force-pushed the topic-log-ctx branch 5 times, most recently from e5def5a to e3253ee Compare February 10, 2025 16:44
) {
return c.rawClient.StreamWrite(ctx, tracer)
}
//var connector topicwriterinternal.ConnectFunc = func(ctx context.Context, tracer *trace.Topic) (
Copy link
Member

Choose a reason for hiding this comment

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

remove the code instead of comment please

@@ -148,6 +148,7 @@ func (c *Committer) pushCommitsLoop(ctx context.Context) {

onDone := trace.TopicOnReaderSendCommitMessage(
c.tracer,
&ctx,
Copy link
Member

Choose a reason for hiding this comment

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

Here and in other place.
Don't transfer pointer to owned context directly - you shold copy local context, pass pointer to copy, them copy result to local context.

Pointer to context may be stored and then context can be changed by other code and data race may be happen.

example

@@ -68,11 +68,11 @@ func NewReader(
consumer string,
readSelectors []topicreadercommon.PublicReadSelector,
opts ...PublicReaderOption,
) (Reader, error) {
) (Reader, *context.Context, error) {
Copy link
Member

Choose a reason for hiding this comment

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

Why you want return context pointer?
It is very uncommon way.

Copy link
Member

Choose a reason for hiding this comment

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

What about add method to get current context to stream reader, reader reconnector, etc?
And it must not be context pointer - for prevent races while context changing.

// in log/topic events.
func WithWriterLogContext(ctx context.Context) WriterOption {
return func(cfg *topicwriterinternal.WriterReconnectorConfig) {
cfg.LogContext = ctx
Copy link
Member

Choose a reason for hiding this comment

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

I think internal names of log-context for reader and writer should be same.

ReaderID int64
Consumer string
Error error
LogContext *context.Context
Copy link
Member

Choose a reason for hiding this comment

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

What abount simple Context instead of LogContext?

Copy link

🌋 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,99.997,99.997,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,100,100,100,100,100,100.003,100,99.997,99.997,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.007,100,100,100.003,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,99.997,100,99.997,100,100.003,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,100,100.003,100,100.003,99.997,99.997,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100.007,100,100,100,100,100,100,100,99.997,100,100,100,100,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100.003,100.003,100,100,100,100,100.003,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,99.997,99.993,100,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,99.997,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,99.997,100,100,99.997,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,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,99.997,100,100,100,99.997,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.003,100,100,100,100.003,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,100,100,100,100,100,100,100,100,99.997,100.003,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,100,100,100,99.986,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100.003,100,100,99.997,100.003,100,100,100,100,100.017,100,100.003,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,99.997,99.997,100.003,100,99.997,99.997,100,100.003,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.003,100,99.997,100,100,100,100,100.003,100,100,100.003,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,99.997,100,100,100,100,100,100,99.997,99.997,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,99.997,100.003,100,100,100.003,100,100,100,100,100,99.997,100,99.997,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" 832 --> 1105
    line [925.201,958.534,992.067,1000,1000,1000.034,1000,1000,1000.069,999.966,1000,1000,999.931,1000,1000,1000.034,1000,999.966,1000.034,1000.345,999.966,999.966,1000.034,1000,1000,1000,1000,1000,1000,1000,1000.034,1000.034,1000,1000,1000,1000,1000.034,999.931,1000.034,1000.069,1000.034,1000.034,1000.034,1000.034,999.966,1000.069,1000.034,1000,1000,1000.103,1000.034,1000,1000,1000,1000,1000.034,1000.069,1000.069,1000.034,1000,999.966,999.931,1000.034,1000,1000.034,999.966,1000,1000,999.966,1000,1000,1000,1000.034,1000,999.966,1000,1000.034,1000,999.966,1000,1000,1000,1000.069,1000.034,999.966,999.931,1000,1000,1000,995.931,999.552,1000,1000.034,999.966,1000.069,1000.034,1000,1000,1000,1000.069,999.966,999.966,1000.034,999.966,1000,999.966,1000,1000.034,1000,1000,1000,999.966,1000,1000.034,1000.069,999.966,1000,1000,1004.138,1000.552,1000,1000,1000.034,999.966,1000,1000,999.966,1000.034,999.966,999.966,1000.034,1000,1000.034,1000,999.931,999.966,1000.034,1000,1000,999.966,1000,1000,1000.034,1000,1000.034,1000,1000,999.966,1000,999.034,999.966,1000,1000,1000,1000.034,1000.069,999.966,1000,1000.103,999.966,1000,999.966,1000,1000.069,1000.034,999.862,1000,999.966,1000.103,1000,1000,1000,999.966,1000,1000,1000,1000,1000,1000.966,1000.034,1000.034,1000,1000.034,999.966,999.966,1000,1000.034,999.931,999.966,1000.034,1000.034,999.966,1000.034,1000,1000.138,1000,1000.034,999.966,1000,999.931,999.966,1000,999.966,999.966,1000,1000,1000,1000,999.931,999.897,999.931,1000,1000,1000,1000,999.897,1000.069,1000.034,1000,1000.034,1000.069,999.966,1000.034,999.966,1000,1000,1000.034,1000.069,1000.034,1000.034,1000,999.966,1000.069,1000,999.966,1000,1000,1000.034,1000.069,1000.069,999.931,1000,1000,1000.034,1000.103,999.966,1000,999.966,999.966,999.966,1000,999.966,1000.034,1000,1000.034,999.966,999.966,1000,999.966,1000.034,1000.034,999.931,1000,1000.069,1000.034,1000,1000,1000,1000,1000.069,1000.034,999.966,1000,1000,1000,1000.034,1000,1000,1000.034,1000.034,1000,1000,1000.034,999.966,1000,999.966,1000.034,1000,1000,999.966,1000.069,1000.034,999.966,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,1000.034,1000,1000,1000,999.966,1000,1000.034,1000.034,1000,1000,1000.034,1000,1000.069,999.966,1000.034,1000.034,999.931,999.966,1000.034,1000,1000.034,1000,1000,1000.034,1000,999.966,1000,999.966,1000.034,1000,1000.034,999.966,1000.034,1000.034,1000,1000,1000,1000.069,1000,1000,1000,999.966,1000.034,999.966,1000.034,1000.069,1000.034,1000,999.966,999.931,1000,999.966,999.966,999.966,1000.034,1000.034,1000.034,1000,999.966,999.966,1000,1000,1000,1000.034,1000,1000,999.966,999.966,1000,1000,1000.034,999.966,1000.034,999.966,1000,1000,1000,1000.034,1000.034,1000,1000.034,1000.034,1000.034,1000,1000,1000,1000,1000,999.966,1000,1000,999.966,999.931,999.966,999.828,1000.034,1000.034,1000,1000,1000,1000,1000.034,1000,1000,1000,999.931,1000,1000,999.966,1000,999.966,999.862,1000,1000,1000,1000,1000.034,1000.034,1000.034,1000,1000.034,1000.069,1000.034,1000.172,999.931,999.966,1000,1000.034,1000,1000.034,999.966,1000,1000,1000.034,1000.103,999.966,1000,1000.034,1000,1000.034,1000.138,1000.034,999.931,999.931,1000,1000,1000.034,1000,1000.034,1000,999.966,1000,1000,1000,1000.069,1000,999.966,1000,1000.034,999.931,1000,999.966,999.966,999.966,1000.034,1000.034,1000,1000,1000.034,999.966,999.897,1000.069,1000.069,1000,1000,999.966,1000,999.897,1000,1000.034,1000.034,1000,1000,999.966,1000,999.966,1000.034,999.931,1000.034,1000,1000.034,1000.034,999.966,1000,999.966,1000,1000,1000,1000.069,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000.069,999.966,1000,1000,999.966,1000.034,1000,1000,1000.034,999.931,1000.034,1000,1000,1000,999.966,1000.034,1000.034,1000.034,1000,999.966,999.966,999.931,1000,999.966,1000,999.966,999.966,1000,1000,1000.034,1000.034,999.966,999.931,1000.034,1000.034,1000.034,1000,1000,1000.034,999.966,999.966,1000,1000,1000,1000,999.966,999.966,1000,1000,1000.034,1000.034,1000.069,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000,974.868]
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.517,95.85,99.183,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,99.483,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.517,100,100,100,100,100,100,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.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,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.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,99.966,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,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,97.483]
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.986,2.994,2.983,2.792,2.793,2.791,2.788,2.789,2.794,2.76,2.768,2.802,2.803,2.798,2.762,2.685,2.698,2.7,2.697,2.681,2.684,2.738,2.766,2.771,2.771,2.768,2.77,2.777,2.774,2.955,2.943,2.968,2.968,2.964,2.968,2.968,2.968,2.959,2.954,2.956,2.924,2.942,2.953,2.949,2.947,2.938,2.937,2.934,2.924,2.935,2.888,2.887,2.887,2.886,2.888,2.888,2.879,2.877,2.653,2.648,2.608,2.634,2.643,2.639,2.634,2.633,2.634,2.631,2.616,2.632,2.595,2.606,2.605,2.612,2.619,2.616,2.626,2.629,2.607,2.63,2.593,2.624,2.626,2.624,2.621,2.624,2.628,2.641,2.625,2.731,3.098,3.214,3.225,3.238,3.254,3.284,3.31,3.323,3.302,3.384,3.305,3.335,3.333,3.328,3.354,3.331,3.332,3.335,3.307,3.35,3.272,3.296,3.3,3.3,3.292,3.293,3.271,3.305,2.977,2.673,2.625,2.646,2.645,2.638,2.625,2.622,2.614,2.614,2.585,2.598,2.585,2.613,2.618,2.612,2.615,2.614,2.619,2.611,2.58,2.6,2.579,2.596,2.594,2.589,2.597,2.595,2.586,2.584,2.558,2.599,2.748,2.753,2.744,2.743,2.739,2.734,2.726,2.718,2.71,2.704,2.682,2.681,2.674,2.664,2.658,2.643,2.65,2.665,2.635,2.633,2.619,2.625,2.62,2.61,2.602,2.593,2.584,2.587,2.529,2.284,2.285,2.298,2.3,2.297,2.291,2.289,2.294,2.273,2.266,2.257,2.27,2.288,2.301,2.307,2.311,2.279,2.258,2.268,2.262,2.241,2.279,2.313,2.313,2.312,2.315,2.324,2.317,2.341,2.355,2.345,2.364,2.473,2.476,2.479,2.48,2.482,2.486,2.488,2.494,2.5,2.512,2.531,2.534,2.541,2.543,2.539,2.542,2.537,2.541,2.509,2.52,2.539,2.545,2.552,2.556,2.572,2.562,2.552,2.548,2.531,2.463,2.466,2.474,2.479,2.481,2.483,2.479,2.469,2.452,2.423,2.424,2.43,2.425,2.425,2.427,2.429,2.44,2.434,2.447,2.414,2.415,2.417,2.415,2.407,2.38,2.369,2.353,2.349,2.341,2.306,2.332,2.38,2.395,2.399,2.401,2.4,2.401,2.4,2.405,2.375,2.387,2.385,2.393,2.388,2.381,2.372,2.371,2.357,2.353,2.316,2.345,2.339,2.358,2.355,2.355,2.358,2.352,2.358,2.362,2.333,2.295,2.269,2.289,2.288,2.293,2.289,2.275,2.274,2.278,2.251,2.287,2.273,2.299,2.293,2.299,2.293,2.291,2.293,2.303,2.251,2.262,2.232,2.25,2.254,2.257,2.247,2.234,2.242,2.246,2.212,2.225,2.288,2.299,2.3,2.305,2.311,2.31,2.298,2.296,2.249,2.29,2.267,2.293,2.295,2.302,2.304,2.309,2.296,2.307,2.286,2.315,2.309,2.335,2.34,2.346,2.351,2.338,2.325,2.346,2.356,2.294,2.279,2.296,2.296,2.293,2.288,2.298,2.293,2.292,2.257,2.281,2.262,2.323,2.328,2.323,2.322,2.335,2.331,2.335,2.312,2.339,2.308,2.331,2.324,2.323,2.329,2.336,2.321,2.294,2.27,2.299,2.3,2.322,2.327,2.335,2.326,2.319,2.387,2.486,2.553,2.643,2.687,2.761,2.806,2.838,2.864,2.893,2.918,2.941,2.955,2.982,3.06,3.214,3.281,3.318,3.424,3.48,3.523,3.556,3.569,3.573,3.577,3.58,3.574,3.572,3.573,3.563,3.534,3.497,3.422,3.341,3.254,3.198,3.144,3.088,3.018,2.988,2.968,2.948,2.916,2.861,2.805,2.775,2.743,2.663,2.593,2.508,2.404,2.337,2.324,2.327,2.336,2.366,2.374,2.39,2.384,2.382,2.384,2.386,2.382,2.374,2.367,2.388,2.385,2.383,2.373,2.377,2.379,2.373,2.358,2.352,2.397,2.416,2.414,2.41,2.407,2.406,2.408,2.409,2.404,2.384,2.377,2.398,2.386,2.393,2.395,2.397,2.399,2.399,2.392,2.384,2.381,2.396,2.391,2.394,2.39,2.405,2.408,2.413,2.4,2.347,2.339,2.366,2.376,2.381,2.385,2.386,2.384,2.374,2.37,2.356,2.349,2.386,2.393,2.39,2.387,2.384,2.385,2.379,2.374,2.361,2.372,2.388,2.393,2.394,2.382,2.378,2.371,2.365,2.339,2.321,2.311,2.318,2.321,2.318,2.321,2.326,2.319,2.315,2.307,2.271,2.235,2.222,2.237,2.251,2.24,2.245,2.257,2.259,2.259,2.232,2.245,2.241,2.267,2.279,2.271,2.288,2.296,2.306,2.306,2.28,2.318,2.317,2.332,2.33,2.322,2.333,2.332,2.332,2.327,2.321,2.357,2.369,2.368]
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" 4 --> 9
    line [7.1,7.131,7.077,6.466,6.457,6.454,6.456,6.467,6.477,6.373,6.413,6.502,6.488,6.493,6.351,6.017,6.029,5.997,5.944,5.915,5.894,6.076,6.189,6.204,6.227,6.22,6.22,6.221,6.206,6.859,6.825,6.906,6.927,6.923,6.926,6.926,6.917,6.889,6.875,6.846,6.742,6.826,6.867,6.867,6.851,6.825,6.819,6.818,6.769,6.779,6.678,6.682,6.694,6.69,6.695,6.691,6.679,6.667,5.945,5.893,5.782,5.843,5.843,5.858,5.838,5.823,5.853,5.838,5.818,5.898,5.766,5.823,5.812,5.823,5.802,5.823,5.883,5.923,5.879,5.917,5.773,5.853,5.857,5.852,5.843,5.819,5.809,5.89,5.793,6.045,6.954,7.036,7.052,7.083,7.103,7.156,7.148,7.176,7.152,7.173,7.083,7.109,7.105,7.111,7.169,7.157,7.133,7.155,7.159,7.215,7.197,7.222,7.225,7.242,7.243,7.247,7.246,7.25,7.05,6.093,5.963,6.033,6.006,6.012,5.943,5.957,5.922,5.938,5.887,5.939,5.861,5.997,6.006,5.969,5.943,6.003,5.994,5.922,5.806,5.86,5.782,5.861,5.828,5.787,5.804,5.799,5.822,5.85,5.799,5.947,6.424,6.483,6.421,6.421,6.385,6.353,6.31,6.267,6.205,6.214,6.121,6.187,6.17,6.18,6.097,6.066,6.105,6.135,6.036,6.007,5.924,5.964,5.997,5.975,5.957,5.924,5.901,5.912,5.695,5.019,4.982,5.058,5.039,5.039,5,5,5.039,5,4.996,4.982,4.987,4.996,5.116,5.191,5.192,5.137,5,5.02,4.99,4.979,4.99,5.041,5.04,5.02,5,4.991,4.991,5.082,5.142,5.177,5.18,5.541,5.511,5.56,5.556,5.526,5.541,5.511,5.56,5.53,5.534,5.541,5.522,5.584,5.58,5.612,5.656,5.655,5.647,5.576,5.571,5.634,5.693,5.707,5.707,5.707,5.654,5.612,5.542,5.479,5.268,5.33,5.328,5.4,5.414,5.428,5.438,5.397,5.34,5.278,5.232,5.266,5.181,5.182,5.214,5.18,5.214,5.229,5.295,5.234,5.252,5.236,5.252,5.301,5.299,5.266,5.232,5.216,5.167,5.02,5.114,5.319,5.352,5.399,5.417,5.417,5.414,5.382,5.397,5.315,5.315,5.365,5.408,5.385,5.385,5.372,5.385,5.304,5.286,5.201,5.319,5.304,5.317,5.254,5.321,5.339,5.339,5.367,5.382,5.272,5.135,5.02,5,4.993,4.989,4.996,5,5.02,5.02,4.996,5.02,4.983,4.996,5,5,4.987,4.978,4.978,4.973,4.936,4.959,4.95,4.977,4.968,4.963,4.953,4.951,4.961,4.962,4.933,4.948,5.12,5.174,5.194,5.176,5.212,5.194,5.194,5.176,5.138,5.299,5.224,5.286,5.335,5.319,5.319,5.301,5.282,5.268,5.115,5.221,5.152,5.27,5.286,5.288,5.29,5.272,5.237,5.347,5.365,5.11,5.075,5.144,5.074,5.019,4.995,5.019,5.019,4.984,4.961,4.995,4.973,5.058,5.115,5.15,5.185,5.239,5.254,5.301,5.204,5.255,5.116,5.239,5.27,5.27,5.254,5.319,5.255,5.169,5.115,5.204,5.221,5.299,5.345,5.411,5.394,5.377,5.525,5.695,5.838,6.063,6.195,6.413,6.519,6.627,6.701,6.791,6.865,6.932,6.988,7.071,7.172,7.27,7.321,7.34,7.4,7.433,7.447,7.47,7.485,7.49,7.49,7.529,7.495,7.5,7.529,7.557,7.5,7.467,7.438,7.376,7.31,7.284,7.246,7.202,7.152,7.107,7.045,6.978,6.891,6.729,6.559,6.498,6.414,6.202,5.959,5.725,5.344,5.098,5.04,5,5.059,5.115,5.149,5.199,5.147,5.13,5.13,5.148,5.216,5.278,5.293,5.367,5.378,5.35,5.306,5.306,5.291,5.302,5.285,5.298,5.364,5.427,5.427,5.414,5.411,5.398,5.453,5.487,5.481,5.419,5.417,5.475,5.462,5.459,5.433,5.462,5.443,5.456,5.362,5.359,5.331,5.359,5.392,5.438,5.478,5.494,5.471,5.417,5.315,5.11,5.093,5.201,5.252,5.254,5.254,5.236,5.164,5.131,5.112,5.057,5.075,5.229,5.352,5.323,5.31,5.295,5.282,5.282,5.217,5.184,5.252,5.297,5.282,5.234,5.216,5.248,5.328,5.386,5.33,5.286,5.297,5.328,5.325,5.34,5.342,5.414,5.414,5.4,5.417,5.332,5.252,5.201,5.299,5.31,5.31,5.28,5.297,5.357,5.357,5.284,5.27,5.266,5.374,5.379,5.35,5.332,5.301,5.345,5.355,5.246,5.372,5.389,5.461,5.43,5.374,5.386,5.414,5.386,5.355,5.266,5.301,5.335,5.331]
Loading

Copy link

🌋 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, %" 89 --> 111
    line [100,100,100,100.003,100,100,100,100,100,99.997,100,100,100,99.997,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.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.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,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,100,100,100,100,100,100.003,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,99.997,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.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,99.997,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,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,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.003,100,100,100,100,100.003,99.997,100,100,99.997,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,99.997,100.003,100.003,100,100.003,100,100,100,100,100,100,100,100,100,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.997,99.993,99.997,99.993,99.997,100,99.997,99.997,99.993,99.997,99.997,99.997,99.997,99.993,99.997,99.997,99.997,99.997,99.997,99.997,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.003,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.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,99.997,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.003,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.993,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]
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, %" 90 --> 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 --> 1108
    line [918.565,951.932,993.767,999.966,999.966,1000,1000.034,1000,1000,999.966,1000,999.966,1000.034,1000,1000,1000.034,1000.034,1000,1000,1000.345,999.897,999.931,1000,1000,1000,1000,1000.034,1000,1000,999.897,1000.034,999.931,1000.034,1000.034,999.966,999.897,1000,1000,1000.034,1000.034,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000.069,1000.103,1000.069,1000,1000,999.966,1000,999.966,1000.034,999.966,1000.172,1000,1000.069,999.966,1000,1000.034,1000.103,1000,1000,1000,999.966,1000,1000,1000.034,1000.034,999.966,1000,1000,1000,1000,1000,1000,999.897,993.483,1000,999.966,1000,999.931,1000,999.931,999.966,1000,1000,999.966,999.966,999.966,999.966,1000,999.966,1000,1000,999.966,999.966,999.931,1000,999.966,999.966,1000,999.966,999.931,999.966,1000.069,1006.517,1000,1000,1000.034,1000,1000,1000.069,1000,999.931,1000,1000,1000,1000,1000,999.966,999.966,1000.034,999.966,999.966,1000,1000,999.931,1000,1000,999.966,1000,1000.034,1000,1000,1000,1000.034,1000.034,999.966,999.793,999.966,999.966,1000,1000,1000,999.966,999.966,999.966,999.966,999.966,1000.034,999.966,999.966,1000,999.862,999.966,1000.034,1000,999.966,1000,1000.034,1000,999.966,1000,1000,999.966,999.931,1000,1000.207,1000.034,1000,1000.034,1000.069,999.966,1000.069,1000.103,1000.069,1000.034,1000.069,1000,1000.034,1000.034,1000.034,1000.172,1000.034,1000.069,1000,1000,1000,1000,1000,1000.069,1000.034,1000,1000.034,999.897,1000.034,999.931,1000.034,1000,1000,1000,1000,999.966,999.966,999.966,1000.034,1000,1000.034,999.966,1000.034,1000.034,1000,1000.069,1000,1000.034,1000.069,999.931,999.931,1000.034,999.966,1000,1000,1000,1000.172,1000,1000.069,1000,1000.034,1000,1000,1000.069,1000.034,1000,1000.034,1000,1000,1000,1000.034,1000,1000,999.931,999.966,1000,1000,999.966,1000.138,1000.069,1000,1000.034,1000,1000.034,1000,1000,999.966,1000.034,1000,1000,1000.034,999.966,1000,1000,1000,1000,1000,999.966,1000,999.966,1000,1000,1000.069,1000,1000,1000,1000.034,999.897,1000,1000.034,1000,1000,1000,1000,1000,1000.034,1000,1000,1000,999.966,1000.034,999.966,1000,1000,1000,1000,1000.034,1000,1000,1000,1000,1000.034,1000.069,1000.069,1000.034,1000.034,1000.103,1000.034,1000,1000.034,1000.034,1000,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.034,1000.069,1000.034,999.931,1000.034,1000.034,1000.069,1000.034,1000.034,1000,999.966,999.862,1000,1000,1000.034,1000,1000,1000,999.966,1000.069,1000,1000,1000,1000.034,1000,1000,999.966,1000,1000.069,1000,999.966,1000,1000.103,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000.138,1000,1000,1000,1000.034,1000,1000,1000.034,999.966,1000,1000,1000.034,999.966,1000,1000,1000.034,1000.034,1000,1000.034,1000.034,1000.034,1000.069,1000.034,1000,1000.034,1000.034,1000,1000.069,1000.034,1000,1000.069,1000.069,1000,1000.034,1000.034,1000.069,1000.034,1000.069,1000.103,1000.034,1000.034,1000.069,1000.034,1000.034,1000.069,1000.034,1000.034,1000,1000,1000.034,1000,1000,999.966,1000,1000.034,1000,999.966,1000,999.966,1000,999.966,1000,1000,1000.034,999.966,1000,999.966,999.897,1000.034,1000,1000,1000.034,1000.034,1000,999.966,1000,1000,1000,1000,1000,1000.034,999.931,1000,1000,1000.034,1000.069,1000.069,1000.103,1000,999.966,1000.034,999.966,999.966,1000,1000.034,1000,1000.034,999.966,1000,999.966,999.966,999.966,1000,1000,1000,1000,1000.034,999.897,1000,999.966,1000.138,999.966,1000,1000,999.966,999.966,999.966,1000,1000.069,999.931,1000,1000.034,1000,1000,1000.034,1000,1000.034,999.966,1000.034,999.966,1000.034,1000,1000.034,999.966,1000.034,999.966,1000.069,999.966,1000,1000.034,1000.034,1000,1000,1000,1000,1000,1000,1000,1000.069,1000,999.966,1000.034,1000.034,999.966,1000.034,999.966,1000.034,1000,1000.069,999.966,1000,999.966,1000.034,1000,1000.034,999.931,1000.034,1000.034,999.966,1000,999.966,1000,1000,999.966,999.966,999.966,1000,1000,1000,1000.034,1000,999.966,1000,999.966,1000.034,1000,1000,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000.069,1000.034,1000,999.966,1000,1000.034,999.966,1000,1000,1000.034,1000,1000,1000,1000.069,1000,999.966,999.964]
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.867,95.2,99.367,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,99.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.69,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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]
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.799,3.836,3.901,3.816,3.816,3.814,3.716,3.62,3.607,3.521,3.547,3.624,3.638,3.643,3.648,3.652,3.658,3.652,3.644,3.62,3.598,4.408,4.493,4.592,4.604,4.643,4.654,4.664,4.636,4.622,4.53,4.64,4.624,4.615,4.622,4.64,4.655,4.656,4.642,4.651,4.544,4.62,4.62,4.607,4.603,4.601,4.602,4.604,4.575,4.652,3.737,3.756,3.732,3.73,3.714,3.733,3.741,3.753,3.747,3.751,3.675,3.79,3.795,3.793,3.781,3.767,3.769,3.765,3.79,3.812,3.762,3.852,3.865,3.871,3.876,3.877,3.88,3.874,3.829,3.836,3.787,3.878,4.934,5.149,5.125,5.107,5.073,5.055,5.03,5.045,4.772,4.808,4.848,4.847,4.869,4.862,4.87,4.808,4.761,4.764,4.578,4.608,4.639,4.644,4.646,4.623,4.626,4.614,4.555,4.556,4.22,3.559,3.474,3.464,3.475,3.497,3.507,3.514,3.535,3.556,3.514,3.568,3.591,3.595,3.597,3.61,3.628,3.646,3.666,3.704,3.695,3.73,3.777,3.788,3.799,3.803,3.81,3.813,3.816,3.844,3.789,3.793,3.908,3.903,3.907,3.894,3.889,3.878,3.877,3.975,4.128,4.425,4.604,4.753,4.798,4.864,4.906,4.976,5.251,5.711,5.716,5.898,5.963,6.024,6.054,6.112,6.141,6.168,6.174,6.221,6.253,6.137,6.246,6.223,6.222,6.218,6.214,6.208,6.104,5.914,5.661,5.474,5.263,5.186,5.061,4.985,4.908,4.754,4.451,4.382,4.172,4.063,3.989,3.957,3.905,3.866,3.821,3.747,3.646,3.477,3.161,2.994,3.095,3.124,3.135,3.167,3.214,3.227,3.372,3.438,3.419,3.41,3.473,3.482,3.502,3.5,3.501,3.515,3.503,3.503,3.491,3.471,3.525,3.533,3.528,3.523,3.532,3.546,3.52,3.495,3.453,3.361,3.441,3.43,3.401,3.383,3.369,3.199,3.115,3.087,3.073,2.997,3.054,3.017,3.025,3.018,3,3,3.007,3.006,3.03,2.992,3.015,3.027,3.039,3.036,2.999,2.997,2.997,2.997,2.998,2.986,2.997,2.999,2.994,2.995,2.994,2.994,2.995,2.996,3.015,2.991,3.048,3.043,3.048,3.041,3.025,3.035,3.025,3.001,3.039,2.993,3.031,3.018,3.016,3.01,3.002,3,2.999,2.995,2.991,2.981,2.986,2.985,2.984,2.987,2.988,2.989,2.986,2.98,2.984,2.971,2.986,3.01,3.029,3.037,3.018,3.018,3.007,2.998,2.999,2.988,2.999,3.141,3.131,3.138,3.129,3.122,3.12,3.105,3.11,3.068,3.144,3.146,3.138,3.129,3.115,3.12,3.113,3.09,3.104,2.998,2.991,2.995,2.994,2.995,2.992,2.99,2.987,2.983,2.985,2.975,2.962,2.97,2.969,2.969,2.968,2.969,2.97,2.964,2.965,2.952,2.966,2.969,2.969,2.972,2.97,2.966,2.962,2.953,2.956,2.944,2.952,2.957,2.958,2.963,2.967,2.967,2.97,2.967,2.971,2.958,2.967,2.972,2.973,2.975,2.977,2.978,2.982,2.982,2.987,2.98,2.998,3.032,3.048,3.055,3.073,3.093,3.11,3.117,3.16,3.11,3.155,3.183,3.187,3.188,3.193,3.191,3.197,3.161,3.194,3.134,3.163,3.186,3.187,3.173,3.173,3.158,3.152,3.131,3.121,2.997,3.015,2.999,2.999,3.005,3,2.998,2.995,2.989,2.989,3.02,3.072,3.104,3.11,3.133,3.122,3.107,3.105,3.081,3.075,3.022,3.033,3.058,3.065,3.066,3.075,3.069,3.06,3.041,3.044,2.996,3.026,3.053,3.053,3.067,3.076,3.07,3.059,3.027,2.978,2.963,2.963,2.97,2.965,2.964,2.965,2.965,2.963,2.963,2.964,2.965,2.968,2.984,2.983,2.983,2.982,2.983,2.986,2.985,2.985,2.981,2.98,2.99,2.987,2.986,2.988,2.987,2.986,2.986,2.989,2.984,2.978,2.992,2.992,2.994,2.994,2.994,2.995,2.995,2.989,2.988,2.974,2.992,2.993,2.994,2.994,2.994,2.994,2.995,2.991,2.991,2.98,2.996,2.997,2.996,2.996,2.998,2.999,2.997,2.994,2.996,2.982,3.037,3.054,3.039,3.035,3.04,3.038,3.025,3.008,3.033,2.986,2.993,2.992,2.99,2.989,2.991,2.998,2.998,2.993,2.994,2.974,2.975,2.975,2.977,2.977,2.975,2.976,2.975,2.97,2.975,2.948,2.956,2.958,2.958,2.956,2.955,2.955,2.955,2.953,2.954,2.944,2.957,2.964,2.963,2.962,2.953,2.952,2.957,2.958,2.964,2.961,2.977,2.976,2.977,2.978,2.978,2.978,2.977,2.973,2.975,2.962,2.963]
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 --> 8
    line [4.758,4.784,4.844,4.744,4.758,4.756,4.547,4.389,4.359,4.211,4.256,4.396,4.404,4.418,4.411,4.427,4.421,4.43,4.409,4.393,4.398,5.536,5.618,5.87,5.824,5.833,5.795,5.815,5.787,5.676,5.625,5.852,5.767,5.758,5.758,5.851,5.918,5.934,5.876,5.851,5.646,5.771,5.753,5.753,5.771,5.753,5.753,5.771,5.687,5.806,4.648,4.695,4.654,4.677,4.654,4.684,4.679,4.698,4.706,4.698,4.606,4.757,4.761,4.763,4.737,4.7,4.701,4.698,4.725,4.752,4.695,4.797,4.82,4.82,4.832,4.819,4.811,4.813,4.781,4.77,4.696,4.775,6.235,6.452,6.452,6.425,6.386,6.335,6.294,6.294,5.833,5.833,5.909,5.888,5.969,5.929,5.888,5.739,5.625,5.679,5.313,5.273,5.373,5.373,5.341,5.399,5.399,5.368,5.299,5.387,4.963,4.38,4.306,4.291,4.304,4.333,4.355,4.413,4.455,4.487,4.449,4.53,4.568,4.574,4.593,4.618,4.648,4.672,4.684,4.701,4.693,4.728,4.805,4.814,4.827,4.827,4.834,4.832,4.806,4.841,4.779,4.779,4.879,4.867,4.881,4.862,4.847,4.827,4.819,4.928,5.072,5.388,5.692,5.912,6.017,6.115,6.186,6.265,6.466,6.71,6.739,6.811,6.85,6.902,6.938,6.991,7.023,7.048,7.071,7.099,7.118,7.038,7.118,7.105,7.107,7.105,7.104,7.101,7.03,6.926,6.838,6.735,6.621,6.558,6.478,6.42,6.339,6.111,5.725,5.62,5.391,5.3,5.086,4.99,4.928,4.885,4.844,4.76,4.673,4.479,4.175,3.977,4.023,4.055,4.055,4.066,4.132,4.154,4.315,4.388,4.351,4.344,4.406,4.436,4.495,4.485,4.485,4.5,4.477,4.454,4.408,4.376,4.406,4.419,4.413,4.437,4.466,4.51,4.49,4.475,4.433,4.322,4.437,4.455,4.451,4.382,4.385,4.174,4.051,4.065,4.027,3.989,4.013,3.989,3.989,3.985,3.987,3.987,3.987,3.989,3.998,3.989,4.027,4.053,4.051,4.05,4.013,3.995,3.995,3.998,4,3.975,3.98,3.976,3.975,3.972,3.97,3.974,3.972,3.972,3.972,3.95,3.973,3.979,3.988,3.984,3.979,3.979,3.974,3.964,3.962,3.945,3.962,3.956,3.951,3.941,3.934,3.932,3.93,3.929,3.915,3.907,3.921,3.916,3.915,3.921,3.928,3.928,3.928,3.92,3.927,3.911,3.933,3.955,3.959,3.957,3.959,3.966,3.973,3.98,3.98,3.963,3.983,4.092,4.08,4.128,4.15,4.127,4.113,4.145,4.14,4.128,4.239,4.242,4.237,4.187,4.165,4.174,4.165,4.172,4.191,4.124,4.048,4.095,4.084,4.061,4.037,4,3.994,3.983,3.994,3.98,3.951,3.965,3.958,3.95,3.952,3.951,3.942,3.93,3.917,3.892,3.903,3.909,3.915,3.935,3.928,3.924,3.919,3.895,3.894,3.875,3.887,3.898,3.902,3.907,3.91,3.912,3.911,3.902,3.898,3.891,3.903,3.912,3.909,3.915,3.92,3.924,3.933,3.937,3.941,3.942,3.963,3.968,3.968,3.969,3.973,3.976,3.985,3.982,3.986,3.978,3.993,4.024,4.023,4.023,4.012,4.045,4.045,4.044,4.033,3.995,4.023,4.077,4.087,4.055,4.066,4.022,4.011,4.011,3.996,3.972,3.981,3.975,3.977,3.979,3.975,3.973,3.973,3.967,3.967,3.985,3.99,3.998,4.014,4.041,4.055,4.092,4.081,4.042,4.043,3.996,3.998,3.998,4,3.998,4,3.995,3.989,3.993,3.994,3.983,3.994,4.014,3.998,4,4.014,4.04,4.04,3.998,3.958,3.932,3.927,3.931,3.927,3.926,3.918,3.912,3.912,3.905,3.903,3.905,3.909,3.93,3.936,3.937,3.935,3.934,3.927,3.922,3.916,3.91,3.9,3.908,3.902,3.897,3.897,3.895,3.902,3.895,3.902,3.889,3.889,3.908,3.9,3.9,3.912,3.91,3.913,3.916,3.904,3.903,3.89,3.917,3.919,3.922,3.92,3.922,3.928,3.938,3.93,3.938,3.929,3.949,3.958,3.96,3.955,3.946,3.953,3.95,3.96,3.959,3.937,3.974,3.985,3.977,3.977,3.982,3.974,3.977,3.971,3.978,3.945,3.954,3.957,3.956,3.949,3.95,3.969,3.96,3.946,3.943,3.913,3.905,3.903,3.914,3.921,3.914,3.908,3.904,3.894,3.9,3.857,3.866,3.864,3.872,3.868,3.876,3.879,3.87,3.862,3.868,3.849,3.865,3.872,3.874,3.879,3.844,3.847,3.857,3.865,3.88,3.878,3.907,3.915,3.911,3.913,3.925,3.917,3.926,3.921,3.92,3.896,3.9]
Loading

Copy link

🌋 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.003,100,100,100,99.997,100,100,100,100,99.997,100,99.997,99.997,100,99.997,100,100,100,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.003,100,100.007,100,100,100,100.003,100,100,100,100,100,100,100.003,99.997,100,100,100,100,100,100.003,100,100,100,99.997,99.997,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,99.997,100,100,100,100,100,100.003,99.997,100,100,99.997,100,100.003,100,100,100.003,100,99.997,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,99.997,99.997,100,100,100,100.003,100.003,100,100,100,100,100,100.003,100,100,100,100,99.997,100,100,100,100,100.003,99.997,100,100,100,100,100,100.007,100,100,99.997,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100,100.003,99.997,100,100,100,99.997,100,100,100,100,100,100,99.997,100,100,100.003,100,100.003,100,100,100,100,100,100,100,100.003,100,100,100,99.997,100.003,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,99.997,100,100,100,100,99.997,99.997,100,100,100,100.003,99.997,100,100,100,100,100,100,100,100,100,100.003,100,100,100,100,99.997,99.997,100,100.003,100,100,99.997,100,100.003,100,100,100,100.003,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100.003,100.003,100,100,100,100,100.003,100,100,100,100,99.997,99.997,99.997,99.997,100,99.997,100,99.997,100,100.003,100,100,99.997,100,100,100.003,100,100,100,99.997,100,100.003,100,100,99.997,100,100,99.997,100,100.003,100,100,100.003,100,100.003,100,100,100.003,100,100,100,100.003,100,100.003,99.993,100,100,100,100.003,100,99.997,99.997,100,100.003,100,100,100.003,100,100.003,100,100.003,100,100,100,100.003,100,100,99.997,100,100,100,100,99.997,100.003,99.997,100,100,100,100,100,100.003,100.003,100,100,100,100.003,100,99.997,100,100,100,100,100,99.997,100,99.997,100,100,100,100,100,99.997,100,100.003,100.003,100,100,100,100,100,100,100,99.997,100,99.997,100,100.003,100,100,99.997,100,100,100.003,100,100.003,100,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,99.997,100,100.003,100.003,100,100,99.997,100,100,100.003,100,100,99.997,100,99.997,100,100,100,100,100,100.007,100,100,100,100.003,100,100,100,100,100,100,100,99.997,100,100,100,100,100,99.997,100,100.003,100,100.003,100,100,100.003,100.003,100,100,99.997,100,100.003,100,100,100,100,100,100,100.003,99.997,100.003,100,100,100,100,100,100,100.003,100,99.997,100,99.997,100,100,99.997,99.997,100,100,99.997,100,99.997,100,100,100,100,100,100,99.997,100.003,99.997,99.997,99.997,100,100,100.003,100,100,100,100,100,99.997,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100.007,100.003,100,100,99.997,100,100,100,100,100,100.003,99.997,100,100,100,100.003,100,100,99.997,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, %" 90 --> 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" 825 --> 1107
    line [917.432,950.969,1000.138,1000,1000,999.966,999.966,1000.034,1000,999.966,999.966,1000,1000.034,999.966,999.966,1000,999.966,1000,1000.069,1000.069,999.966,999.966,1000,999.966,1000.069,999.966,1000.034,999.966,1000,1000.207,1000.034,999.966,1000.034,999.931,1000.034,1000,1000,1000,1000.034,1000.034,1000,1000.034,1000,1000.034,1000,1000,999.966,999.931,1000,1000,1000.069,1000,1000.069,999.931,1000.034,1000,1000.069,1000,1000,999.966,1000,999.966,1000.034,1000,1000.034,1000,1000,999.966,1000,1000,999.931,999.966,1000,1000,1000.034,1000.034,1000.034,999.966,1000.069,994.345,1000,999.966,1000.034,1000,1000.034,999.931,999.966,1000,1000.034,1000,1000.034,1000.034,999.966,1000,999.966,1000.034,1000,999.966,1000,1000.034,1000,1000.034,1000,1000,1000,999.966,1000,999.966,1005.655,1000,1000.034,1000,999.966,1000,1000.034,1000.034,1000,999.931,1000.034,1000,999.966,1000.034,1000,1000.069,999.966,1000,1000.069,1000,1000.034,1000.034,999.966,999.966,1000.034,1000,1000,1000.034,1000.034,999.966,999.966,999.966,999.966,1000.034,1000,1000.034,1000.034,999.966,1000.034,1000.034,999.966,1000.034,1000,1000,999.966,1000,999.966,999.966,999.966,999.931,999.897,1000.034,1000.034,999.966,999.966,1000,999.966,1000,1000,1000.034,1000.034,1000.069,999.966,999.931,999.966,1000,1000.069,999.966,999.931,1000.034,1000,999.966,1000,1000,1000.034,1000.069,1000,1000.034,1000.034,1000.103,1000,999.966,1000.034,1000.034,1000.034,999.966,999.931,1000.034,999.966,999.931,999.931,1000,1000.034,1000,1000,999.966,1000.034,1000,1000,1000,1000.069,1000,1000,1000,999.931,1000.034,1000,1000.034,1000.034,999.966,1000.069,999.966,999.966,1000,1000.034,1000.069,1000,1000.034,1000.034,1000.034,1000,1000.034,1000.034,999.966,1000,1000,1000,999.931,999.966,999.966,1000.034,1000,999.966,1000.069,999.966,1000,999.966,1000,999.966,1000,1000.034,1000.034,999.966,1000.034,1000,1000,1000,1000.034,1000.034,1000.034,999.966,999.966,1000.034,1000,1000.034,1000.034,1000.034,1000.034,1000.034,999.966,1000,1000,1000,1000.034,1000,1000.034,999.966,1000.034,1000,999.931,1000,1000,999.966,999.931,1000.034,999.966,1000,1000,1000,1000.034,1000.034,1000,1000,999.966,1000,1000.034,1000.034,1000,999.966,1000.034,1000.034,999.966,999.966,1000,999.966,1000,1000,999.966,1000.034,1000.034,1000.034,1000,1000.069,999.966,1000.069,999.897,1000,1000,1000,999.966,1000,999.966,1000,1000,999.931,999.966,999.966,1000,1000,1000,999.966,999.966,1000,1000.034,999.966,1000,1000,1000,1000,1000,1000.034,999.966,1000.034,999.931,1000.069,999.966,999.966,999.931,999.966,1000,1000.034,1000.034,1000,1000,1000.034,999.966,1000.069,999.966,999.966,1000.069,1000.034,1000,999.966,1000.069,1000,1000.034,1000,999.966,1000,1000,1000,999.966,1000.034,1000,999.966,1000,1000.069,1000.069,1000,1000,999.966,1000,1000.069,999.931,1000.034,999.931,1000,1000,999.966,1000,1000.034,1000,999.966,1000,999.966,1000,1000,1000.034,999.966,1000,1000.034,1000.034,1000.034,1000.034,1000,999.966,999.966,999.931,1000.034,1000.034,1000,999.966,1000,1000,1000.069,1000,1000,1000,1000.034,1000,1000,1000,1000,1000.034,999.966,999.966,999.966,1000,999.966,999.966,1000,999.966,1000,1000,1000,1000.034,1000.034,999.966,999.966,1000,1000,1000.034,1000,999.966,1000.034,1000,1000,1000,999.966,1000.034,1000.034,1000,1000,1000.069,1000,1000.034,999.966,1000.034,1000.034,1000,1000,1000.034,1000,1000.034,1000,1000.034,1000.034,1000.034,999.966,1000,1000,1000,1000,999.966,1000,1000,1000,1000.034,1000,999.931,1000,999.966,999.966,1000.069,1000,1000.034,1000,1000,999.966,1000,999.966,1000.034,1000,999.966,999.966,999.931,999.931,1000.034,999.966,999.966,1000.034,1000.034,1000.034,1000,1000.034,999.966,1000,1000,999.931,1000,1000.034,1000.034,1000,999.966,1000.034,1000.034,999.966,1000.034,1000.034,1000.034,999.966,1000,1000,1000,1000.034,1000.034,1000,1000.034,1000.069,999.966,999.966,999.966,1000.034,999.931,1000.034,1000,999.966,1000.103,1000.034,999.966,1000,1000,999.966,1000,999.966,999.966,999.966,999.966,1000,1000,1000,1000,1000.034,1000,1000,1000.034,1000.034,1000,1000.034,1000.034,1000,1000,1000.034,999.966,999.966,1000.034,1000.034,1000,1000,999.966,1000,1000.034,999.966,1000.034,1000.071]
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.716,95.083,100,100,100,100,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,99.517,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.483,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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.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,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]
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.998,1.998,2.066,1.997,1.997,1.997,1.998,1.996,1.996,1.993,1.996,1.998,1.998,1.999,1.997,1.998,1.998,1.999,2.04,2.293,2.3,2.366,2.381,2.388,2.401,2.398,2.404,2.404,2.391,2.376,2.368,2.417,2.428,2.429,2.427,2.417,2.416,2.423,2.411,2.377,2.344,2.368,2.37,2.368,2.361,2.349,2.344,2.294,1.998,1.998,1.993,1.995,1.994,1.994,1.995,1.995,1.995,1.995,1.993,1.994,1.991,1.993,1.993,1.994,1.994,1.994,1.993,1.992,1.992,1.993,1.991,1.994,1.994,1.995,1.995,1.996,1.996,1.995,1.996,2.163,2.403,2.443,2.446,2.449,2.442,2.442,2.448,2.443,2.422,2.478,2.447,2.457,2.477,2.478,2.479,2.484,2.485,2.491,2.479,2.495,2.449,2.48,2.471,2.461,2.456,2.453,2.462,2.448,2.222,1.997,1.995,1.997,1.996,1.996,1.996,1.996,1.996,1.996,1.992,1.995,1.993,1.993,1.992,1.992,1.992,1.992,1.992,1.992,1.99,1.99,1.988,1.991,1.991,1.991,1.991,1.991,1.991,1.992,1.99,1.993,1.991,1.992,1.991,1.991,1.99,1.99,1.99,1.99,1.987,1.988,1.987,1.988,1.988,1.989,1.99,1.99,1.99,1.99,1.99,1.991,1.989,1.991,1.992,1.992,1.992,1.991,1.991,1.991,1.989,1.99,1.99,1.992,1.992,1.992,1.992,1.992,1.992,1.991,1.99,1.991,1.99,1.993,1.991,1.991,1.991,1.991,1.991,1.991,1.991,1.99,1.989,1.992,1.993,1.993,1.994,1.993,1.993,1.993,1.992,1.995,1.994,1.995,1.996,1.995,1.996,1.996,1.997,1.997,1.997,1.997,1.995,1.996,1.996,2.032,2.013,2,1.999,1.998,1.997,1.996,1.993,1.993,1.993,1.992,1.992,1.991,1.991,1.99,1.987,1.987,1.986,1.987,1.987,1.986,1.985,1.985,1.983,1.984,1.987,1.987,1.986,1.987,1.981,1.981,1.981,1.982,1.982,1.982,1.982,1.982,1.981,1.983,1.983,1.983,1.983,1.983,1.983,1.983,1.982,1.982,1.981,1.983,1.983,1.983,1.983,1.983,1.982,1.978,1.978,1.978,1.977,1.978,1.979,1.984,1.984,1.984,1.985,1.985,1.985,1.985,1.986,1.987,1.989,1.989,1.989,1.989,1.99,1.99,1.99,1.989,1.989,1.989,1.99,1.99,1.991,1.991,1.991,1.99,1.99,1.989,1.989,1.989,1.986,1.985,1.985,1.984,1.983,1.983,1.983,1.98,1.98,1.978,1.979,1.979,1.978,1.978,1.978,1.977,1.977,1.976,1.976,1.975,1.975,1.975,1.975,1.975,1.975,1.975,1.974,1.973,1.974,1.973,1.975,1.976,1.979,1.979,1.979,1.98,1.98,1.98,1.98,1.979,1.981,1.981,1.981,1.981,1.981,1.982,1.982,1.981,1.983,1.981,1.983,1.982,1.983,1.983,1.984,1.984,1.984,1.982,1.983,1.983,1.983,1.98,1.98,1.98,1.979,1.979,1.979,1.978,1.979,1.977,1.979,1.979,1.979,1.979,1.978,1.978,1.979,1.978,1.979,1.978,1.981,1.981,1.981,1.98,1.981,1.981,1.982,1.981,1.982,1.982,1.984,1.984,1.984,1.984,1.984,1.984,1.984,1.984,1.985,1.984,1.985,1.986,1.986,1.987,1.987,1.987,1.987,1.986,1.987,1.985,1.986,1.986,1.986,1.986,1.987,1.986,1.985,1.984,1.985,1.983,1.983,1.984,1.984,1.984,1.984,1.985,1.985,1.984,1.985,1.983,1.985,1.985,1.985,1.985,1.985,1.986,1.985,1.985,1.985,1.984,1.986,1.986,1.986,1.986,1.986,1.986,1.986,1.985,1.986,1.986,1.986,1.986,1.985,1.986,1.985,1.985,1.985,1.985,1.986,1.984,1.986,1.986,1.985,1.985,1.984,1.984,1.984,1.983,1.982,1.981,1.981,1.981,1.98,1.98,1.98,1.981,1.98,1.979,1.979,1.979,1.98,1.98,1.979,1.979,1.979,1.978,1.978,1.977,1.977,1.975,1.976,1.977,1.976,1.977,1.977,1.977,1.977,1.977,1.977,1.977,1.978,1.979,1.979,1.979,1.979,1.979,1.979,1.979,1.979,1.979,1.98,1.981,1.981,1.983,1.983,1.983,1.983,1.983,1.983,1.983,1.984,1.984,1.984,1.985,1.984,1.985,1.986,1.985,1.986,1.985,1.986,1.986,1.987,1.987,1.988,1.987,1.989,1.988,1.988,1.987,1.989,1.988,1.987,1.987,1.987,1.987,1.987,1.986,1.985,1.984,1.985,1.985,1.984,1.984,1.984,1.983,1.983,1.982,1.981,1.98,1.981,1.981,1.981,1.981,1.981,1.979,1.98,1.98,1.98,1.979,1.98]
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.975,2.975,2.984,2.974,2.974,2.976,2.978,2.974,2.976,2.971,2.977,2.982,2.982,2.983,2.983,2.984,2.984,2.986,2.986,3.074,3.087,3.214,3.244,3.256,3.25,3.241,3.244,3.256,3.244,3.195,3.188,3.284,3.286,3.275,3.293,3.286,3.275,3.264,3.269,3.211,3.103,3.172,3.181,3.163,3.135,3.135,3.116,3.094,2.981,2.979,2.97,2.973,2.975,2.977,2.977,2.98,2.98,2.979,2.975,2.975,2.97,2.972,2.974,2.972,2.971,2.971,2.969,2.968,2.967,2.971,2.968,2.974,2.977,2.977,2.979,2.98,2.98,2.979,2.979,2.994,3.176,3.234,3.247,3.287,3.27,3.278,3.278,3.274,3.301,3.418,3.351,3.4,3.448,3.471,3.465,3.506,3.494,3.517,3.471,3.511,3.448,3.467,3.444,3.411,3.416,3.422,3.458,3.443,3.179,2.993,2.988,2.989,2.988,2.988,2.989,2.988,2.988,2.986,2.978,2.984,2.979,2.976,2.975,2.974,2.971,2.971,2.97,2.969,2.962,2.962,2.958,2.966,2.966,2.967,2.967,2.966,2.966,2.966,2.964,2.969,2.967,2.968,2.967,2.966,2.966,2.967,2.967,2.968,2.962,2.964,2.963,2.966,2.967,2.969,2.969,2.969,2.97,2.974,2.974,2.975,2.971,2.977,2.976,2.976,2.974,2.973,2.974,2.975,2.972,2.974,2.972,2.974,2.973,2.972,2.973,2.974,2.973,2.973,2.97,2.974,2.974,2.976,2.978,2.978,2.976,2.976,2.974,2.972,2.971,2.972,2.969,2.975,2.975,2.977,2.978,2.979,2.978,2.977,2.976,2.981,2.98,2.983,2.984,2.984,2.984,2.986,2.986,2.989,2.987,2.987,2.986,2.987,2.987,2.996,2.995,2.994,2.995,2.995,2.992,2.991,2.985,2.987,2.987,2.986,2.985,2.984,2.984,2.984,2.976,2.976,2.973,2.977,2.978,2.977,2.975,2.974,2.97,2.968,2.971,2.969,2.965,2.965,2.952,2.952,2.955,2.956,2.956,2.955,2.957,2.957,2.955,2.957,2.958,2.96,2.962,2.962,2.96,2.961,2.962,2.962,2.962,2.963,2.961,2.96,2.96,2.96,2.958,2.954,2.953,2.954,2.957,2.961,2.96,2.965,2.966,2.966,2.966,2.968,2.968,2.969,2.971,2.975,2.976,2.977,2.977,2.978,2.978,2.977,2.975,2.973,2.973,2.974,2.975,2.976,2.976,2.977,2.976,2.973,2.972,2.968,2.965,2.967,2.964,2.961,2.96,2.96,2.958,2.957,2.954,2.948,2.946,2.945,2.944,2.944,2.944,2.944,2.944,2.945,2.941,2.939,2.941,2.941,2.944,2.944,2.943,2.943,2.944,2.945,2.949,2.948,2.951,2.95,2.952,2.955,2.964,2.964,2.964,2.965,2.965,2.962,2.963,2.961,2.962,2.96,2.959,2.958,2.956,2.958,2.959,2.958,2.957,2.956,2.96,2.961,2.964,2.963,2.963,2.96,2.961,2.956,2.957,2.957,2.956,2.951,2.951,2.952,2.951,2.952,2.953,2.949,2.952,2.947,2.949,2.948,2.95,2.95,2.949,2.948,2.948,2.948,2.948,2.945,2.95,2.951,2.952,2.953,2.953,2.952,2.954,2.955,2.955,2.957,2.96,2.96,2.96,2.96,2.96,2.96,2.96,2.958,2.963,2.964,2.968,2.968,2.97,2.971,2.972,2.971,2.971,2.97,2.972,2.969,2.971,2.972,2.973,2.974,2.975,2.975,2.972,2.97,2.97,2.967,2.968,2.967,2.968,2.969,2.971,2.971,2.97,2.966,2.967,2.964,2.967,2.968,2.968,2.967,2.966,2.964,2.964,2.962,2.963,2.959,2.959,2.959,2.959,2.961,2.959,2.96,2.96,2.961,2.963,2.962,2.964,2.966,2.965,2.963,2.963,2.964,2.968,2.967,2.969,2.968,2.97,2.969,2.968,2.97,2.97,2.971,2.971,2.968,2.968,2.967,2.965,2.963,2.959,2.96,2.958,2.957,2.953,2.95,2.95,2.949,2.949,2.947,2.947,2.949,2.949,2.947,2.946,2.942,2.94,2.936,2.939,2.939,2.939,2.938,2.937,2.937,2.937,2.935,2.935,2.936,2.942,2.944,2.944,2.947,2.946,2.948,2.95,2.949,2.946,2.945,2.949,2.951,2.947,2.948,2.947,2.945,2.947,2.947,2.947,2.945,2.949,2.949,2.95,2.952,2.952,2.952,2.953,2.953,2.953,2.948,2.951,2.953,2.951,2.953,2.952,2.951,2.955,2.956,2.955,2.955,2.956,2.958,2.956,2.957,2.958,2.956,2.956,2.954,2.953,2.952,2.954,2.954,2.954,2.952,2.951,2.951,2.951,2.949,2.949,2.948,2.949,2.951,2.951,2.954,2.954,2.95,2.95,2.95,2.947,2.947,2.948]
Loading

Copy link

🌋 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,99.997,100,100.003,100,100,100,100,100,100,100,100,100,100,100,100,100,99.979,99.826,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.834,99.834,99.834,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.831,99.832,99.831,99.831,99.831,99.834,99.856,100,100,100,100,100,100,100,100,100,100,99.997,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,99.968,99.905,99.804,99.71,99.672,99.628,99.597,99.537,99.421,99.356,99.213,99.097,98.977,98.929,98.731,98.588,98.419,98.253,98.042,97.86,97.545,97.397,97.255,97.102,96.927,96.821,96.718,96.599,96.522,96.497,96.421,96.391,96.352,96.292,96.235,96.107,96.066,96.037,96.01,96.096,96.064,96.077,96.016,96.168,96.253,96.426,96.647,96.93,97.211,97.888,98.124,98.395,98.663,99.016,99.149,99.26,99.39,99.467,99.525,99.661,99.603,99.591,99.579,99.584,99.648,99.67,99.68,99.702,99.709,99.705,99.697,99.69,99.678,99.668,99.637,99.636,99.62,99.618,99.462,99.432,99.398,99.4,99.342,99.283,99.207,99.135,99.027,98.872,98.686,99.195,99.492,99.52,99.477,99.44,99.401,99.334,99.265,99.101,98.768,98.563,98.337,97.959,97.338,96.842,95.455,76.923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,99.497,98.152,97.431,97.397,97.325,97.326,97.327,97.292,97.257,97.257,97.223,97.188,97.187,97.188,97.152,97.118,97.117,97.05,97.015,96.979,96.949,96.877,96.806,96.809,96.799,96.774,96.776,96.773,96.846,97.368,98.61,99.345,99.345,99.311,99.276,99.172,99.207,99.138,99.138,99.103,99.138,99.138,99.138,99.172,99.207,99.207,99.276,99.31,99.31,99.276,99.31,99.379,99.379,99.311,99.24,99.242,99.207,99.207,99.138,99.138,99.121,99.08,98.731,98.127,98,97.963,97.617,97.016,96.463,95.356,95.156,94.962,93.515,92.827,92.417,91.696,91.199,90.813,90.832,90.754,90.716,90.687,90.628,90.756,90.763,90.805,90.846,90.906,90.909,91.107,91.179,91.593,92.232,92.412,92.386,92.739,93.275,93.848,94.842,94.973,95.119,96.362,96.965,97.237,97.964,98.251,98.74,98.713,98.871,98.771,98.766,98.755,98.807,98.768,98.731,98.725,98.725,98.727,98.654,98.588,98.587,98.543,98.44,98.443,98.549,98.582,98.579,98.546,98.581,98.446,98.483,98.446,98.408,98.37,98.339,98.238,98.238,98.239,98.275,96.973,96.158,96.017,96.001,95.865,95.66,95.313,94.995,94.83,94.753,94.549,94.304,94.301,94.152,94.012,93.856,93.754,93.679,93.493,93.46,93.412,93.414,93.354,93.064,93.075,93.077,93.01,92.971,92.822,94.06,94.74,94.811,94.644,94.394,94.109,93.776,93.518,93.246,92.855,92.236,92.1,91.684,91.493,90.878,90.375,89.837,89.588,89.435,89.174,88.727,88.315,88.028,87.821,87.526,86.919,86.414,85.734,85.351,84.797,84.335,83.576,83.149,82.832,82.742,82.556,82.535,82.308,82.113,82.18,81.875,81.557,81.14,81.137,80.712,80.553,80.243,79.979,79.772,79.723,79.378,79.066,78.776,78.151,77.793,77.432,77.085,77.047,77.106,77.096,77.021,76.918,76.662,76.091,76.09,75.546,75.32,74.939,74.238,73.423,72.904,72.33,71.626,71.195,70.529,69.615,68.472,67.617,66.54,65.995,65.151,64.132,63.567,62.945,62.353,61.746,60.716,59.813,59.174,58.46,57.614,57.177,56.791,56.036,55.579,55.164,54.869,55.038,54.922,54.671,54.185,54.016,53.941,53.722,53.562,53.931,53.745,53.838,53.386,53.179,53.437,53.274,53.244,53.025,52.87,52.799,52.51,52.088,51.866,51.693,51.224,51.054,50.795,50.742,50.225,50.104,49.758,49.983,49.828,50.155,50.121,50.069,50.258,50.447,50.413,50.534,50.311,50.738,50.76,50.483,50.379,50.363,50.327,50.241,50.207,50.207,50.155,50.395,50.638,50.934,50.603,50.552,50.259,50.447,50.483,50.38,49.671,49.448,48.874,48.637,48.149,47.629,47.106,46.556,46.066,45.505,44.741,44.433,44.057,43.895,43.731,43.537,43.36,43.075,42.413,42.195,41.834,40.977,40.387,40.097,39.731,39.488,39.35,39.187,38.868,38.841,38.785,38.682,38.509,38.515,38.493,38.214,37.53,36.955,36.813,36.213,35.791,35.495,35.085,34.361,33.449,32.964,32.354,32.003,30.999,30.16,30.01,29.453,28.76,27.876,27.005,25.713,24.461,23.76,23.069,22.346,21.602,20.507,19.472,18.481,17.911,18.022,18.182,17.858,17.533,16.742,16.169,15.483,15.209,14.945,14.562,14.355,14.157,13.974,13.64,13.223,12.898,12.776,12.823,12.664,12.517,12.075,11.473,10.876,10.225,9.792,9.517,9.217,8.755,8.339,7.376,6.452,5.915,5.563,5.456,5.151,4.81,4.325,4.035,3.49,2.92,2.535,2.186,1.906,1.451,1.166,0.849,0.496,0.248]
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" 0 --> 1134
    line [903.163,936.318,969.749,1004.517,1000,1000.034,1000,1000.103,1000.034,1000.034,1000.034,1000,1000.069,1000,1000.069,1000.034,1000.034,999.931,1000.069,1000.069,999.966,999.414,999.517,999.31,1000,991.724,1000.103,999.828,1000.31,980.414,970.552,968.448,998.621,998.483,998.345,998.069,998.517,998.414,998.483,998.345,998.483,998.414,998.345,998.31,998.31,998.345,998.414,998.414,998.483,998.448,998.862,998.621,998.897,998.552,1006.793,998.414,998.69,998.276,1018.241,1028.241,1030.172,999.862,1000.034,1000.172,1000.345,999.966,1000,999.966,1000.103,1000.034,1000.069,999.793,999.897,1000.138,1000.138,1000.069,1000.069,999.862,1000.069,1000.138,1000.103,999.828,999.966,1000.069,999.414,1000,999.931,999.931,999.793,1000.069,991.586,979.897,981.276,984.379,988.414,987.276,983.483,983.793,976.172,982.862,975.034,973.103,985.069,988.069,979.103,986.69,989,987.759,979.138,989.897,987.862,985.862,969.828,965.966,951.828,935.931,919.759,902.655,881.966,870.621,860.414,835.379,805.483,776.069,754.172,732.655,705.138,685.483,651.69,634.31,613.793,577.379,548.517,530.586,498.552,471.241,447.724,433.931,399.828,378.31,354.241,343.724,322.172,312.138,304.828,295.931,288.931,282.862,278.069,276,274.69,269.207,261.345,253.966,248.897,244.655,240.276,236.862,231.379,225.241,222.241,216.379,211.138,203.724,197.138,189.862,179.828,172.517,162.517,153.828,145.828,137.379,126.517,115.276,105.828,95.621,87.69,77.957,67.276,57.724,55.655,54.31,50.31,46.138,43.138,40.276,36.241,32.862,26.862,19.586,16.793,14.517,11.828,9.069,6.552,4.552,0.897,0.207,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.276,0.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" 6 --> 115
    line [90.859,94.156,97.489,100.966,99.966,100,99.966,100,100,100,99.966,100,100,100,100,100,100,100,99.966,100,100,99.828,99.897,99.931,99.897,99.138,99.931,99.828,99.966,97.655,95.897,95.138,99.345,99.345,99.276,99.31,99.345,99.31,99.31,99.31,99.345,99.345,99.276,99.31,99.276,99.31,99.276,99.345,99.345,99.31,99.448,99.379,99.31,99.414,100.172,99.414,99.483,99.379,101.69,103.483,104.207,99.966,100,100.069,100.034,99.966,100,100,100,99.966,100,99.966,100,100,100.034,100.034,100.034,99.966,100,100.034,99.966,99.931,100,100.034,99.862,100.034,99.966,100,99.966,100,98.069,97.483,97.793,97.552,98.276,98.207,96.966,97.069,96.517,97.276,97.517,96.517,97.31,98.552,97.31,98,97.172,98.345,97.793,98.828,98.793,98.862,97.138,98.483,98.931,99,99.448,99.345,99.379,101.586,102.034,101.724,102.103,101.345,101.448,102.586,102.552,103.138,102.276,102.207,103.138,102.379,101.103,102.345,101.621,102.517,101.276,101.793,100.828,101.034,100.621,102.483,101.172,100.724,100.552,100.069,100.103,100.241,99.897,100.138,100.069,99.414,99.483,99.655,99.793,99.69,99.517,99.621,99.655,99.828,100,99.828,99.655,99.448,99.655,99.828,99.828,99.862,99.931,100.241,99.621,99.552,99.172,99.241,99.31,99.31,99.207,99.369,99.241,99.31,99.897,99.828,99.655,99.621,99.897,99.931,99.828,99.621,99.655,99.448,99.483,99.621,99.931,99.586,99.621,99.655,99.586,99.441,99.276,99.655,99.69,99.793,99.655,99.517,99.724,99.483,99.562,99.414,99.483,99.517,99.517,99.31,99.414,99.241,99.414,99.69,99.552,99.379,99.414,99.448,99.655,99.379,99.517,99.379,99.241,99.345,99.11,99.345,99.276,99.517,99.655,99.828,100.103,99.828,100.103,99.793,99.862,99.655,99.69,99.655,99.828,99.448,99.759,99.828,99.483,99.724,99.897,99.655,99.828,99.655,99.759,99.586,99.379,99.621,99.621,100.207,99.862,99.966,99.793,99.793,99.586,99.517,99.655,99.552,99.621,99.621,99.586,99.517,99.517,99.448,99.655,99.241,99.103,99.414,99.31,99.138,99.448,99.276,99.345,99.31,99.379,99.759,99.655,99.517,99.276,99.621,99.414,99.448,99.414,99.69,99.517,99.69,99.517,99.828,99.862,99.931,99.828,99.655,100.103,100.034,100.172,100.069,99.724,100,99.897,99.724,99.793,99.793,99.828,100.069,99.931,99.759,99.724,99.793,99.621,99.897,99.793,99.793,100.034,99.828,99.793,99.897,99.69,99.655,99.862,100.034,100.069,99.897,99.897,100,100.241,100.345,100.138,100.103,99.931,100.448,99.862,99.931,100.069,99.828,100.034,100.138,100,99.931,100.172,100.31,100.034,99.655,100.034,99.862,100.034,100.345,100,99.793,99.621,99.862,99.545,99.897,99.69,99.621,99.483,99.621,99.483,99.724,99.345,100.034,99.793,99.69,99.828,100.034,99.966,99.586,99.759,99.621,99.655,99.552,99.897,99.586,99.897,99.724,99.724,100.138,99.89,99.966,99.931,99.938,99.931,99.828,99.793,99.621,99.69,99.655,99.759,99.793,99.621,99.966,99.759,99.552,99.379,99.586,99.759,99.345,99.448,99.241,99.966,99.517,99.517,99.207,99.345,99.103,99.241,99.421,99.552,99.379,99.448,99.207,99.345,99.448,99.724,100.069,100.138,99.828,99.517,99.483,99.379,99.552,99.759,99.448,99.69,99.69,99.862,99.69,99.862,99.621,99.724,99.862,100.034,99.931,99.724,99.379,99.483,99.241,99.483,99.31,99.276,99.138,98.862,98.828,98.172,98.345,98.517,98.552,98.586,98.414,98.207,98.069,98.276,97.828,98,97.931,97.793,97.69,97.448,97.552,97.517,97.345,97.241,97.345,97.448,97.345,97.379,97.241,97.379,97.345,97.345,97.379,97.448,97.448,97.414,97.379,97.379,97.207,97.207,97.172,97.345,97.207,97.138,97.069,97.138,97,97.034,97.172,97.069,96.862,97.069,96.931,96.966,96.931,96.897,96.897,96.759,96.724,96.793,96.966,96.828,96.793,96.655,96.69,96.724,96.759,96.897,96.931,96.828,96.828,96.897,97,96.897,96.897,96.931,97,96.931,96.931,97.103,96.793,97.172,96.966,96.966,97.034,97.034,97.138,97.103,97.069,96.966,97,97,97.172,97.172,97.207,97.138,97.172,97.207,97.241,97.207,97.276,97.207,97.241,97.448,97.345,97.276,97.276,97.276,97.241,97.414,97.138,97.207,97.241,97.276,97.138,97.103,97.103,97.069,97.103,97.207,97.241,97.207,97.172,97.103,97.069,97.172,97,97,96.931,96.897,93.802,90.569,87.162,84.102,80.833,77.6,74.366,71.167,67.829,64.665,61.467,58.233,54.964,51.837,48.639,45.442,42.209,38.903,35.632,32.361,29.164,25.891,22.655,19.499,16.054,13.027,9.839,6.674]
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 [7.287,7.926,8.141,8.47,7.42,7.514,7.779,7.972,7.937,8.184,8.061,8.881,9.066,9.175,9.458,9.567,9.644,9.726,9.802,9.92,9.834,12.851,15.412,16.45,18.104,18.651,19.694,21.176,23.425,26.309,39.207,277.318,434.245,433.591,433.154,432.808,432.363,432.189,432.008,431.933,431.788,431.72,431.677,431.632,431.595,431.542,431.482,431.449,431.397,431.383,431.221,431.281,431.169,431.268,428.471,431.284,431.177,431.304,423.667,291.846,44.635,18.402,18.626,18.594,18.691,18.692,18.697,18.588,18.694,18.92,18.479,18.441,18.522,18.574,18.582,18.474,18.024,18.01,17.996,17.812,17.252,17.499,17.503,17.41,17.6,17.647,17.752,17.88,17.89,17.938,18.803,24.549,139.228,342.507,428.037,461.463,490.777,536.561,623.339,715.843,740.581,781.822,838.685,862.509,878.038,903.56,918.745,931.965,942.717,957.327,966.418,979.05,986.952,992.907,999.221,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,993.204,984.642,971.518,957.525,922.338,896.334,844.187,808.969,768.818,723.873,658.513,624.893,585.739,533.747,495.458,483.874,473.178,469.525,465.413,462.001,457.972,449.375,444.133,438.31,435.066,432.541,429.101,428.187,423.852,423.406,422.952,420.852,424.399,422.853,423.209,427.127,420.278,417.394,419.954,426.627,426.202,430.234,431.119,437.486,452.584,460.085,415.089,386.429,379.536,389.101,385.437,382.571,383.362,388.1,433.667,513.636,518.056,531.667,538.636,615.625,708.333,700,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,1000,1000,1000,1000,1000,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]
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" 15 --> 1100
    line [17.15,18.154,18.331,18.689,16.922,17.23,17.468,17.533,17.5,17.719,17.687,18.437,18.75,18.864,19.139,19.292,19.374,19.44,19.503,19.625,19.553,26.334,34.731,38.287,42.164,43.307,45.711,46.815,47.589,48.081,50.959,273.616,857.586,824.442,806.451,794.916,787.137,782.057,778.086,774.908,772.228,770.216,768.906,767.208,766.221,764.959,764.209,763.025,762.312,761.893,760.445,760.411,760.42,759.29,754.089,758.495,757.687,758,743.032,633.422,174.968,42.903,43.281,43.289,43.507,43.542,43.618,43.407,43.599,44.236,43.598,43.337,43.742,43.852,43.848,43.564,42.547,42.622,42.585,42.121,40.873,41.468,41.535,41.733,42.12,42.213,42.64,42.8,42.929,43.002,43.314,48.22,369.687,604.356,702.744,721.387,791.623,872.283,938.081,999.919,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,938.15,878.467,847.893,758.449,670.417,491.955,482.574,419.31,389.865,340.38,295,186.732,166.946,146.458,132.905,129.564,117.083,105.863,99.784,99.491,130.567,162.191,179.023,193.184,244.205,290,324.135,350,357.805,359.375,365.705,372.934,391.599,407.191,412.74,419.495,422.071,422.669,422.273,423.735,433.777,444.91,460.942,476.498,492.634,517.735,604.104,659.272,697.531,718.252,734.827,760.811,777.474,792.875,803.125,816.005,833.83,848.913,861.157,870.02,883.175,896.023,907.011,915.869,920.648,925.329,935.577,940.443,948.813,952.551,961.527,972.301,984.306,995.055,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]
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.004,100,100,100,100,100,100,99.997,100,100,100,100,99.997,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,99.997,100.003,100,99.997,100,100,100.003,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,99.997,99.997,100.003,100,100,100,100,100,100,100.003,100,100,100,100,100,100,99.997,100,100,100,100,99.997,100,99.997,100,99.997,100.003,100,100,100.003,100.003,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100.003,100,100,100,100.007,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,99.997,100,99.997,100,99.997,100,100,100,100,100.003,99.997,100,100,100,100,100,100,100,100.003,99.997,100,100,100,100,100,100,100,100,100,100.003,99.997,100.003,99.997,100,100,100.003,100,100,99.997,100.003,99.997,99.997,100,100,100,100,100,99.997,100.003,100,100,100,100,100.003,100,100,100,100.003,100,100.007,100,100.003,100,100,99.997,99.997,100.003,100,100,100.003,100.003,100,100,100,99.997,100,100,100,100,100,100,100,99.997,100,100,100,99.997,100,99.997,100,100,100,99.997,100,100.003,99.997,100,100,100,100.003,100,100,100,100.003,100,100,100.003,100,100,100,100,100,100,99.997,100.003,100,100.003,99.997,100,100,100,100.003,100,100,100,100,100.003,100,99.997,100.003,100,100,100,100,100,99.997,100,100,100,100.003,100,100,100.003,99.997,100,99.997,100.003,100,100,100.003,100,100,99.997,100,100,99.997,100,100,99.997,99.997,100,100,100,100.003,100,100,100,100,99.997,100,100.003,100,100,100,100,100,100,100,99.997,100,100,100.003,100,100,100,100,100,100,100.003,100,100,100,99.997,100,100,100,100,100,99.997,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,99.997,100,100,100,100.003,100,100,100,100.003,100,100,100,100,100.003,100,100,100,100,100,100,99.997,100,100,100.003,99.997,100,100,100,100,100.003,99.997,100,100,100,100,100,100.003,100,100,100,99.993,100,99.997,100,100,100,100,100,100,100,100,100,99.997,100.003,100,100,100,100,100,100.003,100,100,100,99.997,100,99.997,100,100,100.003,100.007,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.003,99.997,100,100.003,100.003,100,100,100,100,99.997,100,100.003,100,100,100,100.003,100,100,100,100,100,100,100,100,99.997,100,100,100,100,99.997,100.003,100,99.997,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100,100,100,100,100,100,100,100.003,100,100,100,100,100,100,99.997,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.003,100,100,100,100,100,100,100,100,100,100.003,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]
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" 832 --> 1104
    line [924.499,957.867,999.567,1000.034,1000.034,999.966,999.966,1000.034,1000,1000,1000,1000.034,1000.069,1000,1000,1000.034,999.966,999.966,999.966,999.966,1000,997.069,1000,999.966,1000.034,999.966,1000.034,1000.069,1000,1000.034,999.966,999.966,999.966,999.966,1000,1000.034,1000,999.931,1000,1000.034,1000,999.931,1000,999.966,999.931,1000,1000,1000.034,1000,999.966,1002.862,1000,1000,1000,1000,1000,1000,999.966,1000,1000,1000,999.931,1000,1000,999.966,1000,1000.103,999.931,999.966,999.966,1000.034,1000.034,1000,1000.069,1000,1000.034,1000,1000.034,1000.034,1000.069,1000.034,999.966,999.966,1000.034,1000,999.966,1000,999.966,1000,1000,1000.069,1000.034,1000,1000.034,1000,999.966,1000.069,1000,1000.034,1000.069,1000,1000.034,1000,1000.034,1000,1000,1000,1000.034,1000.034,999.931,1000.069,1000.034,1000,999.966,1000,1000.034,1000.034,1000.034,1000.034,1000.034,999.966,1000.034,1000.034,1000,1000.069,1000.069,1000.069,999.966,999.966,1000,999.966,1000,1000.034,1000,1000,1000,1000,1000,1000.069,1000,1000,999.966,1000.069,1000.034,1000,1000,1000.034,999.966,999.966,1000.034,1000.034,1000,1000,999.966,999.966,999.931,1000.069,1000,1000,1000.034,1000,999.966,1000,1000.034,1000.034,1000,1000.034,1000,1000,999.966,1000.034,999.966,1000,1000,1000.034,1000,1000.034,1000.034,1000,1000,1000,1000,999.966,1000.034,1000.034,1000,1000,1000,1000.034,1000,1000,1000,999.966,999.966,999.931,999.966,1000,1000,1000.034,1000,1000,1000,1000,999.966,999.966,1000,1000.034,1000,1000,999.931,1000,1000.034,1000,1000.034,999.931,1000,1000,1000,1000.034,1000,1000,1000,1000,1000.069,1000,1000,1000.034,1000.034,1000.034,1000,1000,1000.034,1000,1000,1000,1000,1000,999.966,1000,1000,1000,999.966,999.966,1000.069,1000,1000,999.966,999.966,999.966,1000,999.966,1000.034,999.966,999.966,1000.034,999.966,999.966,999.966,1000.034,1000,999.966,1000,1000,1000,1000,1000.034,1000,1000.069,1000.034,1000,1000,1000,1000,1000,1000,1000,1000.034,1000.034,1000,1000.034,999.966,1000,1000,999.931,1000.034,1000,1000.034,1000,1000.034,1000.034,1000,999.966,1000.034,999.966,999.966,1000.034,1000,999.966,1000,1000,1000,999.966,1000,1000.034,1000,999.966,1000,1000,1000.034,1000,1000.034,1000.034,1000.034,1000,1000,1000,999.966,999.966,1000,1000,1000.069,999.862,1000.034,1000,999.966,999.966,1000,1000,1000.034,1000,1000,1000,1000,1000,999.966,1000,1000.034,999.966,1000.034,999.966,1000,1000,999.966,1000,999.966,1000,1000,999.966,999.966,999.966,1000.103,999.966,1000,1000.034,1000,1000,1000.034,1000,1000,1000.034,1000,1000,1000,1000.034,1000,999.966,1000,999.966,1000,1000,1000,1000.034,1000,1000,1000,1000,1000,1000.034,1000,1000,1000,1000.034,999.966,1000,1000,1000,1000,1000,1000,1000.034,1000,1000.034,1000,1000,999.966,1000,1000,1000.034,1000,1000.034,999.966,1000.034,1000,1000.034,1000,1000,1000.034,1000.034,1000.034,1000,999.966,1000,1000.034,1000,1000,1000,1000,1000,999.931,999.966,999.966,1000,999.931,1000.034,1000,1000,999.966,1000.034,999.966,1000.034,1000,1000.034,999.966,1000,1000,999.931,999.897,1000,1000.034,999.966,1000,999.966,1000.034,1000,999.931,1000,999.966,1000.034,1000,1000,999.931,1000.103,999.966,999.897,1000.034,1000,1000,1000,1000,1000,999.966,1000.034,1000,1000.034,1000.069,1000.103,999.966,1000,1000.034,1000.034,1000.034,1000,1000,1000.034,1000.034,1000,1000.034,1000,1000.034,1000.103,1000,1000.034,1000.138,1000,1000.034,1000,1000.034,999.966,999.897,1000,999.966,1000,1000,999.966,1000,1000,1000,1000.034,1000,1000,1000,1000,1000.034,1000,1000.034,1000,1000.034,1000,999.966,999.966,1000.034,999.966,1000,1000,1000,1000,1000.034,1000.069,1000,999.966,1000.034,999.966,1000,999.966,1000,1000,999.966,999.966,999.966,1000,999.966,1000,1000,1000,1000,1000,999.966,1000.034,1000.034,999.966,1000.034,999.966,1000,999.966,999.966,1000,1000.034,1000,1000.034,999.966,1000,1000,1000.034,1000,1000,1000,1000.034,1000.034,1000,1000.034,1000,1000,1000,1000,999.966,1000,1000,999.966,1000.034,999.966,1000.034,1000,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" 83 --> 111
    line [92.453,95.787,99.953,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,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,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]
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.94,1.946,1.951,1.945,1.944,1.943,1.943,1.942,1.94,1.94,1.932,1.937,1.936,1.934,1.934,1.931,1.928,1.926,1.925,1.929,1.922,1.944,1.961,1.962,1.962,1.963,1.964,1.964,1.964,1.964,1.957,1.961,1.961,1.962,1.962,1.962,1.963,1.963,1.963,1.963,1.959,1.964,1.964,1.965,1.965,1.965,1.965,1.967,1.963,1.964,1.945,1.933,1.933,1.932,1.931,1.93,1.93,1.929,1.927,1.928,1.923,1.926,1.925,1.925,1.925,1.924,1.924,1.924,1.923,1.924,1.92,1.924,1.925,1.925,1.925,1.925,1.923,1.923,1.922,1.921,1.918,1.923,1.926,1.926,1.926,1.926,1.926,1.926,1.926,1.926,1.924,1.929,1.929,1.928,1.928,1.929,1.93,1.93,1.929,1.929,1.925,1.929,1.931,1.93,1.93,1.93,1.929,1.929,1.93,1.931,1.925,1.925,1.925,1.925,1.924,1.925,1.925,1.924,1.924,1.924,1.919,1.923,1.923,1.924,1.922,1.922,1.922,1.922,1.921,1.921,1.914,1.918,1.919,1.919,1.919,1.92,1.92,1.92,1.918,1.919,1.915,1.919,1.92,1.92,1.918,1.918,1.917,1.916,1.914,1.914,1.909,1.91,1.911,1.911,1.91,1.908,1.907,1.906,1.906,1.906,1.9,1.901,1.903,1.902,1.9,1.901,1.899,1.9,1.899,1.898,1.893,1.893,1.895,1.896,1.897,1.897,1.898,1.898,1.898,1.902,1.901,1.901,1.904,1.905,1.905,1.905,1.906,1.905,1.904,1.904,1.903,1.901,1.904,1.905,1.905,1.905,1.903,1.903,1.903,1.903,1.903,1.9,1.905,1.905,1.905,1.905,1.905,1.905,1.902,1.901,1.898,1.897,1.903,1.903,1.904,1.904,1.903,1.905,1.904,1.902,1.903,1.899,1.903,1.903,1.902,1.902,1.902,1.901,1.902,1.9,1.9,1.895,1.898,1.897,1.897,1.898,1.899,1.899,1.899,1.9,1.897,1.892,1.895,1.894,1.893,1.892,1.892,1.893,1.893,1.893,1.893,1.888,1.891,1.89,1.892,1.891,1.892,1.891,1.891,1.891,1.892,1.888,1.892,1.892,1.891,1.889,1.888,1.889,1.89,1.889,1.888,1.885,1.892,1.892,1.894,1.894,1.894,1.894,1.893,1.892,1.893,1.89,1.893,1.892,1.891,1.892,1.892,1.892,1.893,1.891,1.891,1.886,1.892,1.892,1.892,1.892,1.892,1.891,1.892,1.892,1.894,1.887,1.89,1.89,1.889,1.889,1.89,1.891,1.891,1.893,1.894,1.893,1.9,1.903,1.903,1.904,1.903,1.902,1.903,1.903,1.903,1.899,1.904,1.904,1.906,1.905,1.905,1.906,1.905,1.905,1.905,1.904,1.91,1.909,1.909,1.909,1.909,1.909,1.908,1.907,1.907,1.901,1.903,1.901,1.9,1.9,1.901,1.902,1.902,1.902,1.902,1.897,1.902,1.902,1.902,1.902,1.901,1.903,1.902,1.902,1.903,1.896,1.901,1.902,1.902,1.902,1.902,1.902,1.902,1.901,1.901,1.897,1.902,1.903,1.904,1.903,1.903,1.902,1.902,1.902,1.904,1.898,1.902,1.902,1.902,1.902,1.901,1.902,1.902,1.901,1.902,1.898,1.903,1.904,1.903,1.904,1.904,1.904,1.905,1.905,1.905,1.902,1.903,1.904,1.904,1.904,1.904,1.905,1.905,1.904,1.904,1.9,1.901,1.904,1.904,1.905,1.905,1.905,1.906,1.904,1.905,1.9,1.9,1.903,1.903,1.903,1.902,1.902,1.902,1.901,1.903,1.901,1.901,1.903,1.904,1.906,1.905,1.905,1.905,1.905,1.905,1.904,1.901,1.905,1.905,1.904,1.906,1.905,1.904,1.903,1.903,1.903,1.901,1.906,1.906,1.906,1.905,1.905,1.905,1.903,1.903,1.901,1.899,1.903,1.902,1.902,1.901,1.902,1.901,1.901,1.901,1.903,1.898,1.902,1.903,1.902,1.902,1.904,1.903,1.903,1.902,1.902,1.898,1.903,1.903,1.904,1.904,1.905,1.905,1.906,1.906,1.906,1.901,1.907,1.907,1.907,1.907,1.907,1.907,1.906,1.904,1.903,1.898,1.902,1.901,1.901,1.9,1.899,1.9,1.9,1.899,1.898,1.893,1.897,1.897,1.897,1.897,1.897,1.897,1.897,1.896,1.896,1.89,1.895,1.894,1.894,1.893,1.893,1.893,1.894,1.895,1.896,1.891,1.896,1.896,1.897,1.901,1.901,1.902,1.902,1.902,1.902,1.898,1.901,1.901,1.9,1.9,1.9,1.9,1.9,1.9,1.902,1.896,1.902,1.902,1.903,1.903,1.903,1.902,1.902,1.901,1.903,1.898,1.904,1.901,1.898,1.896,1.896,1.895,1.896,1.895,1.896,1.892]
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.99,2.995,3,2.996,2.995,2.994,2.993,2.99,2.989,2.99,2.983,2.989,2.989,2.988,2.987,2.985,2.98,2.979,2.978,2.982,2.976,2.995,3.101,3.087,3.072,3.072,3.114,3.116,3.141,3.141,2.999,3.085,3.071,3.072,3.075,3.075,3.074,3.031,3.031,3.061,2.997,2.999,3.043,3.043,3.042,3,3,3.029,2.998,2.999,2.982,2.975,2.976,2.975,2.975,2.974,2.974,2.973,2.972,2.973,2.967,2.968,2.969,2.969,2.97,2.969,2.969,2.968,2.968,2.971,2.967,2.97,2.972,2.972,2.973,2.973,2.972,2.973,2.972,2.973,2.971,2.977,2.982,2.98,2.98,2.981,2.98,2.982,2.982,2.983,2.981,2.986,2.988,2.987,2.987,2.987,2.987,2.987,2.984,2.984,2.979,2.982,2.984,2.984,2.983,2.983,2.982,2.983,2.981,2.982,2.975,2.973,2.973,2.972,2.97,2.972,2.97,2.97,2.966,2.968,2.963,2.965,2.966,2.967,2.966,2.967,2.967,2.968,2.968,2.97,2.965,2.968,2.969,2.97,2.97,2.97,2.968,2.968,2.966,2.967,2.963,2.968,2.971,2.97,2.967,2.967,2.966,2.967,2.966,2.965,2.963,2.965,2.966,2.966,2.965,2.965,2.963,2.964,2.962,2.962,2.956,2.956,2.957,2.956,2.955,2.957,2.955,2.956,2.955,2.953,2.948,2.946,2.95,2.952,2.952,2.952,2.952,2.95,2.947,2.952,2.949,2.949,2.951,2.952,2.951,2.952,2.952,2.954,2.951,2.952,2.95,2.948,2.953,2.952,2.952,2.952,2.951,2.951,2.953,2.953,2.95,2.946,2.952,2.953,2.953,2.955,2.954,2.96,2.954,2.95,2.947,2.948,2.952,2.955,2.957,2.957,2.955,2.956,2.955,2.954,2.956,2.953,2.959,2.957,2.957,2.956,2.955,2.953,2.954,2.954,2.956,2.948,2.953,2.951,2.95,2.951,2.949,2.949,2.95,2.95,2.947,2.944,2.944,2.941,2.941,2.94,2.94,2.942,2.942,2.942,2.942,2.938,2.942,2.941,2.943,2.942,2.943,2.942,2.944,2.943,2.945,2.94,2.943,2.943,2.942,2.939,2.942,2.944,2.944,2.944,2.941,2.937,2.943,2.943,2.943,2.944,2.944,2.944,2.942,2.939,2.94,2.935,2.939,2.939,2.94,2.943,2.943,2.943,2.944,2.941,2.942,2.94,2.946,2.949,2.949,2.947,2.946,2.948,2.947,2.949,2.951,2.945,2.947,2.946,2.946,2.946,2.949,2.95,2.952,2.953,2.956,2.956,2.965,2.966,2.966,2.966,2.965,2.966,2.967,2.969,2.969,2.963,2.966,2.966,2.967,2.966,2.964,2.963,2.963,2.961,2.961,2.961,2.968,2.967,2.967,2.965,2.965,2.963,2.961,2.958,2.956,2.947,2.948,2.946,2.945,2.943,2.941,2.94,2.939,2.937,2.939,2.934,2.939,2.939,2.94,2.94,2.942,2.942,2.942,2.941,2.942,2.934,2.939,2.941,2.939,2.94,2.942,2.942,2.945,2.943,2.943,2.94,2.943,2.944,2.946,2.945,2.946,2.945,2.946,2.947,2.948,2.943,2.946,2.947,2.948,2.947,2.947,2.947,2.946,2.945,2.945,2.942,2.945,2.946,2.946,2.946,2.945,2.945,2.944,2.944,2.944,2.938,2.94,2.943,2.942,2.942,2.941,2.941,2.941,2.941,2.943,2.942,2.944,2.947,2.948,2.948,2.948,2.951,2.951,2.951,2.953,2.948,2.95,2.95,2.951,2.952,2.951,2.954,2.957,2.956,2.959,2.958,2.958,2.961,2.962,2.964,2.963,2.962,2.961,2.96,2.96,2.958,2.956,2.958,2.958,2.96,2.961,2.961,2.961,2.959,2.96,2.96,2.958,2.965,2.965,2.964,2.964,2.961,2.963,2.96,2.958,2.958,2.956,2.963,2.963,2.963,2.963,2.964,2.962,2.964,2.963,2.964,2.962,2.967,2.966,2.967,2.967,2.967,2.966,2.966,2.964,2.966,2.959,2.964,2.964,2.964,2.965,2.964,2.965,2.966,2.965,2.966,2.96,2.965,2.966,2.967,2.966,2.965,2.963,2.962,2.959,2.959,2.954,2.96,2.957,2.956,2.954,2.954,2.957,2.957,2.956,2.955,2.949,2.955,2.955,2.954,2.954,2.954,2.954,2.954,2.953,2.955,2.947,2.951,2.952,2.95,2.951,2.954,2.952,2.954,2.954,2.953,2.947,2.955,2.955,2.958,2.961,2.96,2.96,2.961,2.962,2.963,2.955,2.958,2.957,2.958,2.958,2.957,2.956,2.956,2.953,2.955,2.949,2.952,2.954,2.955,2.955,2.956,2.956,2.956,2.955,2.955,2.949,2.956,2.953,2.951,2.95,2.949,2.948,2.946,2.944,2.946,2.943]
Loading

Copy link

🌋 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, %" 86 --> 111
    line [99.944,99.947,99.949,99.952,99.954,99.956,99.958,99.959,99.961,99.962,99.962,99.979,99.993,99.993,99.997,99.993,99.997,99.997,99.997,99.997,99.997,99.997,99.973,99.976,99.903,99.828,99.753,99.057,98.701,98.655,98.534,98.317,98.013,97.957,97.833,97.839,97.258,97.186,97.111,97.013,96.945,96.932,96.818,96.768,96.711,96.64,96.527,96.471,96.455,96.299,96.27,96.167,96.111,96.177,96.246,96.295,97.4,97.963,98.056,98.198,98.537,98.962,98.987,99.167,99.094,99.934,99.935,99.936,99.994,100,100,100.223,100,100,100,100,100,100,99.975,100,100,100,100,100,100,100,100,100,99.922,99.921,99.882,99.857,99.849,99.796,99.774,99.706,99.686,99.676,99.672,99.67,99.456,99.662,99.661,99.659,99.648,99.647,99.644,99.674,99.638,99.635,99.631,99.629,99.626,99.622,99.63,99.622,99.628,99.74,99.746,99.799,99.825,99.839,99.894,99.916,99.981,99.995,100,100,100,100,100,100,100,100.004,100,100,100,100,100,99.898,100,100,100,100,100,100.004,100,100,99.963,99.9,99.899,99.897,99.896,99.883,99.895,99.894,99.893,99.893,99.893,99.892,99.892,99.892,99.887,99.891,99.891,99.89,99.89,99.89,100.005,99.89,99.889,99.889,99.89,99.89,99.886,99.89,99.89,99.934,100,100,100,100,100.012,100,100,100,100,100,100,100,99.969,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100.028,100,100,100,100,100,100,100,100,100,100,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,99.997,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.996,100,100,100,100,100,100,100,99.996,99.996,100,100.004,100,100,100,99.992,99.991,100,100,100,99.982,100,100,100,100,100,100,100,100,100.005,100,100,100,100,99.986,100,100,100.005,100,100,100,100,100,100,100.009,100.009,100,100,100,100.017,100,100,100,100,100,100,100,100,100,100,100,100,100,100.007,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,99.997,100,99.997,100,100,100,100,100,100,100,100,100,100,100,100,99.997,100,100.003,100,100.003,99.945,99.945,99.945,99.945,99.945,99.945,99.941,99.945,99.944,99.948,99.944,99.944,99.944,99.948,99.944,99.944,99.944,99.944,99.948,99.944,99.944,99.944,99.944,99.944,99.944,99.944,99.941,99.944,99.941,100,100,100,100,100,100,100.003,100,100,100,100,100,100,99.997,100,100,100,100,99.996,100,100,100,100,100,100,100,100,100,100,100,100,100,99.901,99.9,99.898,99.898,99.898,99.898,99.898,99.898,99.898,99.898,99.898,99.898,99.876,99.899,99.904,99.902,99.903,99.904,99.906,99.907,99.908,99.909,99.91,99.911,99.913,99.915,99.916,99.917,99.918,100,100,100,100,100,100,100,100,100,100,100,100,100.017,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.003,100,100,100,100,100,100,100.003,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,99.997,100,100,100,100,100.003,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, %" 54 --> 111
    line [65.249,65.273,64.433,64.355,64.515,64.918,64.713,64.571,64.534,65.298,64.824,64.068,64.589,64.373,65.382,65.262,65.237,66.023,66.667,66.532,66.317,66.423,66.179,66.08,66.221,65.553,65.038,63.807,63.08,63.085,61.721,62.519,62.293,61.947,60.658,61.379,62.245,62.76,62.456,62.633,63.245,63.509,63.525,62.026,63.166,64.467,64.209,63.543,62.781,63.256,62.136,62.13,62.407,62.418,63.331,63.244,65.194,66.236,66.812,68.251,68.16,67.838,67.367,67.59,67.329,67.433,67.425,66.873,66.774,67.618,68.474,69.167,70.733,69.816,69.928,70.739,72.121,73.61,74.183,76.377,77.123,78.362,80.148,81.094,82.83,83.016,83.142,83.452,83.56,82.644,83.763,84.276,85.545,85.362,84.776,84.709,85.612,86.417,85.694,85.518,84.963,84.916,85.54,85.258,84.082,84.278,84.403,84.607,84.387,84.522,84.494,84.527,84.742,84.756,85.118,85.801,86.234,87.257,89.039,89.538,90.806,91.572,92.699,93.483,94.393,94.781,95.1,95.936,96.168,96.825,97.364,98.124,98.747,100,100,100,100,100,100,99.966,100,100,100,100,100,100,100,100,99.894,99.114,97.75,97.68,97.691,97.629,97.676,97.689,97.694,97.709,97.693,97.701,97.696,97.701,97.693,97.687,97.691,97.689,97.696,97.703,97.73,97.697,97.7,97.688,97.716,97.7,97.706,97.696,97.696,97.86,98.606,99.932,100,100,100.069,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,99.965,99.965,99.965,99.931,99.93,99.931,99.93,99.93,99.931,99.931,99.931,99.93,99.93,99.93,99.93,99.93,99.93,99.931,99.931,99.931,99.828,99.93,99.93,99.931,99.93,99.93,99.895,99.862,99.863,99.896,99.896,99.897,99.931,99.931,99.931,99.931,99.931,99.931,99.931,99.932,99.932,99.932,99.932,99.932,99.932,99.932,99.931,99.932,99.932,100.034,99.932,99.932,99.931,99.932,99.932,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,99.966,99.827,99.828,99.828,99.827,99.828,99.828,99.828,99.828,99.827,99.828,99.828,99.828,99.828,99.828,99.828,99.828,99.828,99.828,99.827,99.828,99.828,99.828,99.827,99.828,99.828,99.827,99.828,99.827,99.862,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.895,99.895,99.826,99.826,99.825,99.826,99.824,98.907,98.173,97.243,96.015,95.964,95.864,95.852,95.791,95.843,95.828,95.817,95.823,95.817,95.823,95.823,95.836,95.83,95.789,95.869,95.866,95.887,95.879,95.963,95.984,96.041,96.037,96.056,96.04,96.078,96.975,97.669,98.555,99.761,99.829,99.932,99.932,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]
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" 505 --> 1113
    line [696.621,731.549,760.939,798.971,833.602,866.662,899.827,932.125,968.097,997.586,1004.897,1008.897,997.414,1008.276,1006.483,1008.724,1009.138,1007.241,1006.172,998.793,1011.586,1002.966,1003.793,998.31,996.621,1001.862,990.724,986.828,979.828,946.069,950.138,938.379,919.862,894.448,897.379,875.909,867.862,845.655,823.655,808.069,791.172,787.793,759.552,748.931,734.862,719.379,696.103,685.034,681.793,653.138,648.103,624.276,616.241,607.931,598.862,584.552,572.931,561.931,588.862,568.379,572.828,568.138,578.414,567.069,578.301,571.655,579.276,588.138,600.241,606.483,614.034,617.828,626.966,631.345,633.991,660.23,666.172,676.448,677.207,697.483,713,722.31,727.27,737.276,747.724,750.69,770.379,761.862,752.784,738.724,730.724,723.448,707.655,693.724,685.517,679.724,669.931,659.31,652.103,647.207,646.103,633.379,630.241,626.56,606.766,604.931,600.483,602.517,590.138,584.966,579.759,576.267,571.931,565.138,577.931,565.828,574.897,596.062,611.31,633.31,649,663.621,685,698.207,708.655,729.379,742.276,752.69,758.69,768.069,777.586,784.897,793.828,805.276,811.897,817.345,826.103,828.552,838.103,843.345,847.414,853.552,862.517,855,856.862,861.517,863.103,871.793,849.103,828.586,817.517,803.793,798.034,794.931,786.655,780.138,775.621,775.69,770.862,769.724,767.586,764.852,764.897,758.276,757.793,754.586,752.241,750.845,750.379,751.414,748.483,743.862,751.448,753.103,753.31,753.517,753.793,778.103,799.31,816.897,830.862,843.793,852.276,859.069,868.828,875.345,880.276,888.241,890.103,896.172,903.749,906.103,913.172,913.207,919.897,925.828,929.685,935.966,935.31,939.621,945.345,947.103,952.414,954.31,957.276,957.034,960.759,965.448,966.245,968.793,972.862,973.586,978.621,981.207,978.724,976.138,978.931,981.862,982.276,982.345,985.69,985.138,989.517,987.517,988.966,988.103,988,989.759,989.276,990.276,990.966,989.586,990.379,987.759,989.484,989.379,988.448,991.551,991.793,988.759,991,990.931,990.31,996.034,998.379,992.345,994.655,995.276,995.379,995.517,996.586,994.483,994.724,994.276,994.138,994.379,994.828,995.586,995.138,994.655,995.276,994.448,995.586,994.552,992.586,995.897,995.172,995.31,997.345,995.621,996.345,990.138,975.655,966.379,962.172,946.586,934.517,919.828,911.276,900.621,890.793,881.862,873.931,866.862,857.862,846.241,836.759,826.517,817.862,808,801.103,794.517,786.296,782.345,769.621,760.517,755.621,750,739.414,725.862,722.759,728.897,729.586,726,726.897,729.793,736.793,733.586,730.793,732,732.483,734.552,744.414,753.103,761.655,772.138,783.483,791.31,802.034,808.414,815.862,824.655,829.414,840.103,846.528,853.621,860.379,870.552,881.862,891.414,901.207,911.586,923.069,936.448,945.379,953.138,965.069,977.828,987.483,994.276,1001.414,999.724,998.966,1003,1000.724,999.276,1000.621,1000.138,1001,997.966,999.207,1000.276,999.345,1002.173,999.241,998.828,1000.793,1001.345,1001.931,998.241,1000.931,1001.103,999.931,999.172,998.621,1000.207,1000.241,998.414,1001.793,1000.31,998.552,1000.345,999.31,1000.655,1001.345,999.448,1000.207,1000.517,1002.172,999.517,1000.276,1001.483,1001.103,1001.31,999.931,1000.793,1001,996.034,996.517,994.241,994.552,996.103,995.517,995.517,994.621,991.483,993.655,992.793,993.034,993.621,993.586,993.759,994.069,992.379,991.345,991.449,992.862,991.966,993.103,990.931,991.862,992.621,991.69,994.034,991.172,991.655,996.414,998,998.172,995.552,996.414,999.414,998.586,998.241,1000.448,1000.69,1000.207,1000.207,1000.69,998.345,998.793,997.103,990.759,983.241,971.825,958.172,947.483,934.759,923.552,914.207,902.103,896.241,880.69,866.724,849.172,833.448,821.207,814.828,803.586,790.621,776.414,780.241,779.138,777.402,777.276,777.138,776.828,777.609,779.138,778.586,777.379,783.483,794.345,805.207,817.793,826.552,841,853.793,861.931,875.138,880.31,895.828,912.172,927.862,943.276,954.655,962.138,976.862,989.034,1000.276,996.931,998,1000.345,999.517,1000.897,999.621,999.931,1000.966,999.862,1002.207,1001.207,1002.483,1002.828,1001.931,1004.345,999.104,1000.069,1001,998.586,1000.793,998.241,996.138,999.621,998.448,997.414,992,993.379,992,994.276,994.276,993.69,993.31,994.931,992.379,994.276,993.31,987.034,990.69,991.276,992.448,991.207,991.207,991.034,991.897,995.862,991.448,992.034,993.931,992.724,991.379,995,992.931,994.172,996.897,1001,997.621,999.621,997.414,997.966,995.897,997.069,998.138,998.828,998.172,998.276,1002.034,1001.276,1000.241,999.172,1000.862,999.207,999.793,999.897,999,1001.793,998.172,995.966,998.138,1002.586,999.103,998.069,994.483,995.31,995.241,997.345,995.276,994.587,996.276,997.897,997.483,994.828,992.655,995.759,993.517,994.793,993.862,993.862,994.655,993.379,957.964]
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 --> 113
    line [63.646,66.259,69.469,72.504,76.131,78.955,81.815,84.988,88.784,91.517,92.345,92.897,91.828,93.207,93.034,93.31,94.034,94.586,93.931,93.552,95.207,94.276,94.31,94.034,92.793,93.897,91.724,92.034,90.69,87.621,90.172,89.241,89.621,86.448,89.138,88.025,89.414,87.966,87.621,87.759,88,88.828,87.069,89.172,88.655,88.31,87,87.207,89.034,86.621,88.793,87.414,87.69,89.276,89.241,91,89.759,90.793,95.172,92.862,93.138,92.207,95.207,93.414,95.424,92.966,94,94.517,96.207,95.414,96.034,95.621,94.138,95.621,96.2,97.097,96.724,97.345,96.034,97.655,98.276,98.966,98.128,98.31,98.207,97.862,99,97.103,96.473,96.759,96.207,96.931,95.897,95.172,95.586,96.517,96.345,94.69,95.931,95.241,97,96.931,96.103,94.972,95.972,96.724,96.172,97.448,95.414,96.241,96.069,96.286,96.724,96.138,98.241,96.897,97.69,99.321,99.414,100.862,100.138,100.655,101.069,101.586,100.862,101.759,102.034,100.966,100.793,101,100.724,101.103,101.862,100.966,100.517,100.276,100.379,100.655,100.379,100.552,100.31,100,100.655,99.103,99.966,100.31,100.172,100.552,97.759,97.345,98.103,98.103,98.552,98.897,97.931,98.483,98.69,99.345,98.655,99,98.793,98.99,98.655,98.414,98.552,98.483,98.759,99.062,98.759,98.828,98.966,98.448,99.655,98.966,99.207,98.793,98.793,101.517,101.414,101.034,101.138,100.828,100.103,100.517,100.414,100.276,100,100.517,99.759,100.586,100.114,100.207,100.448,100.345,100.897,100.345,100.352,100.793,100.034,100.276,100.448,100.276,100.483,100.103,100.31,100.172,100.448,100.759,100.265,100.31,100.517,100.345,100.586,100.448,99.69,100.069,100.276,100.897,100.069,100.172,100.379,100.207,100.517,99.862,100.31,100.103,100.138,100.517,99.966,100.034,100.276,100.138,100.207,99.897,100.128,99.897,99.966,100.286,100.034,99.483,100.207,100.103,100,100.828,100,99.621,99.966,100,100.103,100.103,100.207,99.862,100.103,99.862,99.828,99.931,99.966,100.138,100.069,100,100.034,99.897,100.069,99.969,99.621,100.103,100.034,99.966,100.517,100.034,99.966,99.241,98.414,99.724,99.552,98.586,99.31,98.862,99.241,98.759,99.103,99.31,99.483,99.552,99,98.724,98.897,98.897,99.069,99.034,99.414,99.448,99.317,99.966,99.069,98.793,99.448,99.069,99,98.483,100.034,101,99.793,99.724,100.448,99.862,100.345,99.828,100.034,100.207,99.966,100.241,100.69,101,100.793,101.034,101.172,100.862,101.103,100.586,100.759,100.793,100.483,100.966,100.786,100.621,101.034,101.034,101.172,100.448,100.552,100.897,100.897,101.138,100.793,100.793,100.931,101.103,100.828,100.69,100.379,100.069,100.034,100.586,99.966,99.966,100.103,99.966,100.069,99.586,99.931,100,99.931,100.386,99.793,99.828,100.069,100.414,100.345,99.69,99.793,100.138,99.724,99.931,99.759,100,100,99.655,100.034,99.897,99.552,99.828,99.931,100.172,100.069,99.586,99.966,100,100.31,99.897,100,100.172,100.103,100.276,99.966,100.138,100,99.448,100.103,100.034,99.828,100.138,100.034,100.034,100.034,99.621,100.276,100.241,100.276,100.31,100.276,100.207,100.034,100.034,100.138,99.783,100.276,100.034,100.103,99.931,100.103,100.207,99.862,100.345,99.897,99.966,100.655,100.414,100.379,99.931,100.034,100.448,100.172,100.276,100.379,100.172,100.034,100.034,100.207,99.793,99.862,99.724,98.724,99.414,98.907,98.724,98.897,98.724,99.207,98.931,98.621,99.138,98.069,97.828,98.138,97.552,98.655,99.103,99.207,98.931,99.138,100.379,100,99.748,99.897,99.759,99.897,99.886,100.207,100.069,99.897,101,100.931,101.448,101.241,100.793,101.31,101.034,100.931,101.414,101,102,102.586,102.069,102.586,101.138,100.931,101.345,101.517,100.931,99.759,99.828,100.383,100.103,100.483,100.103,100.114,100.276,100.207,100.483,100.172,99.966,100.241,100.172,100.69,99.679,99.897,100.172,99.966,100.172,99.724,99.207,99.862,99.793,99.655,99.241,99.966,99.828,99.966,100.103,100.207,99.938,100.138,99.759,100,99.931,99.241,99.931,100.172,100.241,100.172,99.966,99.966,99.966,100.735,99.793,99.897,100.103,100.034,99.759,100.414,100.241,100.241,100.69,101,100.069,100.069,100.034,100.103,99.586,99.931,100.069,100.103,100.103,100.207,100.379,100.138,99.931,99.586,100.172,100,99.759,99.897,99.828,100.345,99.724,99.345,99.862,100.621,100.172,99.759,99.31,99.724,99.552,99.897,99.793,99.648,99.931,100.31,100.103,99.655,99.586,99.897,99.69,100.069,99.655,99.724,99.966,99.69,96.134]
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" 133 --> 1100
    line [997.961,997.321,997.221,997.581,996.105,994.911,993.31,991.783,990.378,989.282,989.171,985.755,983.545,983.434,980.623,979.033,973.606,971.568,970.481,970.56,971.662,971.279,971.988,974.73,978.664,983.053,987.619,998.743,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,979.268,975.412,955.886,954.499,951.856,944.845,940.763,936.924,933.563,929.318,928.796,927.584,922.458,914.806,911.181,905.71,896.916,892.473,885.241,876.055,867.872,858.93,852.157,844.84,837.428,850.49,857.891,863.147,873.179,872.513,887.26,894.084,898.507,900.63,902.524,903.63,903.993,906.047,904.287,900.85,900.687,909.663,908.509,907.343,905.712,908.56,908.898,909.173,909.403,907.178,906.992,901.786,901.646,894.92,846.279,812.976,773.313,704.49,644.881,562.376,498.627,492.705,488.745,484.488,481.755,480.707,477.629,475.813,474.772,472.598,469.633,468.633,467.843,467.152,466.269,465.337,464.457,463.314,463.052,461.35,461.57,462.474,462.071,461.343,460.257,460.807,464.688,468.215,469.979,470.408,470.044,470.053,470.801,471.094,470.418,470.168,469.981,469.252,468.804,467.441,467.906,467.681,467.79,467.27,466.738,465.947,465.718,464.983,465.264,464.067,461.536,460.403,459.811,458.364,455.359,447.225,440.403,434.992,430.824,427.676,425.307,421.808,417.277,415.095,411.603,408.616,406.312,401.561,401.711,396.555,392.549,386.384,380.565,374.258,366.51,357.342,352.602,342.623,330.735,319.004,306.016,298.833,293.804,287.96,272.011,248.589,254.843,229.761,206.711,198.736,197.069,197.337,199.064,198.203,196.74,194.854,194.906,193.012,191.886,190.404,188.831,188.238,187.902,187.582,186.867,183.67,183.418,182.669,181.001,178.932,177.711,177.878,177.661,178.02,177.268,171.351,174.954,176.404,173.993,174.919,170.706,160.918,168.019,170.153,170.178,166.916,166.853,166.216,165.857,165.541,165.753,167.518,167.846,167.853,167.813,166.697,167.144,167.015,166.86,168.074,168.258,171.636,172.305,172.235,172.25,168.519,167.986,167.966,171.837,180.48,190.688,192.917,215.35,278.362,314.315,338.672,355.116,373.363,386.081,396.787,403.998,412.197,420.125,426.498,431.873,436.621,440.975,444.038,446.898,449.678,451.553,454.507,456.689,458.233,459.593,461.723,464.032,465.337,464.636,464.027,464.475,464.337,463.474,462.752,463.104,463.586,463.57,463.415,463.232,461.841,459.91,457.942,455.859,453.28,450.602,447.454,444.863,441.851,438.444,435.357,430.491,426.362,422.718,418.828,411.508,403.348,392.817,383.436,369.333,351.461,327.532,301.965,263.059,204.392,193.107,184.568,177.231,169.693,166.668,167.145,163.243,158.122,157.443,156.403,155.574,154.527,155.677,159.382,158.951,159.981,157.88,153.562,155.199,154.767,150.376,148.099,150.662,159.15,157.066,158.677,160.528,163.074,164.123,164.397,165.582,168.12,166.451,169.126,169.692,169.956,169.372,168.886,170.212,170.713,170.542,170.316,168.313,169.46,168.695,168.348,168.13,168.165,169.743,169.865,173.851,179.663,178.25,182.846,184.869,186.351,188.415,188.241,189.881,193.168,192.751,192.736,192.495,193.131,193.19,193.244,193.298,193.631,196.869,197.02,197.018,197.147,197.305,197.407,197.392,197.472,197.497,197.449,197.472,195.423,192.125,191.391,188.591,188.226,186.766,183.54,183.306,181.009,175.921,175.492,175.741,174.448,172.295,175.793,176.415,183.451,191.796,196.203,239.972,296.391,332.351,358.41,376.859,393.204,403.502,414.042,426.788,437.411,446.37,452.219,455.97,461.067,464.184,467.959,468.384,468.443,468.6,468.925,469.44,469.93,469.883,469.83,469.593,469.937,469.414,467.055,464.383,461.38,457.182,453.705,448.418,443.986,437.322,432.065,423.83,409.423,393.846,375.273,353.291,330.207,286.611,228.323,197.272,195.978,196.175,195.969,195.088,193.505,191.934,192.145,191.932,191.606,190.695,187.427,186.582,185.533,185.069,183.956,182.472,185.331,185.11,185.758,185.412,184.745,187.523,189.101,189.367,191.595,194.664,196.444,196.431,196.702,196.726,196.533,196.742,196.705,196.753,196.787,196.548,198.453,199.115,198.981,198.957,198.453,198.406,198.226,198.211,197.388,195.895,196.53,196.174,195.917,196.412,195.868,194.54,194.34,191.487,186.755,183.772,183.705,182.393,181.524,181.685,182.653,182.546,182.204,181.63,181.352,177.196,175.043,174.652,176.785,177.834,177.913,178.767,178.865,179.406,176.73,175.019,179.836,182.846,181.924,179.048,179.147,184.185,186.16,187.071,188.055,188.799,192.1,193.169,193.317,192.638,192.747,194.358,195.528,195.668,195.78,196.831,197.704,198.441,198.98,199.498]
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" 226 --> 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,986.746,982.269,969.374,957.034,942.393,928.675,900.138,894.301,892.18,890.753,887.187,879.167,872.518,863.12,858.268,849.637,849.154,858.317,852.185,846.783,837.639,841.856,870.695,916.575,925.75,927.981,926.938,924.49,926.087,927.649,925,925.546,925.64,921.778,918.763,913.337,913.542,913.71,913.426,910.476,909.075,906.931,907.494,907.248,907.943,905.087,893.961,888.456,889.012,889.012,877.827,821.094,717.773,640.564,515.894,497.247,497.456,495.058,490.739,490.293,488.453,487.683,487.159,486.242,486.167,485.506,484.307,483.457,482.576,481.816,480.908,478.721,477.704,476.799,475.053,474.027,473.565,472.689,471.743,470.812,469.286,467.494,467.454,465.152,463.521,460.799,456.268,455.354,460.935,459.515,456.138,451.438,451.713,447.993,444.279,440.4,437.537,434.974,433.196,432.46,429.808,420.324,419.758,418.158,413.273,405.47,400.64,400.883,401.667,402.844,399.421,381.997,391.164,398.7,387.809,391.453,379.436,334.601,365.787,375.5,376.946,362.391,361.465,355.979,353.429,350.382,351.304,360.932,364.455,363.05,363.709,357.188,359.727,360.153,361.301,369.429,371.207,383.376,388.496,387.97,388.052,378.097,374.649,376.622,384.504,417.577,461.144,461.84,477.207,529.801,591.474,643.467,673.148,711.992,721.569,737.546,742.12,749.912,775.952,783.792,796.254,805.959,817.995,824.506,824.877,828.502,831.604,838.299,841.648,843.046,844.682,851.935,865.577,875.177,870.264,859.703,864.885,869.128,860,855.343,857.25,859.755,861.68,864.116,861.898,860.465,858.104,848.899,844.624,837.416,831.089,820.596,814.147,813.342,809.325,804.552,796.045,791.691,787.758,784.97,769.904,732.169,679.185,662.5,648.317,595.856,497.319,493.186,488.67,472.165,453.049,423.247,398.496,373.71,359.126,360.08,350.154,320.31,313.369,307.323,304.122,301.233,302.192,320.372,319.502,324.008,316.534,284.03,290.217,290.721,273.679,251.989,261.731,317.331,306.875,318.992,328.69,340.389,345.161,345.161,349.476,361.045,350.675,368.083,370.105,369.97,368.064,366.574,370.811,372.611,371.81,373.289,365.561,368.293,366.022,364.859,364.201,363.77,371.632,373.824,385.47,403.802,401.943,413.512,420.838,425.113,428.363,427.312,432.705,438.986,436.675,437.35,435.179,438.323,438.844,439.147,439.334,439.909,447.572,449.243,448.976,449.809,451.441,452.556,452.5,452.979,453.24,452.252,451.838,448.268,441.498,437.254,432.306,431.572,427.624,419.551,417.895,410.478,399.101,398.269,398.022,393.712,383.259,395.672,398.596,414.554,443.484,454.487,485.546,584.615,649.625,718.927,740.73,769.231,784.55,801.734,851.408,892.755,928.386,970.113,972.896,977.368,979.384,982.392,981.317,981.735,982.002,981.849,982.002,981.877,981.877,981.535,981.687,981.915,980.573,979.49,977.919,976.155,971.276,968.519,962.985,961.288,956.875,954.822,949.042,897.29,834.034,755.208,596.387,522.466,490.407,477.414,460.43,456.198,457.388,456.19,454.89,451.562,448.147,448.701,448.182,447.272,445.989,440.875,438.667,436.528,435.349,431.882,428.204,432.934,432.429,434.527,433.578,429.522,434.892,439.393,440.721,444.051,450.3,456.23,456.408,457.561,458.176,456.935,457.579,456.817,456.756,457.643,456.511,458.619,460.411,459.208,458.702,457.309,456.745,455.394,455.505,453.529,451.341,452.753,451.422,450.049,451.296,452.287,450.062,449.084,444.207,432.21,420.996,421.586,416.802,413.842,415.855,416.726,415.262,414.889,410.352,408.896,401.014,393.616,393.308,401.578,404.955,403.401,407.216,406.678,407.955,401.936,395.403,408.804,419.279,417.716,406.935,406.315,417.341,424.421,427.844,431.717,434.183,441.277,444.397,445.387,444.872,445.68,449.563,452.277,452.954,453.438,454.953,457.091,458.079,459.426,460.582]
Loading

Copy link

🌋 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 --> 1
    line [0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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, %" 83 --> 111
    line [92.794,93.132,93.424,93.689,93.938,94.162,94.378,94.575,94.76,94.938,97.544,100,100,100,100,100,100,100,99.965,99.966,99.965,99.966,99.966,99.966,99.966,99.966,99.966,99.966,99.965,99.723,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.622,99.621,99.621,99.62,99.621,99.621,99.621,99.621,99.621,99.621,99.622,99.863,100,100,100,100,100,100,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.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.689,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.69,99.689,99.69,99.728,100,100,100,100,100,100,100,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.55,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.413,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.414,99.419,99.863,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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,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]
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" 10 --> 38
    line [34.303,34.26,34.221,34.186,34.153,34.123,34.095,34.069,34.521,11.828]
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" 64 --> 114
    line [72.003,75.537,78.87,82.17,85.536,88.803,92.203,95.536,98.902,102.239,102.931,100.862,100.103,100,99.966,100.069,100.034,100,99.828,100.069,99.862,100.034,100.034,100,100,100.034,100.069,100,99.552,99.655,100,100,100.069,100,100.069,100.034,99.966,99.931,99.966,100,99.966,100.034,100,100,100,100,100,100.241,100.034,100.172,99.931,99.966,100,100,100,100,99.966,100.414,100.586,100,100,99.966,100,100,100,100.034,100,100,100,100,99.966,100,100,100,100,99.966,100,100.034,99.966,100.069,100,99.897,99.931,99.966,100.034,100.034,100.034,100,100.034,98.69,100,100,100.034,100,100,100.069,100,99.966,100.069,100,99.931,99.966,100,99.966,100.069,100,99.966,100.034,100,100.034,100.069,100,100,99.966,100.034,99.966,99.931,100,101.31,100,100,100,99.966,100,100,100,100.034,100,100.034,100.034,100.034,100.034,100.034,99.966,99.966,100,100,99.966,100,100.034,100.034,100,100,100,99.966,100.034,99.966,100,100,99.172,99.552,100,100,99.966,100,99.966,100,99.966,100,100.034,99.966,99.931,100,100,99.966,99.966,100,100,99.966,100,100,100.034,99.966,100.034,100,100.034,100.034,99.966,100.862,100.379,100,100,100.034,100.034,99.966,99.966,100.034,100.034,100,100.034,100.034,100.034,100.034,100.034,100,100.034,100,100,100.034,100,100,100.034,100,100.034,100,99.966,100,99.966,100.069,99.966,100,99.966,100,100,100,99.966,99.966,99.931,99.931,99.931,99.897,99.966,99.966,100.034,100.034,100,100,99.931,100,99.966,99.966,100.034,100,99.966,99.966,100.069,100,99.966,100,99.966,100.034,100,100.034,100,100.034,100.034,100.069,100.069,100.034,100.034,99.966,100.034,99.931,99.966,100,100,100.034,100.034,100,100.034,99.966,100,100,100.034,99.931,100,100,100.034,99.966,99.931,99.966,100,100,99.966,99.966,99.931,100,100.034,100,100.069,100.034,100.069,100.034,100,100.034,100.034,100,100.034,100,100,100,100,99.966,100.069,99.931,100.034,100,100.103,100.069,100,100.034,99.966,99.966,100.034,100.034,100,100,100.034,100,100,99.931,99.966,99.931,99.931,100,99.966,99.931,99.897,100.034,100,100.034,100,100,100.069,100,100.034,100,100,100,100,100.034,100.034,99.966,99.966,99.931,100,100.034,99.931,99.966,100,100,100.069,100.034,99.931,100,100.034,100.069,100,99.966,99.966,100.069,100,100,99.897,99.966,100,100,100,99.966,100.034,100.034,100,100.069,100.069,100.034,99.966,100.034,99.966,100,99.931,99.966,99.966,100.034,100.034,100,100.034,99.966,99.931,100,100,99.966,100,100.069,100.034,100,99.966,100,100,100,99.931,100.034,100,99.966,99.966,100.034,100.034,100.069,100.069,100.103,100,100.069,100,100,99.931,99.966,100.034,100.034,99.966,99.966,100,100,100.034,99.966,100,99.966,100.034,100.034,99.966,100.069,100,99.966,100,100,99.966,99.966,99.966,99.931,100,100.034,100,100.034,99.966,100.069,99.966,100,100.034,100.069,100.034,100.034,100.034,100,100.034,99.966,100.034,99.966,99.966,99.966,100,100,99.966,100.034,100.034,100,99.966,100,100,99.966,99.966,100,99.966,100.034,100,100.069,99.966,100,99.966,99.897,99.931,99.966,99.966,100,100.034,100,99.966,100,100,99.966,99.966,100.034,99.966,99.966,100,100,100.034,100.069,100,100.034,99.966,100,100,100,100,100,100,100,100.069,100.034,100,100,99.966,100,100,100.034,100.034,100.034,100.034,100,99.966,100.034,99.966,100,100,100,99.966,100.034,100,99.966,100,100,100.034,99.931,99.966,100.034,100,100,100,100,100.034,100.034,99.966,100,100,99.966,100,99.966,100,100.034,100,100.034,100,100.034,100,100.034,100,99.966,100.069,100.034,100,99.966,100.034,100,99.966,100,99.966,99.931,100.034,100,99.931,100.034,100,100,100,100,100,100,100.034,99.931,99.931,100,100.034,99.966,99.966,99.897,100,100,100,99.931,100,100,94.738]
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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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" 43 --> 1024
    line [930.203,905.204,881.636,858.337,834.606,811.598,787.689,764.266,740.63,722.603,413.765,141.485,87.886,79.72,76.315,74.547,73.17,70.051,69.021,62.328,61.585,62.494,58.993,58.174,57.597,57.579,55.41,54.791,58.735,60.196,61.706,60.429,60.055,60.429,62.274,62.294,61.726,61.746,61.726,62.012,61.099,60.736,58.347,57.603,57.221,56.832,56.832,56.205,50.929,49.865,49.796,49.908,49.888,49.887,49.808,49.865,49.867,49.507,48.692,48.307,48.271,48.363,48.301,48.196,48.101,48.118,48.214,48.246,48.152,48.204,48.251,48.288,48.32,48.483,48.545,48.603,48.523,48.52,48.496,48.741,48.591,48.772,48.775,48.784,48.785,48.755,48.753,48.777,48.761,49.446,62.393,63.333,63.616,63.636,63.934,62.026,61.062,60.383,59.587,59.259,58.143,60.737,58.491,57.716,55.95,57.282,58.119,59.61,55.102,56.838,52.634,52.688,52.688,51.676,52.147,52.201,51.703,52.174,49.398,48.293,48.247,48.336,48.344,48.483,48.48,48.612,48.63,48.619,48.562,48.578,48.473,48.485,48.466,48.481,48.469,48.455,48.451,48.384,48.342,48.456,48.449,48.564,48.582,48.597,48.638,48.644,48.643,48.614,48.585,48.935,49.733,55.769,52.577,52.603,51.579,52.603,52.577,57.033,58.929,60.996,60.366,63.24,63.492,63.78,63.799,62.622,63.492,64.615,63.799,64.341,64.885,65.907,65.944,66.405,66.667,68.476,70.114,69.753,64.149,49.924,49.461,49.444,49.44,49.388,49.336,49.351,49.438,49.351,49.259,49.229,49.154,49.174,49.149,49.165,49.157,49.098,48.991,48.916,48.896,48.969,48.912,48.94,48.957,49.01,48.891,48.792,49.135,49.26,49.238,49.418,49.517,49.573,49.591,49.662,49.627,49.479,49.535,49.539,49.627,49.612,49.789,49.823,49.805,49.858,49.876,49.894,49.877,49.949,49.755,49.861,50.707,50.672,50.347,50.707,50.365,49.712,49.694,49.642,49.48,49.397,49.466,49.519,49.5,49.516,49.447,49.464,49.445,49.393,49.325,49.191,49.174,49.183,49.162,49.27,49.304,49.288,49.205,49.199,49.073,48.885,48.98,48.966,49.071,49.071,49.108,49.046,49.115,49.201,49.356,49.258,49.157,49.134,49.187,49.184,49.215,49.269,49.247,49.245,49.151,49.107,49.103,49.126,49.011,48.963,48.997,48.977,49.021,49.089,49.086,48.983,48.972,48.884,48.892,48.806,48.813,48.798,48.691,48.559,48.65,48.661,48.721,48.731,48.728,48.67,48.598,48.629,48.625,48.653,48.621,48.617,48.782,48.836,48.859,48.902,48.898,48.923,48.876,48.956,48.956,48.986,48.955,48.936,48.986,48.935,48.881,48.95,48.918,48.835,48.916,48.872,48.84,48.884,48.956,48.969,49.065,49.132,49.145,49.271,49.304,49.166,49.143,49.174,49.125,49.167,49.116,49.149,49.087,49.155,49.221,49.201,49.233,49.237,49.328,49.331,49.315,49.363,49.343,49.254,49.27,49.247,49.165,49.028,49.019,49.033,48.98,48.985,48.922,48.891,48.867,48.92,49.024,49.028,48.971,48.942,48.943,49.092,48.975,48.893,48.998,49.02,49.004,48.93,48.947,48.9,48.935,48.946,49.031,49.122,49.1,49.164,49.265,49.298,49.221,49.204,49.214,49.192,49.172,49.125,49.189,49.105,49.239,49.261,49.316,49.252,49.172,49.254,49.288,49.271,49.251,49.251,49.32,49.321,49.351,49.3,49.294,49.343,49.205,49.31,49.274,49.237,49.238,49.224,49.28,49.265,49.301,49.335,49.333,49.214,49.183,49.196,49.18,49.19,49.221,49.121,49.082,49.026,48.978,48.933,48.894,48.821,48.816,48.805,48.94,49.128,49.05,49.086,49.031,49.014,48.968,48.992,49.04,49.138,49.171,49.119,49.274,49.279,49.251,49.247,49.128,49.156,49.178,49.145,49.276,49.225,49.229,49.275,49.385,49.546,49.632,49.683,49.684,49.553,49.373,49.451,49.417,49.371,49.405,49.405,49.375,49.294,49.18,49.148,49.181,49.068,49.097,49.094,49.111,49.082,49.053,48.985,48.982,48.924,48.95,48.963,48.903,48.922,48.777,48.695,48.651,48.656,48.652,48.764,48.764,48.754,48.833,48.806,48.79,48.772,48.76,48.791,48.813,48.794,48.759,48.745,48.834,48.791,48.755,48.861,48.935,48.968,49.019,49.087,49.094,49.107,48.937,48.969,48.978,48.998,49.052,49.042,49.088,49.055,49.098,49.051,49.083,49.113,49.343,49.332,49.302,49.251,49.334,49.404,49.469,49.517,49.649,49.664,49.618,49.584,49.586,49.486,49.467,49.515,49.569,49.737,49.687,49.704,49.656,49.625,49.639,49.524,49.494,49.545,49.574,49.639,49.689,49.475,49.544,49.511,49.592,49.491,49.441,49.457,49.363,49.268,49.3,49.264,49.248,49.279,49.317,49.31]
Loading

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.

3 participants