Skip to content

Conversation

@dahbka-lis
Copy link
Member

Extended ExecuteQueryRequest to support Format and SchemaInclusionMode options, ResultSet to support get binary data (serialized arrow batches).

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?

It is not possible to get ResultSet with Arrow batches instead Ydb.Value rows.

What is the new behavior?

Now it is possible to get ResultSet with Arrow batches instead Ydb.Value rows.

Other information

Example:

import pyarrow as pa
import ydb

driver_config = ydb.DriverConfig(
    # ...
)

driver = ydb.Driver(driver_config)
driver.wait(timeout=5)
pool = ydb.QuerySessionPool(driver)

query = """
    SELECT * FROM `tpch/s1/orders` ORDER BY o_orderkey LIMIT 100;
"""

format_settings = ydb.ArrowFormatSettings(
    compression_codec=ydb.ArrowCompressionCodec(ydb.ArrowCompressionCodecType.ZSTD, 20)
)

result = pool.execute_with_retries(
    query,
    result_set_format=ydb.QueryResultSetFormat.ARROW,
    arrow_format_settings=format_settings,
)

for result_set in result:
    schema: pa.Schema = pa.ipc.read_schema(pa.py_buffer(result_set.arrow_format_meta.schema))
    batch: pa.RecordBatch = pa.ipc.read_record_batch(pa.py_buffer(result_set.data), schema)
    print(batch.num_rows, batch.num_columns)

@github-actions
Copy link

github-actions bot commented Nov 18, 2025

🌋 Here are results of SLO test for sync-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,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,99.978,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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, %" 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,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" 805 --> 1095
    line [917.444,950.566,978.448,979.414,979.172,978.966,979.517,982.241,983,981.69,981.069,974.759,974.414,975.034,975.345,976.724,977.621,976.621,979.586,979.966,981.069,981.241,981.069,979.069,964.276,945.897,946.586,947.414,949.207,948.862,948,947.966,947.828,947.414,947.828,947.276,947.276,947.31,948.448,949.966,956.724,956.966,956.241,955.448,954.414,953.862,953.448,948.448,949.172,943.828,943.345,942.931,945.103,960.448,979.586,978.828,978.931,976.138,976.448,974.793,974.897,974.931,975.897,975.552,976.103,976.138,976.069,976.345,975.655,975.448,975.241,975.207,976.034,974.138,974.31,975.897,978.414,978.103,982.379,980.414,980.966,980.172,979.862,980.379,976.069,956.759,956.897,956.724,959.759,959.655,959,959.414,958.931,958.621,952.69,948.414,941.69,937.793,938.483,938.276,939.034,938.966,935.448,919.862,920.069,922.276,922.828,923.931,926.345,925.759,925.759,925.207,923.517,928.276,948.379,951.138,951.103,949.586,949.172,949.103,947.966,947.586,947.69,951.759,945.103,951.483,954.069,954.172,954.724,954.103,954,956,972.034,971.897,971.897,971.138,968.862,966.241,966.931,967.345,968,969.69,969.759,956.241,952.724,952.828,954,954.379,955.172,955.69,956.207,956.793,958.31,969.207,964.241,958.966,958.828,958.345,959.103,959.034,963.034,962.69,960.793,960.828,961.517,963.793,954.621,954.414,953.966,954.31,953.345,951.379,956.552,958.31,958.828,958.517,957.793,957.379,957.759,950.138,949.828,950.172,950.207,955.517,962.586,961.724,959,958.828,958.655,955.862,955.897,956.103,956.207,955.276,955.276,962.414,961.621,959.862,959.034,960.103,962.31,970.379,970.345,969.897,969.759,970.103,970.897,970.517,978.069,977.103,975.931,975.759,966.345,966.31,966.483,969.655,968.31,968.414,964.862,964.828,966.448,965.862,966.483,966.862,971.414,972.31,974.069,974.552,960.69,960.379,960.276,961.69,961.931,962,962.483,962.138,961.862,962.379,963.483,963.586,961.655,970.552,971.345,970.897,969.586,970.655,970.552,976.483,975.207,951.207,949.759,949.103,948.655,948.69,948.931,949.241,949.31,962.517,960.931,961.207,959.414,959.345,960.172,959.552,959.414,959.793,959.069,958.828,959.69,961.552,962,960.862,961.69,963.069,963.517,964.069,964.138,966.448,990.241,991.966,993.069,993.138,993.241,993.138,993.172,993.207,993.69,995.31,995.414,993.241,993.862,992.207,992.379,992.103,991.586,992.448,990.69,990.931,990.483,990.207,990.448,990.552,989.897,989.448,986.276,981.103,971.828,972.69,972.655,972.69,972.724,972.655,971.966,971.69,970.241,960.586,958.586,958.31,962.034,961.517,962.517,952.966,953.552,953.793,953.655,954.793,955.172,953.069,953.586,954.31,953.655,953.724,950.759,949.31,955.138,964.034,963.552,963.793,963.69,963.586,934.483,934.379,935,936.034,941.207,937.103,936.414,935.138,934.793,933.034,942.207,942.517,942.034,925.345,926.552,925.966,928.034,928.138,926.586,927.345,927.828,931.241,935.586,935.552,935.552,935.586,935.552,934.69,935.172,964.345,952.862,951.034,951.207,955.586,961.517,958.103,958.931,959.724,959.069,949.207,947.931,948.138,952.621,952.069,951.966,952.828,951.966,952.862,952.793,940.31,940,940.034,940.103,939.552,939.448,937.31,935.828,935.069,935.379,946.862,945.862,945.966,946.138,946.414,950.897,951.621,941.138,942.379,950.966,950.138,950.103,961.621,961.828,962.379,961.759,962.552,962.759,962.793,974.793,975,974.655,974.448,974.069,958.759,960.621,963.138,963.172,962.862,963.552,966.138,966.172,966.172,966.138,945.517,946.241,956.172,957.345,959,960.621,961.034,961.655,961.172,960.621,960.655,960.448,956.552,955.862,955.793,955.724,952.586,951.586,950.103,953.241,951.448,951.103,951.586,951.241,939,939.172,939.31,938.724,938.483,959.034,958.621,958.276,958.345,958.828,957.931,952.448,952.448,952.724,953,953.448,953.414,957.207,957.931,957.966,954.517,958.517,959.517,954.276,966.448,967.724,956.31,955.724,956.103,968.31,967.759,957.759,955.897,956.483,955.655,954.172,954.724,954.414,953.483,954.379,959.552,959.759,954.207,953.862,931.103,931.172,931.138,931.103,931.655,935.276,934.724,934.862,940.483,934.069,935.034,946.069,946.724,932.621,933.276,932.552,942.483,944.828,943.655,943.897,945.034,945.069,945.69,945.931,942.31,937.69,937.483,943.034,943.379,966.138,966.103,966.103,966.138,966.103,966.103,966.103,966.103,968.138,974.655,974.483,975.034,974.793,988.828,987.276,988.448,988.655,988.483,986.207,986.759,986.034,985.759,985.966,986.414,989.966,995,994.276,993.138,986.621,986.345,986.207,986.31,985.828,975.793,976.241,975.793,975.862,975.138,974.897,974.655,974.724,966.448,966.448,928.629,895.192]
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" 62 --> 103
    line [76.92,80.279,83.172,83.172,83.172,83.172,83.172,83.172,86.517,86.586,90,93.276,90.759,90.31,90.345,90.345,90.345,90.345,90.345,89.138,90.207,90.276,90.241,90.241,87.448,87.517,87.552,87.552,87.552,90.897,90.897,87.793,87.517,87.552,87.552,87.552,87.552,87.552,86.621,84.207,84.31,86.862,87.31,87.276,87.276,84.621,83.897,83.931,85.138,87.31,87.241,83.931,83.862,86.724,86.655,86.621,86.621,86.621,86.621,86.621,86.448,86.69,83.276,83.276,83.276,83.276,83.276,84.207,86.621,83.31,83.207,79.828,79.828,79.828,82.483,83.207,83.172,83.172,83.172,81.897,83.172,83.241,83.172,83.172,83.172,83.172,83.172,79.828,79.828,83.103,83.138,86.517,86.517,83.138,83.172,83.276,79.862,79.862,83.207,83,85.138,83.276,83.276,83.241,79.828,76.414,76.414,76.379,74.276,76.345,76.345,76.345,76.345,75.103,72.966,72.931,72.897,72.897,72.897,72.897,72.897,71.207,72.897,72.862,69.345,72.759,72.759,72.759,73.034,70.897,72.793,72.793,72.828,76.241,79.655,79.655,76.31,79.724,79.724,79.724,79.724,79.724,77.621,79.69,78.31,81.586,81.517,79.793,76.379,76.379,78.069,79.759,79.759,83.172,83.172,83.172,83.172,83.172,83.31,83.276,83.276,83.276,83.276,83.276,83.276,83.31,83.276,83.276,83.276,83.276,83.276,86.621,86.724,85.621,84.897,81.621,83.276,86.69,86.724,86.69,86.69,86.69,83.448,83.448,83.448,83.448,83.414,86.69,86.69,86.724,86.724,84.138,84.069,83.759,86.966,86.897,86.897,85.448,85,84.586,83.586,83.517,85.724,86.414,89.759,89.655,86.897,86.862,86.897,86.897,86.897,90.138,90.138,90.138,90.138,90.172,89.138,86.759,86.759,86.759,89.103,89.207,89.379,86.448,86.517,86.517,87.966,88.414,88.828,89.828,86.517,86.828,86.966,86.966,87.138,89.897,89.897,89.897,86.517,84.655,84.552,84.517,83.103,83.103,83.103,84.069,83.034,83.034,83.034,83.276,82.586,82.345,85.448,84.172,84.172,83.172,83.138,83.207,83.207,86.586,83.172,83.172,83.172,83.172,83.172,83.172,83.172,86.552,85.138,85.276,85.31,86.724,86.724,86.724,86.759,90.172,86.759,86.793,86.793,87.448,87.828,87.793,85.69,85.724,86.724,86.759,86.69,86.69,86.655,90.069,90.069,90.069,90.069,90.069,88.69,86.69,85.069,88.103,87.828,86.621,86.621,86.655,86.655,86.655,86.655,90.138,88.759,86.759,83.345,83.345,83.345,86.724,86.69,86.69,86.69,86.931,85,84.759,84.621,84.621,84.241,83.69,83.69,85.103,87.103,88.759,89.034,87.034,88.241,88.345,87.69,87.552,87.414,87.103,86.966,88.379,90.379,91.724,91.069,90.448,90.483,90.517,90.414,90.414,86.862,88.793,89.034,89.172,89.172,89.552,87.276,86.724,83.276,83.276,83.241,83.207,82.069,82.069,81.966,82.586,82.724,82.862,83.172,83.207,80.483,80.069,81.931,82.621,83.172,83.172,83.103,80.897,80.897,84.069,83.793,83.621,83.552,83.241,83.172,86.103,86.655,86.655,85,85.034,85.034,86.621,86.621,86.621,86.621,86.621,86.621,83.276,83.276,85.931,86.345,86.552,86.517,86.586,86.552,86.586,85.483,85.517,85.655,85.931,85.103,83.862,83.276,83.172,83.103,83,86.034,87.69,86.241,84.759,86.586,86.586,86.586,86.586,85.172,83.241,86.517,83.138,83.138,83.138,83.138,83.138,83.138,79.862,79.241,82.483,82.241,81.966,81.69,81.862,82.345,83.241,83.414,83.414,83.345,83.69,80.276,79.862,81.241,81.034,81.034,80.655,80.586,82,83.586,83.207,86.552,83.172,83.172,83.172,83.172,83.172,86.448,87.069,87.241,87.448,87.724,88,85.621,86.448,86.448,86.448,86.414,86.586,86.621,86.655,88.172,87.793,87.793,86.379,85.828,85.828,85.828,83.793,84.448,84.414,86.759,86.793,86.793,86.793,83.414,83.414,83.414,83.414,83.414,82.828,80.172,83.379,83.414,83.414,83.448,81.552,81.517,81.345,84.414,83.793,84.241,84.483,85.897,86.828,86.897,86.276,85.897,85.724,85.793,86.828,86.793,86.793,83.552,86.828,86.828,86.828,86.828,86.828,87.414,89.793,87.759,86.655,86.621,83.207,85.103,85.138,85.31,85.621,86.552,86.586,86.517,86.517,86.552,86.621,87.241,90,89.966,89.966,89.966,86.69,86.69,89.897,86.586,86.621,85.241,84.966,83.276,83.207,82.517,84.483,85.345,84.138,86.724,86.655,83.276,83.276,83.276,83.276,83.241,79.828,79.828,79.793,79.724,79.724,79.724,79.724,79.724,79.724,80.517,80.345,80.207,83.586,83.138,80.698,77.623]
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" 10 --> 22
    line [16.162,16.223,16.19,16.243,16.349,16.403,16.387,16.335,16.361,16.417,16.489,16.557,16.446,16.368,16.218,15.991,15.916,15.782,15.68,15.547,15.378,15.144,14.988,14.905,14.848,14.505,14.406,14.205,14.036,14.097,13.872,13.701,13.585,13.407,13.377,13.522,13.705,13.71,13.719,13.58,13.494,13.552,13.642,13.761,13.951,13.865,13.994,14.008,14.043,14.207,14.174,14.08,14.045,14.1,14.074,13.998,13.905,13.752,13.621,13.495,13.49,13.512,13.303,13.24,13.095,13.029,13.137,13.099,13.142,12.992,12.885,12.605,12.688,12.69,12.855,12.688,12.827,12.743,12.58,12.466,12.449,12.225,12.064,12.146,12.323,12.518,12.797,12.719,12.818,12.944,12.851,13.001,12.899,12.814,12.718,12.602,12.615,12.71,12.945,13.167,13.285,13.172,13.117,12.964,13.077,12.998,13.557,13.787,13.779,14.049,14.25,14.494,14.713,14.738,14.66,14.825,14.92,15.092,15.211,15.344,15.46,15.577,15.68,15.75,15.825,15.968,16.08,16.115,16.093,16.138,16.272,16.316,16.4,16.475,16.504,16.348,16.311,16.403,16.435,16.433,16.402,16.28,16.246,16.264,16.25,16.407,16.402,16.353,16.245,16.211,16.224,16.282,16.343,16.417,16.319,16.245,16.296,16.341,16.293,16.314,16.406,16.419,16.423,16.524,16.595,16.565,16.546,16.54,16.57,16.618,16.634,16.721,16.743,16.708,16.648,16.533,16.619,16.763,16.853,16.911,16.951,16.949,16.814,16.814,16.81,16.811,16.794,16.853,16.782,16.674,16.633,16.6,16.553,16.554,16.64,16.69,16.666,16.662,16.667,16.713,16.713,16.715,16.723,16.702,16.824,16.805,16.661,16.576,16.472,16.349,16.324,16.384,16.407,16.464,16.534,16.632,16.616,16.56,16.654,16.705,16.754,16.759,16.726,16.625,16.514,16.439,16.348,16.265,16.212,16.122,16.073,16.16,16.205,16.236,16.294,16.436,16.508,16.508,16.526,16.539,16.721,16.839,16.888,16.866,16.848,16.936,16.998,16.973,16.929,16.909,16.969,17.099,17.282,17.447,17.632,17.792,17.933,17.954,17.972,18.008,17.95,18.058,18.185,18.252,18.3,18.232,18.263,18.311,18.282,18.277,18.278,18.234,18.137,18.121,18.051,18.045,17.977,18.034,18.003,17.912,17.807,17.683,17.545,17.548,17.592,17.639,17.704,17.88,17.98,18.151,18.154,18.086,18,17.988,18.082,18.134,18.193,18.331,18.326,18.338,18.362,18.413,18.428,18.456,18.514,18.583,18.57,18.641,18.637,18.777,18.883,18.96,18.907,18.834,18.751,18.732,18.656,18.704,18.645,18.604,18.544,18.585,18.658,18.698,18.75,18.776,18.71,18.675,18.694,18.74,18.787,18.849,18.949,19.041,19.13,19.087,18.995,19.04,18.931,18.836,18.834,18.874,18.845,18.818,18.778,18.787,18.723,18.721,18.72,18.806,18.734,18.642,18.54,18.506,18.546,18.637,18.556,18.588,18.6,18.629,18.615,18.551,18.478,18.421,18.457,18.504,18.484,18.496,18.504,18.483,18.427,18.496,18.632,18.718,18.702,18.75,18.785,18.82,18.809,18.835,18.888,18.883,18.906,18.901,18.917,19.012,18.901,18.835,18.766,18.704,18.711,18.667,18.73,18.796,18.863,18.919,19.037,19.102,19.101,19.072,19.005,18.904,18.86,18.839,18.792,18.683,18.606,18.589,18.675,18.706,18.85,18.817,18.723,18.627,18.565,18.577,18.62,18.627,18.601,18.537,18.592,18.438,18.432,18.442,18.511,18.431,18.316,18.347,18.434,18.492,18.524,18.562,18.586,18.592,18.685,18.776,18.821,18.754,18.667,18.488,18.385,18.369,18.385,18.454,18.546,18.61,18.719,18.844,18.951,18.978,19.099,19.025,18.951,18.851,18.788,18.84,18.794,18.738,18.711,18.699,18.641,18.609,18.526,18.561,18.582,18.559,18.58,18.616,18.624,18.672,18.679,18.641,18.614,18.53,18.444,18.335,18.24,18.217,18.152,18.083,18.091,18.139,18.129,18.119,18.107,18.212,18.268,18.27,18.232,18.324,18.311,18.423,18.412,18.358,18.313,18.234,18.179,18.213,18.21,18.216,18.25,18.236,18.289,18.299,18.324,18.325,18.264,18.359,18.462,18.589,18.653,18.658,18.605,18.612,18.541,18.489,18.469,18.468,18.392,18.432,18.35,18.31,18.277,18.169,18.233,18.296,18.428,18.522,18.607,18.648,18.724,18.738,18.719,18.687,18.668,18.661,18.524,18.369,18.175,17.977,17.938,18.038,18.015,18.075,18.135,18.151,18.102,18.073,18.153,18.219,18.24,18.238,18.327,18.244,18.126,18.019,17.93,17.851,17.809,17.682,17.708,17.793,17.81,17.892,18.023,18.148,18.269,18.359,18.368,18.453,18.476,18.62,18.661,18.625,18.646]
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" 16 --> 49
    line [19.457,19.496,19.449,19.466,19.556,19.556,19.577,19.552,19.518,19.528,19.504,19.485,19.466,19.468,19.429,19.281,19.227,19.188,19.123,19.125,19.116,18.963,18.973,18.886,18.887,18.769,18.706,18.637,18.605,18.648,18.521,18.554,18.556,18.483,18.528,18.484,18.509,18.52,18.564,18.524,18.416,18.417,18.391,18.459,18.524,18.606,18.67,18.696,18.751,18.766,18.723,18.696,18.695,18.71,18.675,18.62,18.573,18.517,18.395,18.3,18.287,18.318,18.264,18.243,18.152,18.134,18.196,18.119,18.153,18.228,18.154,18.12,18.196,18.208,18.199,18.165,18.214,18.148,18.134,18.18,18.168,18.069,17.996,18.151,18.263,18.405,18.486,18.568,18.679,18.709,18.697,18.717,18.701,18.753,18.711,18.582,18.625,18.683,18.662,18.731,18.728,18.698,18.686,18.622,18.659,18.606,18.97,19.116,19.133,19.261,19.328,19.441,19.567,19.587,19.594,19.738,19.738,19.801,19.897,19.951,20.085,21.051,21.688,21.701,23.067,23.178,23.403,23.403,22.846,23.641,23.831,24.256,25.25,24.875,24.142,20.636,19.978,19.901,19.848,19.83,19.734,19.538,19.533,19.419,19.382,19.531,19.558,19.51,19.452,19.35,19.344,19.358,19.465,19.542,19.456,19.397,19.533,19.565,19.563,19.64,19.74,19.777,19.785,19.887,19.967,19.966,19.966,20.307,20.307,21.476,21.699,22.294,22.86,22.614,21.809,21.134,21.476,22.272,23.619,24.171,25.353,26.133,25.96,25.8,26.581,26.581,26.74,26.578,25.981,24.681,23.802,24.043,23.5,23.21,23.91,25.132,24.286,24.714,25.833,26.261,26.542,27.006,26.981,26.796,26.479,26.923,26.375,25.779,25.455,23,22.206,21.38,21.38,22.191,22.959,24.363,24.821,25.333,26.412,27.401,27.465,27.698,27.129,26.643,25.562,25.076,24.145,21.927,21.164,19.959,19.941,19.949,19.999,21.341,20.842,21.867,24.273,23.398,24.398,25.613,29.68,31.432,32.015,33.326,34.067,33.88,33.937,33.417,32.696,32.127,32.451,34,34.637,35.532,36.89,38.06,39.223,39.401,39.464,39.058,39.244,39.624,40.361,40.891,41.144,40.746,40.77,40.408,40.341,39.945,39.969,39.769,38.941,38.704,38.63,38.171,38.63,39.031,39.348,39.358,38.73,38.086,37.955,38.628,38.951,39.259,39.749,40.605,41.342,41.605,41.696,41.522,41.2,41.098,41.552,41.958,42.525,42.819,42.897,42.847,42.776,42.886,42.788,42.759,42.773,42.503,42.473,42.721,42.831,43.272,43.626,43.581,43.301,42.952,42.518,42.146,41.965,42.098,41.989,42.007,41.796,41.85,42.1,42.185,42.217,42.114,41.729,41.811,41.973,42.246,42.476,42.852,43.407,43.832,44.244,44.127,43.84,43.785,43.48,43.186,42.94,43.118,43.063,42.945,43.236,43.012,42.569,42.405,42.326,42.494,42.466,42.389,42.214,42.155,42.319,42.523,42.382,42.549,42.639,42.628,42.52,42.077,41.541,41.239,41.559,41.668,41.379,41.259,41.198,41.198,40.375,40.77,41.449,41.63,41.698,42.16,42.697,42.905,43.026,42.782,42.689,42.689,42.831,42.813,42.99,43.113,42.737,42.366,41.991,41.527,41.273,41.394,41.688,41.929,42.217,42.454,42.908,43.128,43.22,43.328,43.305,42.924,42.595,42.4,42.083,41.333,40.6,40.198,40.985,41.199,41.565,41.257,40.846,40.501,40.167,40.444,40.996,41.29,41.686,41.839,41.971,41.521,41.501,41.461,42.008,42.026,41.71,41.91,42.318,42.244,42.402,42.652,42.814,42.799,43.206,43.626,43.748,43.639,43.494,43.154,43.231,43.319,43.358,43.523,43.631,43.807,43.976,44.128,44.255,44.356,44.369,44.361,44.171,43.686,43.312,43.324,43.052,42.605,42.545,42.557,42.38,42.196,42.267,42.352,42.336,42.188,42.14,42.256,42.135,42.132,41.699,41.138,40.544,40.007,38.847,37.667,35.987,35.553,34.2,32.757,32.262,33.887,34.44,34.44,35.006,36.987,38.026,38.109,37.505,38.666,39.324,40.009,39.482,39.008,38.485,38.712,38.73,39.297,39.537,39.775,40.016,39.985,39.981,39.923,39.943,40.02,39.597,40.059,40.883,41.529,41.797,41.965,42.268,42.243,41.607,41.214,40.924,41.015,40.238,40.169,39.839,40.029,39.657,39.883,39.518,39.697,40.408,40.8,41.434,41.824,42.455,42.598,42.717,42.815,42.861,42.768,42.394,41.825,41.153,40.697,40.745,40.812,40.78,41.03,41.499,41.804,41.9,41.85,42.159,42.216,42.012,42.148,42.056,41.774,41.592,41.119,40.635,40.327,39.545,38.825,39.22,39.689,39.698,40.006,40.72,41.226,41.741,42.033,41.952,42.151,42.291,42.551,42.853,42.754,42.819]
Loading

@github-actions
Copy link

github-actions bot commented Nov 18, 2025

🌋 Here are results of SLO test for sync-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,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,99.988,99.988,99.988,99.988,99.988,99.988,99.989,99.989,99.989,99.988,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,99.989,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,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, %" 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,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" 269 --> 722
    line [539.701,560.223,579.928,584.207,588,590.552,590.69,590.379,592.241,591.241,591.414,594.586,594.276,593.621,593.897,594.552,594.103,594.724,595.483,598.586,599.655,602.31,602.241,602.483,593.69,592.759,592.621,592.345,596.828,599.414,599.862,600.207,602.724,599.414,600.621,601.379,602.034,602.517,604,605.034,603.414,606.448,611.069,611.345,613.379,615.103,614.483,612.448,609.69,607.759,602.966,603.069,602.552,612.103,615.034,615.207,614.655,611.379,612.793,611.793,612.414,611.793,611.517,610.793,613.517,614,611.931,611.517,610.759,610.103,608.621,606.759,606.69,606.759,606.276,608.103,610.483,610.793,614.414,615.621,615.966,617.241,617.862,619.552,620.655,611.828,612.448,610.828,611.379,610.31,611.241,610.828,611.138,609.31,609.931,611.966,612.241,616.069,617.207,620.241,619.448,620.586,620.172,620,621.897,622.69,622.103,621,621.552,621.759,621.621,624.621,623.724,622.966,633.241,633.241,631.621,632.31,636.966,635.828,637.034,636.931,637.414,640.966,642.034,642.552,639.034,638.69,635.552,638.828,638.931,638.828,638.724,635.448,635,635.379,633.931,635.724,635.31,634.448,629.759,628.172,628.345,626.966,626.276,610.379,590.483,586.276,586.379,586.31,587.207,587.414,584.241,584.241,584.552,588.034,588.724,588.862,585.414,585.759,585.241,585.31,587.241,586.379,587.448,588.103,586.034,583.931,586.31,587.138,587.655,587.793,589.138,588.897,604.724,624.793,625.345,625.828,625.172,625.759,625.862,625.828,625.345,625.966,622.966,623.345,623.793,624.759,625.379,627.828,627.414,630.586,631.31,630.552,632.138,631.966,640.379,639.621,640.897,643.483,644.103,644.69,646.621,647.931,647.793,650.448,650.31,650.621,650.621,651.759,651.103,650.655,650.172,650.31,650.103,650.241,651.483,650.931,652.862,653.966,649.828,650.655,651.621,650.759,653.448,649.966,650.345,649.793,649.207,649.172,649.345,648.862,650.966,651.966,650.241,649.862,651.069,650.586,649.828,652.759,652.793,655.828,655.31,655.897,655.207,653.345,653.966,649.931,650.69,650.828,649.241,648.448,649.862,650.655,648.862,648.517,649.379,648.931,648.759,648.448,648.586,647.276,647.724,648.897,649.828,650,650.207,650.966,650.931,651.552,648.31,648.724,647.793,648.793,649.759,648.448,649.621,648.586,648.586,652.793,652.862,651.241,648.345,649.828,650.724,651.862,654.793,654.759,654.828,654,652.517,650.69,649.69,648.586,648.069,647.862,646.793,644.276,643.931,646.862,646.759,647.345,646.862,646.517,647.034,646.414,648.069,649.034,646.207,646.552,648.966,650.793,649.517,648.759,647.69,646.448,646.759,646.655,647.276,647.517,646.897,646.897,647.897,649.759,649.793,652.448,653.276,654,650.483,651.138,649.483,649.862,649.069,652.69,653.241,651.655,650.172,649.379,649.241,647.172,645.069,647.414,646.724,646.897,645.276,645.483,646.345,645.862,647.069,648.483,647.414,646.724,644.207,646.793,643.379,643,641.69,642.414,641.586,645.897,644.483,645.31,641.483,640.966,641.897,642,642.586,646.138,645.379,646.207,643.241,643.655,642.724,642.034,642.31,642.862,643.931,644.207,643.345,644.379,646.414,647.069,643.448,644.207,645.172,646,646.517,647.034,647.138,648.345,647.931,648.103,648.517,648.379,651.655,651.793,648.379,651.172,651,652.276,651.621,651.931,652.69,656.138,654.586,654.172,652.793,653.828,653.379,651.103,651.034,650.931,653.759,652,652.483,651.621,650.828,646.828,649.276,649.759,648.966,648.241,647.379,644.034,645.724,646.345,643.724,643.069,642.241,642.483,642.862,642.414,640.034,639.759,640.034,640.31,639.862,639.517,639.655,640.276,641.655,641,641.414,644,643.793,644.897,645.862,643.276,642.414,642.793,643.138,646.103,647.034,645.207,645,645.276,646.103,646,647.483,647.517,647.172,648.655,649.483,649.138,649.448,649.552,652.172,652.448,652.31,651.241,648.586,648.483,644.724,645.448,646.345,647.414,646.724,646.724,647.172,647.138,644.586,643.034,643.138,645.31,645.517,645.034,644.69,644.034,642.897,643.379,640.448,639.828,639.69,640.655,642.276,641.276,641.517,641.621,642.241,642.448,644.966,645.966,646.31,645.552,644,644.724,645.552,644.862,644.724,644.793,645.586,646.448,644.069,645.414,646.483,649.552,649.241,649.379,649,649.345,649.103,648.414,647.172,645.31,643.724,643.31,642.138,641.828,640.586,638.586,640.966,639.069,641.207,641.034,640.724,640.793,641.241,640.931,640.966,644.414,642.724,642.241,640.793,639.414,637.276,636.31,637.793,638.69,641,641.897,643.034,642.655,643.31,643.966,643.69,644.552,645.414,646.448,645.552,642.655,646.241,643.966,644.483,644.862,644.69,644.621,648.31,648.069,644.621,645.897,645.103,644.034,644.483,621.1,600.668,578.547,556.908,532.881,511.203,489.663,468.922,447.068,425.562,405.071,383.742,361.919,341.155,320.681,299.609]
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" 35 --> 102
    line [87.076,89.069,91.517,91.483,88.207,88.483,88.552,88.552,88.828,90.034,90.034,86.69,86.69,86.69,86.69,86.69,86.69,86.69,87,84.552,84.069,83.103,83.138,83.483,83.483,83.862,84.103,83.828,80.862,78.966,80.241,80.483,79.828,83.207,83.276,83.241,83.276,81.966,81.931,81.793,85,83.241,79.828,79.828,79.828,79.828,79.828,79.828,82.586,83.172,86.586,86.586,86.586,86.586,86.586,86.586,87.172,89.966,88.828,88.897,89.31,90.034,90.034,89.414,86.655,86.621,87.931,87.966,88.103,88.241,88.345,90.034,90.034,89.483,89.138,89.034,88.31,88,86.69,86.69,86.724,86.724,86.414,85.69,84.103,84.207,84.207,86.724,86.655,86.414,84.483,84.517,85.069,87.862,87.862,87.862,87.31,84.621,84.552,82.828,84.552,84.552,85.103,84.724,82.207,82.931,83.241,84.552,84.552,84.517,84.517,81.483,82.207,83.793,83.69,83.69,84.414,84.483,81.483,83.414,83.379,83.379,83.345,79.966,79.966,80.517,83.207,83.276,86.655,83.31,83.31,83.31,84.034,86.655,86.655,86.655,86.655,83.414,83.414,83.414,86.759,86.759,86.793,86.793,86.793,84.379,80.931,84.276,84.276,84.276,84.276,84.31,87.69,87.69,87.69,84.31,83.034,82.966,85.966,86.172,85.448,85.31,84.31,84.379,84.379,84.414,87.724,86.414,87.31,87.31,87.034,86.931,86.586,86.138,88.483,90.31,90.207,89.31,89.276,88.793,87.103,87.034,86.931,86.897,90.276,91.586,91.655,91.724,90.621,89.172,89.241,86.862,86.793,86.793,86.759,86.69,84.621,83.724,83.724,84,84.069,84.414,84.862,84.931,85.345,83.172,84.103,84.138,83.655,82.966,83.034,83.069,82.034,81.897,81.621,80.483,80.034,80.897,79.69,79.759,83.138,83.138,83.138,83.138,81.897,83.276,83.241,83.207,83.241,83.241,83.241,82.31,80.138,81.069,83.276,83.241,83.103,83.931,85.862,83.241,83.241,80.931,81.069,81.31,82.448,83.172,83.207,86.586,86.586,86.586,86.586,86.586,85.759,84.586,86.621,86.655,86.69,86.655,86.483,86.448,87,88.621,87.103,86.621,86.655,86.793,86.931,86.448,86.621,86.724,90.103,90.103,90.103,90.103,90.103,90.103,90.103,90.103,90.103,86.862,86.862,87.69,90.103,90.069,89.034,86.69,83.517,83.621,83.655,83.931,84.483,86.345,86.724,86.655,86.655,86.655,87.655,90.034,90,86.793,85.862,85.966,85.69,85.621,85.517,85.345,85,83.69,86.69,86.655,83.241,81.69,81.483,82.517,84.241,86.448,86.483,86.379,86.276,86.241,85.862,84.862,84.897,83.345,83.276,79.828,79.897,79.897,83.103,84.034,83.931,84.207,84.276,81.138,81.345,81.69,83,83.241,83.276,86.69,88,85.103,85.069,84.621,85.379,84.966,84.103,83.966,83.793,84.138,85.207,85.138,86.724,83.379,86.759,86.759,86.759,86.759,86.759,83.414,83.414,83.414,86.655,86.621,86.621,86.621,86.586,83.345,83.379,83.621,86.724,86.759,87.828,87.655,88.172,87.931,87.828,86.862,86.828,86.586,84.621,84.828,87.931,87.897,87.276,86.724,86.655,86.655,86.621,86.621,86.621,86.621,86.621,86.138,83.31,83.345,86.586,83.172,83.172,83.172,83.172,83.172,83.552,80.138,81.345,81.793,82.966,82.966,83.207,85.241,85,85.31,82,82.621,83.172,83.241,83.241,86.448,83.241,83.276,83.276,83.276,83.759,86.586,83.517,83.414,86.862,86.69,86.586,86.276,85.931,85.345,87.069,86.69,86.724,86.724,86.724,86.724,86.724,86.724,85.517,86.724,86.655,83.276,83.276,83.276,83.448,86.655,86.621,86.621,86.172,83.241,82.655,85.655,85.379,85.207,84.793,84.483,83.724,84,84.586,82.793,82.483,82.379,81.517,81.552,79.828,79.759,79.828,81.034,83.172,83.241,86.621,86.621,84.621,83.241,83.276,83.276,83.276,83.724,86.655,87.241,87,84.31,84.448,85.034,85.448,86.517,86.586,86.586,90,90.69,90.759,91.621,90.138,90.172,90.276,90.207,89.724,89.724,87.897,86.828,86.862,88.862,90.241,90.207,90.207,90.207,90.207,90.207,90.207,89.241,92.207,90.379,90.172,86.759,86.759,86.759,86.759,86.759,86.759,86.759,86.759,88.207,89.897,89.828,89.862,90.345,90.345,92.138,89.897,89.793,86.586,86.517,86.448,86.552,86.517,86.483,86.448,83.172,84.448,84.552,86.345,86.552,89.966,89.966,89.966,89.966,86.621,86.621,86.621,86.621,86.621,86.621,86.655,86.621,86.621,86.621,86.655,89.897,87.828,89.966,90.069,90.138,90.034,90.069,86.759,86.793,90.069,90.103,90.138,90.138,90.138,86.559,83.214,79.869,76.522,76.531,73.187,69.843,66.497,63.15,59.801,56.451,53.098,49.744,46.386,43.025,39.731]
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" 37 --> 48
    line [43.447,43.379,43.373,43.256,43.101,43.041,43.064,43.06,43.054,43.105,43.121,42.943,42.963,42.997,42.967,42.892,42.952,42.924,42.878,42.791,42.776,42.729,42.742,42.682,42.784,42.876,42.943,42.988,42.799,42.683,42.769,42.794,42.724,42.883,42.846,42.831,42.874,42.816,42.808,42.801,42.909,42.837,42.731,42.765,42.714,42.605,42.621,42.678,42.794,42.824,43.006,43.002,43.035,42.915,42.857,42.825,42.857,43.009,43.011,42.989,42.955,42.962,42.964,42.953,42.848,42.784,42.871,42.825,42.772,42.818,42.853,42.885,42.924,42.947,43.036,42.972,42.866,42.856,42.779,42.787,42.78,42.777,42.715,42.626,42.541,42.605,42.526,42.565,42.514,42.527,42.555,42.551,42.542,42.658,42.651,42.563,42.557,42.457,42.396,42.289,42.279,42.287,42.318,42.226,42.116,42.113,42.094,42.13,42.036,42.017,41.977,41.893,41.932,41.96,41.822,41.759,41.849,41.869,41.662,41.659,41.656,41.684,41.633,41.494,41.463,41.459,41.569,41.589,41.756,41.648,41.59,41.559,41.658,41.825,41.849,41.832,41.878,41.805,41.866,41.958,42.134,42.162,42.203,42.193,42.264,42.242,42.227,42.273,42.181,42.148,42.108,42.114,42.235,42.26,42.27,42.184,42.138,42.059,42.223,42.176,42.179,42.079,42.087,42.144,42.138,42.159,42.347,42.318,42.254,42.189,42.149,42.154,42.178,42.195,42.172,42.177,42.403,42.517,42.547,42.565,42.509,42.54,42.514,42.508,42.594,42.608,42.638,42.633,42.634,42.578,42.625,42.424,42.376,42.354,42.291,42.198,41.955,41.946,41.934,41.854,41.87,41.878,41.805,41.787,41.795,41.625,41.617,41.604,41.523,41.502,41.524,41.529,41.481,41.433,41.446,41.396,41.375,41.369,41.297,41.203,41.402,41.419,41.494,41.473,41.415,41.602,41.579,41.593,41.646,41.579,41.53,41.53,41.454,41.428,41.463,41.456,41.425,41.464,41.534,41.365,41.422,41.306,41.303,41.32,41.326,41.357,41.316,41.48,41.584,41.567,41.583,41.541,41.517,41.503,41.52,41.505,41.479,41.468,41.47,41.448,41.495,41.551,41.481,41.503,41.49,41.492,41.522,41.472,41.532,41.529,41.701,41.698,41.689,41.677,41.63,41.695,41.661,41.638,41.631,41.47,41.486,41.575,41.649,41.636,41.63,41.53,41.413,41.393,41.405,41.436,41.477,41.571,41.612,41.605,41.568,41.566,41.602,41.647,41.631,41.486,41.504,41.5,41.519,41.546,41.488,41.456,41.402,41.39,41.521,41.521,41.399,41.319,41.365,41.397,41.471,41.541,41.652,41.662,41.625,41.594,41.654,41.539,41.567,41.509,41.483,41.361,41.369,41.353,41.518,41.492,41.529,41.525,41.564,41.503,41.558,41.617,41.63,41.641,41.622,41.701,41.759,41.674,41.691,41.705,41.788,41.696,41.676,41.648,41.679,41.574,41.645,41.644,41.774,41.757,41.86,41.92,41.92,41.896,41.967,41.789,41.824,41.793,41.917,41.927,41.866,41.869,41.904,41.801,41.822,41.848,41.953,41.932,41.975,41.976,42.011,42.008,42.045,41.976,42.033,41.995,41.902,41.821,41.926,41.961,41.866,41.906,41.851,41.796,41.816,41.839,41.849,41.819,41.778,41.748,41.65,41.611,41.703,41.566,41.593,41.511,41.56,41.547,41.492,41.312,41.386,41.355,41.382,41.39,41.375,41.471,41.511,41.434,41.329,41.39,41.359,41.399,41.422,41.543,41.365,41.394,41.41,41.453,41.495,41.623,41.569,41.544,41.681,41.681,41.741,41.688,41.658,41.67,41.715,41.684,41.721,41.749,41.778,41.839,41.861,41.845,41.814,41.853,41.841,41.643,41.694,41.626,41.611,41.737,41.724,41.727,41.681,41.626,41.579,41.637,41.672,41.69,41.662,41.636,41.613,41.603,41.63,41.602,41.582,41.523,41.532,41.495,41.425,41.345,41.366,41.467,41.531,41.513,41.749,41.763,41.716,41.677,41.697,41.681,41.652,41.667,41.759,41.848,41.828,41.718,41.633,41.596,41.632,41.648,41.7,41.725,41.892,41.917,41.934,41.866,41.751,41.74,41.797,41.763,41.711,41.712,41.599,41.529,41.428,41.489,41.545,41.571,41.521,41.561,41.562,41.546,41.533,41.508,41.567,41.553,41.591,41.429,41.448,41.434,41.42,41.406,41.377,41.407,41.442,41.566,41.619,41.619,41.65,41.6,41.622,41.73,41.673,41.737,41.64,41.64,41.616,41.644,41.627,41.674,41.646,41.528,41.589,41.647,41.729,41.757,41.897,41.895,41.89,41.876,41.762,41.778,41.709,41.707,41.654,41.635,41.667,41.686,41.721,41.696,41.686,41.763,41.623,41.705,41.699,41.695,41.659,41.676,41.534,41.564,41.601,41.609,41.563,41.552,41.519,41.499,41.481,41.472,41.459,41.552,41.531,41.57,41.556,41.581,41.608,41.483,41.424,41.411,41.342,41.356,41.322]
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" 36 --> 48
    line [43.428,43.379,43.362,43.414,43.217,43.233,43.298,43.33,43.313,43.22,43.264,43.145,43.226,43.428,43.344,43.357,43.471,43.357,43.318,43.318,43.28,43.27,43.212,43.173,43.117,43.111,43.08,42.962,42.844,42.852,43.025,43.006,43.023,42.978,42.864,42.789,42.661,42.608,42.53,42.29,42.254,42.182,42.074,42.167,42.074,41.763,41.681,41.843,41.938,41.972,41.927,41.909,41.915,41.986,41.83,41.812,42.004,42.001,42.021,41.842,41.809,41.777,41.829,41.8,41.883,41.991,42.23,42.227,42.184,42.253,42.244,42.22,42.25,42.454,42.485,42.554,42.482,42.463,42.534,42.472,42.5,42.421,42.336,42.387,42.287,42.594,42.644,42.5,42.49,42.513,42.635,42.666,42.79,42.901,42.871,42.65,42.732,42.873,42.755,42.777,42.787,42.69,42.49,42.559,42.571,42.414,42.277,42.056,42.219,42.258,42.362,42.42,42.4,42.416,41.967,42.035,42.159,42.221,42.237,42.119,42.241,42.137,41.983,41.951,42.06,42.004,42.065,42.217,42.252,42.248,42.316,42.299,42.312,42.428,42.583,42.673,42.703,42.692,42.692,42.63,42.68,42.62,42.632,42.556,42.383,42.542,42.51,42.537,42.384,42.121,42.157,42.08,41.963,41.926,41.994,41.905,41.842,41.83,41.752,41.69,41.666,41.668,41.581,41.553,41.402,41.518,41.672,41.803,41.768,41.532,41.644,41.468,41.589,41.678,41.448,41.402,41.549,41.797,41.891,41.99,42.064,42.226,42.119,41.987,41.981,41.945,41.801,41.996,41.927,41.959,41.894,41.822,41.791,41.878,41.719,41.5,41.315,41.431,41.554,41.422,41.65,41.534,41.568,41.48,41.498,41.405,41.26,41.199,41.117,41.102,41.024,41.067,41.115,41.28,41.321,41.43,41.239,41.233,41.232,41.07,41.106,41.106,41.22,41.441,41.513,41.511,41.505,41.656,41.685,41.631,41.774,41.772,41.865,41.784,41.677,41.82,41.821,41.909,41.79,41.768,41.84,41.846,41.634,41.575,41.515,41.603,41.68,41.781,42.114,42.097,42.163,42.026,42.035,42.024,41.986,41.879,41.668,41.717,41.501,41.383,41.55,41.543,41.599,41.549,41.33,41.209,41.151,41.203,41.184,41.056,41.068,41.068,41.131,41.254,41.193,41.193,41.004,40.947,40.839,40.75,40.841,40.73,40.876,40.944,40.9,40.971,40.931,41.123,41.249,41.037,40.91,40.978,41.304,41.413,41.532,41.532,41.451,41.449,41.491,41.479,41.604,41.613,41.731,41.621,41.651,41.629,41.421,41.539,41.668,41.633,41.688,41.545,41.504,41.561,41.533,41.716,41.534,41.462,41.535,41.77,41.866,41.659,41.555,41.525,41.49,41.635,41.54,41.754,41.755,41.705,41.716,41.453,41.589,41.572,41.654,41.739,41.819,41.923,42.008,42.104,42.114,42.132,42.063,42.021,41.913,41.973,42.076,41.874,41.859,41.591,41.532,41.539,41.711,41.682,41.661,41.807,41.614,41.594,41.614,41.559,41.559,41.58,41.605,41.508,41.343,41.171,40.874,40.757,40.628,40.595,40.659,40.819,40.863,40.881,40.96,40.897,41.062,41.011,41.124,40.854,40.932,40.596,40.564,40.633,40.437,40.376,40.529,40.433,40.437,40.461,40.485,40.461,40.58,40.771,40.872,41.056,41.104,41.052,41.27,41.227,41.236,41.279,41.27,41.247,41.135,41.13,40.977,41.122,41.338,41.291,41.338,41.409,41.361,41.337,41.384,41.334,41.356,41.424,41.493,41.542,41.583,41.542,41.406,41.316,41.16,41.126,41.019,40.833,40.936,41.052,41,41.086,41.085,41.037,41.033,41.173,40.966,41.078,41.1,41.143,41.185,41.25,41.362,41.383,41.53,41.489,41.46,41.413,41.325,41.284,41.392,41.471,41.533,41.465,41.493,41.705,41.72,41.752,41.674,41.755,41.644,41.659,41.762,41.614,41.55,41.588,41.565,41.487,41.565,41.519,41.478,41.532,41.564,41.416,41.481,41.398,41.54,41.499,41.621,41.472,41.543,41.523,41.528,41.483,41.479,41.448,41.384,41.335,41.297,41.213,41.174,41.158,41.398,41.352,41.4,41.338,41.367,41.335,41.363,41.323,41.203,41.124,40.937,41.145,41.292,41.07,41.091,41.007,41.112,40.915,40.784,40.906,40.801,40.676,40.793,40.726,40.91,40.978,41.131,41.044,41.088,40.948,41.165,41.057,41.094,41.101,41.056,41.132,41.132,41.293,41.317,41.473,41.246,41.084,41.155,41.08,41.105,41.109,41.302,41.437,41.323,41.447,41.405,41.394,41.214,41.093,41.072,40.841,40.949,40.883,40.883,40.725,41.15,41.171,41.147,41.201,41.051,41.029,40.87,40.86,40.738,40.847,40.858,40.986,40.954,40.864,40.836,40.717,40.731,40.817,40.769,40.746,40.769,40.956,40.899,40.837,40.975,40.987,41.057,41.05,41.101,40.712,40.647,40.759,40.681,40.685,40.734,40.885,40.892]
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.

1 participant