OceanBase logo

OceanBase

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

Product Overview
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

OceanBase

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

Product Overview
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.3.3

    Download PDF

    OceanBase logo

    The Unified Distributed Database for the AI Era.

    Follow Us
    Products
    OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
    Resources
    DocsBlogWhite PaperLive DemosTraining & CertificationTicket
    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.3.3
    iconOceanBase Database
    SQL - V 4.3.3
    Databases
    • OceanBase Database
    • OceanBase Cloud
    • OceanBase Tugraph
    • Interactive Tutorials
    • OceanBase Best Practices
    Tools
    • OceanBase Cloud Platform
    • OceanBase Migration Service
    • OceanBase Developer Center
    • OceanBase Migration Assessment
    • OceanBase Admin Tool
    • OceanBase Loader and Dumper
    • OceanBase Deployer
    • Kubernetes operator for OceanBase
    • OceanBase Diagnostic Tool
    • OceanBase Binlog Service
    Connectors and Middleware
    • OceanBase Database Proxy
    • Embedded SQL in C for OceanBase
    • OceanBase Call Interface
    • OceanBase Connector/C
    • OceanBase Connector/J
    • OceanBase Connector/ODBC
    • OceanBase Connector/NET
    SQL
    KV
    • V 4.6.0
    • 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

    GV$OB_PARAMETERS

    Last Updated:2024-12-02 03:48:27  Updated
    Share
    What is on this page
    Purpose
    Columns
    Sample query
    References

    folded

    Share

    Note

    This view was introduced in OceanBase Database V4.0.0.

    Purpose

    The GV$OB_PARAMETERS view displays the parameters on all OBServer nodes of the current tenant.

    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.
    ZONE varchar(128) NO The name of the zone.
    SCOPE varchar(64) NO The scope of the parameter. Valid values:
  • CLUSTER: indicates a cluster-level parameter.
  • TENANT: indicates a tenant-level parameter.
  • TENANT_ID bigint(20) YES The ID of the tenant. Valid values:
  • NULL: indicates that the parameter does not belong to any tenant.
  • Other valid values: indicates the ID of the tenant.
  • NAME varchar(128) NO The name of the parameter.
    DATA_TYPE varchar(128) YES The type of the parameter value.

    Note

    The value of this column has been changed from NULL to a specific data type since OceanBase Database V4.3.0.

    VALUE varchar(65536) NO The value of the parameter.
    INFO varchar(4096) NO The description of the parameter.
    SECTION varchar(128) NO The module to which the parameter belongs.
    EDIT_LEVEL varchar(128) NO The way for the parameter modification to take effect. Valid values:
  • READONLY: The parameter is read-only and cannot be modified.
  • STATIC_EFFECTIVE: The parameter modification takes effect upon a restart.
  • DYNAMIC_EFFECTIVE: The parameter modification takes effect dynamically.
  • DEFAULT_VALUE varchar(65536) NO The default value of the parameter.

    Note

    • For OceanBase Database V4.3.x, this column was introduced in OceanBase Database V4.3.1.
    • For OceanBase Database V4.2.x, this column was introduced in OceanBase Database V4.2.2.
    ISDEFAULT varchar(3) NO Indicates whether the current value is the default value. Valid values:
    • NO: The current value is not the default value.
    • YES: The current value is the default value.

    Note

    • For OceanBase Database V4.3.x, this column was introduced in OceanBase Database V4.3.1.
    • For OceanBase Database V4.2.x, this column was introduced in OceanBase Database V4.2.2.

    The following table describes the valid values of the DATA_TYPE column.

    Column value
    Description
    Example (in the NAME=VALUE format)
    BOOL A Boolean value. enable_ddl=True
    INT An integer. log_disk_percentage=1
    DOUBLE A floating-point number. server_cpu_quota_min=1.0
    STRING A string. leak_mod_to_check='NONE'
    STR_LIST A list of strings separated with semicolons (;). config_additional_dir='etc2;etc3'
    TIME A period of time. merger_check_interval='10m'
    MOMENT A point in time. major_freeze_duty_time='02:00'
    CAPACITY A capacity, for example, 3M or 5G. log_disk_size='0M'
    VERSION A version. compatible='4.3.0.0'
    MODE Indicates whether certain features of OBKV are enabled or disabled. _obkv_feature_mode = 'ttl=off, rerouting=on'

    Sample query

    Query the large_query_threshold parameter on all OBServer nodes of the current tenant.

    obclient [oceanbase]> SELECT * FROM oceanbase.GV$OB_PARAMETERS WHERE NAME LIKE '%large_query_threshold%'\G
    

    The query result is as follows:

    *************************** 1. row ***************************
           SVR_IP: 11.xx.xx.xx
         SVR_PORT: 12615
             ZONE: z1
            SCOPE: CLUSTER
        TENANT_ID: NULL
             NAME: large_query_threshold
        DATA_TYPE: TIME
            VALUE: 5s
             INFO: threshold for execution time beyond which a request may be paused and rescheduled as a \'large request\', 0ms means disable \'large request\'. Range: [0ms, +∞)
          SECTION: TENANT
       EDIT_LEVEL: DYNAMIC_EFFECTIVE
    DEFAULT_VALUE: 5s
        ISDEFAULT: YES
    1 row in set
    

    References

    • V$OB_PARAMETERS
    • Overview

    Previous topic

    GV$OB_RPC_OUTGOING
    Last

    Next topic

    GV$OB_PLAN_CACHE_PLAN_EXPLAIN
    Next
    What is on this page
    Purpose
    Columns
    Sample query
    References