OceanBase logo

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Resources

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS

OceanBase Cloud

OceanBase Database

Tools

Connectors and Middleware

QUICK START

OceanBase Cloud

OceanBase Database

BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Company

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

International - English
中国站 - 简体中文
日本 - 日本語
Sign In
Start on Cloud

A unified distributed database ready for your transactional, analytical, and AI workloads.

DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS
OceanBase CloudOceanBase Database
ToolsConnectors and Middleware
QUICK START
OceanBase CloudOceanBase Database
BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

Start on Cloud
编组
All Products
    • Databases
    • iconOceanBase Database
    • iconOceanBase Cloud
    • iconOceanBase Tugraph
    • iconInteractive Tutorials
    • iconOceanBase Best Practices
    • Tools
    • iconOceanBase Cloud Platform
    • iconOceanBase Migration Service
    • iconOceanBase Developer Center
    • iconOceanBase Migration Assessment
    • iconOceanBase Admin Tool
    • iconOceanBase Loader and Dumper
    • iconOceanBase Deployer
    • iconKubernetes operator for OceanBase
    • iconOceanBase Diagnostic Tool
    • iconOceanBase Binlog Service
    • Connectors and Middleware
    • iconOceanBase Database Proxy
    • iconEmbedded SQL in C for OceanBase
    • iconOceanBase Call Interface
    • iconOceanBase Connector/C
    • iconOceanBase Connector/J
    • iconOceanBase Connector/ODBC
    • iconOceanBase Connector/NET
icon

OceanBase Database

SQL - V4.4.2

    Download PDF

    OceanBase logo

    The Unified Distributed Database for the AI Era.

    Follow Us
    Products
    OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
    Resources
    DocsBlogLive DemosTraining & Certification
    Company
    About OceanBaseTrust CenterLegalPartnerContact Us
    Follow Us

    © OceanBase 2026. All rights reserved

    Cloud Service AgreementPrivacy PolicySecurity
    Contact Us
    Document Feedback
    1. Documentation Center
    2. OceanBase Database
    3. SQL
    4. V4.4.2
    iconOceanBase Database
    SQL - V 4.4.2
    SQL
    KV
    • V 4.4.2
    • V 4.3.5
    • V 4.3.3
    • V 4.3.1
    • V 4.3.0
    • V 4.2.5
    • V 4.2.2
    • V 4.2.1
    • V 4.2.0
    • V 4.1.0
    • V 4.0.0
    • V 3.1.4 and earlier

    V$OB_SS_OBJECT_TYPE_IO_STAT

    Last Updated:2026-04-14 03:51:52  Updated
    share
    What is on this page
    Purpose
    Columns
    Sample query

    folded

    share

    Note

    This view is available starting with V4.4.1.

    Purpose

    The V$OB_SS_OBJECT_TYPE_IO_STAT view displays the read, write, and delete usage of different types of objects in a tenant on the current node.

    Note

    This view is available only in Shared-Storage (SS) mode. In Shared-Nothing (SN) mode, the query result is empty.

    Columns

    Column Type Nullable Description
    SVR_IP varchar(46) NO The IP address of the OBServer node.
    SVR_PORT bigint(20) NO The port number of the OBServer node.
    TENANT_ID bigint(20) NO The tenant ID.
    OBJECT_TYPE varchar(128) NO The type of the object.
    MODE varchar(32) NO The source of the statistics.
    • local: local
    • remote: object storage
    READ_CNT bigint(20) NO The total number of I/O reads.
    READ_SIZE bigint(20) NO The total size of I/O reads, in bytes.
    READ_FAIL_CNT bigint(20) NO The total number of failed I/O reads.
    READ_IOPS bigint(20) NO The average IOPS of I/O reads.
    WRITE_CNT bigint(20) NO The total number of I/O writes.
    WRITE_SIZE bigint(20) NO The total size of I/O writes, in bytes.
    WRITE_FAIL_CNT bigint(20) NO The total number of failed I/O writes.
    WRITE_IOPS bigint(20) NO The average IOPS of I/O writes.
    DELETE_CNT bigint(20) NO The total number of object deletions.
    DELETE_FAIL_CNT bigint(20) NO The total number of failed object deletions.
    DELETE_IOPS bigint(20) NO The IOPS of object deletions.

    Sample query

    Query the read, write, and delete usage of different types of objects in tenant 1002 on the current node.

    obclient(root@sys)[oceanbase]> SELECT * FROM oceanbase.V$OB_SS_OBJECT_TYPE_IO_STAT WHERE tenant_id = 1002 LIMIT 10;
    

    The query result is as follows:

    +--------------+----------+-----------+----------------------------------------+--------+----------+-----------+---------------+-----------+-----------+------------+----------------+------------+------------+-----------------+-------------+
    | svr_ip       | svr_port | tenant_id | object_type                            | mode   | read_cnt | read_size | read_fail_cnt | read_iops | write_cnt | write_size | write_fail_cnt | write_iops | delete_cnt | delete_fail_cnt | delete_iops |
    +--------------+----------+-----------+----------------------------------------+--------+----------+-----------+---------------+-----------+-----------+------------+----------------+------------+------------+-----------------+-------------+
    | 6.xx.xxx.xxx |     1624 |      1002 | PRIVATE_DATA_MACRO                     | local  |     4433 |  76896007 |             0 |         0 |      1036 |   31776768 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | PRIVATE_META_MACRO                     | local  |     6542 |   3381103 |             0 |         0 |      2336 |    9797632 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SHARED_MINI_DATA_MACRO                 | local  |        9 |    183870 |             0 |         0 |         2 |     372736 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SHARED_MINI_META_MACRO                 | local  |        0 |         0 |             0 |         0 |         0 |          0 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SHARED_MINOR_DATA_MACRO                | local  |      153 |  21247181 |             0 |         0 |        35 |   27193344 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SHARED_MINOR_META_MACRO                | local  |        0 |         0 |             0 |         0 |         0 |          0 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SHARED_MAJOR_DATA_MACRO                | local  |      107 |   1718682 |             0 |         0 |         0 |          0 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SHARED_MAJOR_META_MACRO                | local  |        0 |         0 |             0 |         0 |         0 |          0 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | TMP_FILE                               | local  |        0 |         0 |             0 |         0 |         0 |          0 |              0 |          0 |          0 |               0 |           0 |
    | 6.xx.xxx.xxx |     1624 |      1002 | SERVER_META                            | local  |        0 |         0 |             0 |         0 |         0 |          0 |              0 |          0 |          0 |               0 |           0 |
    +--------------+----------+-----------+----------------------------------------+--------+----------+-----------+---------------+-----------+-----------+------------+----------------+------------+------------+-----------------+-------------+
    10 rows in set
    

    Previous topic

    V$OB_SS_LOCAL_CACHE
    Last

    Next topic

    V$OB_STORAGE_CACHE_TASKS
    Next
    What is on this page
    Purpose
    Columns
    Sample query