diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index 3ba19e7224618f55717d60568713b64d7938252e..0000000000000000000000000000000000000000 --- a/docs/README.md +++ /dev/null @@ -1,52 +0,0 @@ -# Build documentation with MkDocs - -OceanBase documentation is built with [MkDocs](https://www.mkdocs.org/). You can check [`mkdocs.yml`](mkdocs.yml) for more information. -Please install MkDocs according to [the installation documents of MkDocs](https://www.mkdocs.org/user-guide/installation/) - -## Requirements - -Before installing dependencies, please make sure you have installed a recent version of Python 3 and pip. - -Then you can run the following command in your terminal at current directory: - -``` -$ pip install -r requirements.txt -``` -## Build the documentation - -You can build the documentation by running the following command: - -``` -$ mkdocs build -``` - -This will create a new directory to store the output files, which is `site/` by default. - -## Start a server locally - -You can start a server locally by running the following command: - -``` -$ mkdocs serve -``` -Open up http://127.0.0.1:8000/ in your browser, and you'll see the default home page. - -## Modify pages - -### Edit a page - -If you want to modify the content of a page, you can edit the markdown file in `docs/` directory directly. - -### Modify the layout of pages - -To modify the layout of pages, you need to edit `mkdocs.yml`. - -For configuration details, see [MkDocs User Guide](https://www.mkdocs.org/user-guide/configuration/). - -Note the following rules when editing documents: -- All paths in `nav` must be relative to the `docs_dir`, which is `docs` by default. So here `./` is equivalent to [docs](docs). -- All internal links must be relative paths, as MkDocs only supports regular Markdown linking syntax. - -## Contribute - -See [How to contribute](wiki/how_to_contribute) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml deleted file mode 100644 index a3e09119f43f7c92a776585c8e1e0d9ea739b7de..0000000000000000000000000000000000000000 --- a/docs/mkdocs.yml +++ /dev/null @@ -1,1260 +0,0 @@ -site_name: OceanBase -repo_url: 'https://github.com/oceanbase/oceanbase' -repo_name: 'OceanBase' -edit_uri: 'edit/master/docs/docs/' - -theme: - name: oceanbase_theme - features: - - navigation.tabs - - navigation.top - - # Static files - static_templates: - - 404.html - - # Don't include MkDocs' JavaScript - include_search_page: false - search_index_only: true - - # Default values, taken from mkdocs_theme.yml - language: en - palette: - - scheme: default - primary: indigo - accent: indigo - toggle: - icon: material/toggle-switch-off-outline - name: Switch to dark mode - - scheme: slate - primary: red - accent: red - toggle: - icon: material/toggle-switch - name: Switch to light mode - font: - text: Roboto - code: Roboto Mono - favicon: assets/favicon.png - icon: - logo: logo - -# Plugins -plugins: - - search: - # use Japanese to support Chinese, see https://www.mkdocs.org/user-guide/configuration/#lang - lang: ja - -# Customization -extra: - - social: - - icon: fontawesome/brands/github - link: https://github.com/oceanbase/oceanbase - - icon: fontawesome/brands/gitee2 - link: https://gitee.com/oceanbase - - icon: fontawesome/brands/微博 - link: https://weibo.com/6281091917/profile?topnav=1&wvr=6&is_all=1 - - icon: fontawesome/brands/知乎 - link: https://www.zhihu.com/people/pi-pi-xia-45-56/ - - icon: fontawesome/brands/博客 - link: https://open.oceanbase.com/articles - -# Extensions -markdown_extensions: - - admonition - - abbr - - attr_list - - def_list - - footnotes - - meta - - md_in_html - - toc: - permalink: true - - pymdownx.arithmatex: - generic: true - - pymdownx.betterem: - smart_enable: all - - pymdownx.caret - - pymdownx.details - - pymdownx.emoji: - emoji_index: !!python/name:materialx.emoji.twemoji - emoji_generator: !!python/name:materialx.emoji.to_svg - - pymdownx.highlight - - pymdownx.inlinehilite - - pymdownx.keys - - pymdownx.magiclink: - repo_url_shorthand: true - user: squidfunk - repo: mkdocs-material - - pymdownx.mark - - pymdownx.smartsymbols - - pymdownx.superfences: - custom_fences: - - name: mermaid - class: mermaid-experimental - format: !!python/name:pymdownx.superfences.fence_code_format - - pymdownx.tabbed - - pymdownx.tasklist: - custom_checkbox: true - - pymdownx.tilde - -nav: - - 快速上手: docs-cn/quick-start-cn.md - - - 文档: - - 了解 OceanBase 数据库: - - 什么是 OceanBase 数据库: docs-cn/1.about-oceanbase-database/1.what-is-oceanbase.md - - 名词解释: docs-cn/1.about-oceanbase-database/2.noun-interpretation.md - - 快速入门: - - 快速入门指南: docs-cn/2.quickstart/1.quick-start-guide-1.md - - 在 CentOS7 镜像上部署 OceanBase 数据库: docs-cn/2.quickstart/2.deploy-an-oceanbase-database-by-using-docker.md - - 安装 OBD: docs-cn/2.quickstart/3.use-obd-to-obtain-the-oceanbase-database.md - - 使用 OBD 部署 OceanBase 数据库: docs-cn/2.quickstart/4.deploy-the-oceanbase-database-by-using-obd.md - - OceanBase 数据库通用问题排查方法: docs-cn/2.quickstart/5.sgco3g.md - - 基本操作: - - 数据库操作: docs-cn/2.quickstart/6.basic-operations/1.database-operations.md - - 表操作: docs-cn/2.quickstart/6.basic-operations/2.table-operations.md - - 索引操作: docs-cn/2.quickstart/6.basic-operations/3.index-operations.md - - 插入数据: docs-cn/2.quickstart/6.basic-operations/4.insert-data.md - - 删除数据: docs-cn/2.quickstart/6.basic-operations/5.delete-data.md - - 更新数据: docs-cn/2.quickstart/6.basic-operations/6.update-data.md - - 查询数据: docs-cn/2.quickstart/6.basic-operations/7.query-data.md - - 提交事务: docs-cn/2.quickstart/6.basic-operations/8.submit-transaction.md - - 回滚事务: docs-cn/2.quickstart/6.basic-operations/9.roll-back-transactions.md - - 性能白皮书: - - OceanBase 数据库 TPC-H 测试: docs-cn/3.performance-white-paper/1.tpch-test-for-oceanbase.md - - OceanBase TPC-H 性能测试报告: docs-cn/3.performance-white-paper/2.wtu4kv.md - - OceanBase 数据库 Sysbench 测试: docs-cn/3.performance-white-paper/3.sysbench-test-for-oceanbase.md - - OceanBase Sysbench 性能测试报告: docs-cn/3.performance-white-paper/4.nom3d5.md - - OceanBase 数据库 TPC-C 测试: docs-cn/3.performance-white-paper/5.test-the-tpc-c-of-apsaradb-for-oceanbase.md - - OceanBase TPC-C 性能测试报告: docs-cn/3.performance-white-paper/6.mcso3a.md - - 安装和部署: - - 生产环境部署 OceanBase 数据库: docs-cn/4.installation-and-deployment/1.deploy-the-distributed-oceanbase-cluster.md - - 生产环境推荐配置: docs-cn/4.installation-and-deployment/recommend-config-for-production.md - - 安装包下载说明: docs-cn/4.installation-and-deployment/2.instructions-for-downloading-the-installation-package.md - - 资源准备: docs-cn/4.installation-and-deployment/3.resource-preparation.md - - (可选)查看资源: docs-cn/4.installation-and-deployment/4.optional-check-the-operating-system.md - - (可选)设置无密码 SSH 登录: docs-cn/4.installation-and-deployment/5.optional-set-password-free-ssh-logon.md - - (可选)配置时钟源: docs-cn/4.installation-and-deployment/6.optional-configuring-clock-sources.md - - (可选)规划磁盘: docs-cn/4.installation-and-deployment/7.disk-planning.md - - (可选)配置 limits.conf: docs-cn/4.installation-and-deployment/8.optional-configure-limits-conf.md - - (可选)配置 sysctl.conf: docs-cn/4.installation-and-deployment/9.optional-configure-sysctl-conf.md - - (可选)关闭防火墙和 SELinux: docs-cn/4.installation-and-deployment/10.optional-disable-the-firewall-and-selinux.md - - (可选)创建用户: docs-cn/4.installation-and-deployment/11.optional-create-a-user.md - - 使用 RPM 包安装 OceanBase 数据库: docs-cn/4.installation-and-deployment/12.install-the-oceanbase-database-by-using-the-rpm-package.md - - 使用源码构建 OceanBase 数据库: docs-cn/4.installation-and-deployment/13.get-the-oceanbase-database-by-using-source-code.md - - 手动部署 OceanBase 数据库: docs-cn/4.installation-and-deployment/deploy-oceanbase-manually.md - - 安装路径说明: docs-cn/4.installation-and-deployment/installation-directory.md - - 概括: - - 整体架构: docs-cn/5.overview/1.overall-architecture.md - - 数据分布: - - 集群管理: docs-cn/5.overview/2.data-distribution/1.cluster-management.md - - 租户与资源管理: docs-cn/5.overview/2.data-distribution/2.tenants-and-resource-management.md - - 数据分布: docs-cn/5.overview/2.data-distribution/3.data-distribution-1.md - - 数据副本与服务: docs-cn/5.overview/2.data-distribution/4.data-copy-and-service.md - - 数据均衡: docs-cn/5.overview/2.data-distribution/5.data-balancing.md - - 数据模型: - - 多租户架构: docs-cn/5.overview/3.data-model/1.multi-tenant-architecture.md - - 系统租户: docs-cn/5.overview/3.data-model/3.system-tenants.md - - 普通租户: docs-cn/5.overview/3.data-model/4.common-tenant.md - - 表格和表组: docs-cn/5.overview/3.data-model/5.tables-and-table-groups.md - - 二级索引: docs-cn/5.overview/3.data-model/6.secondary-index.md - - 无主键表: docs-cn/5.overview/3.data-model/7.tables-without-a-primary-key.md - - 视图: docs-cn/5.overview/3.data-model/8.view.md - - 高可用: - - 高可用方案: docs-cn/5.overview/4.high-availability/1.high-availability-solution.md - - 部署模式: docs-cn/5.overview/4.high-availability/2.deployment.md - - redo 日志管理控制: docs-cn/5.overview/4.high-availability/3.redo-log-management-and-control.md - - 事务管理: - - 隔离级别: docs-cn/5.overview/5.transaction-management-1/1.isolation-level.md - - 并发控制: docs-cn/5.overview/5.transaction-management-1/2.concurrency-control.md - - 全局时间戳服务: docs-cn/5.overview/5.transaction-management-1/3.global-timestamp-service.md - - 本地事务: docs-cn/5.overview/5.transaction-management-1/4.local-transaction.md - - 分布式事务: docs-cn/5.overview/5.transaction-management-1/5.distributed-transactions.md - - 分布式查询: docs-cn/5.overview/5.transaction-management-1/6.distributed-query.md - - 存储架构: - - 概述: docs-cn/5.overview/6.storage-architecture/1.overview-1.md - - LSM Tree 架构: docs-cn/5.overview/6.storage-architecture/2.lsm-tree-architecture.md - - 内存表 MEMTable: docs-cn/5.overview/6.storage-architecture/3.memory-table.md - - 块存储 SSTable: docs-cn/5.overview/6.storage-architecture/4.block-storage-sstable.md - - 转储和合并: docs-cn/5.overview/6.storage-architecture/5.dump-and-merge.md - - 缓存机制: docs-cn/5.overview/6.storage-architecture/6.caching-mechanism.md - - 读写流程: docs-cn/5.overview/6.storage-architecture/7.read-and-write-process.md - - DDL: docs-cn/5.overview/6.storage-architecture/8.DDL.md - - SQL引擎: - - SQL 请求执行流程: docs-cn/5.overview/7.sql-engine-1/1.sql-request-execution-process-1.md - - 查询改写: - - 概述: docs-cn/5.overview/7.sql-engine-1/2.query-rewrite-1/1.overview-9.md - - 基于规则的查询改写: docs-cn/5.overview/7.sql-engine-1/2.query-rewrite-1/2.rule-based-query-rewriting-1.md - - 基于代价的查询改写: docs-cn/5.overview/7.sql-engine-1/2.query-rewrite-1/3.cost-based-query-rewriting-1.md - - 查询优化: - - 访问路径: - - 概述: docs-cn/5.overview/7.sql-engine-1/3.query-optimization/1.access-path-1/1.overview-10.md - - 基于规则的路径选择: docs-cn/5.overview/7.sql-engine-1/3.query-optimization/1.access-path-1/2.rule-based-path-selection-1.md - - 基于代价的路径选择: docs-cn/5.overview/7.sql-engine-1/3.query-optimization/1.access-path-1/3.cost-based-path-selection-1.md - - 联接算法: - - 概述: docs-cn/5.overview/7.sql-engine-1/3.query-optimization/2.join-algorithm-1/1.overview-11.md - - 联接算法: docs-cn/5.overview/7.sql-engine-1/3.query-optimization/2.join-algorithm-1/2.join-algorithm-4.md - - 联接顺序: docs-cn/5.overview/7.sql-engine-1/3.query-optimization/2.join-algorithm-1/3.join-order-1.md - - SQL执行计划: - - SQL 执行计划简介: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/1.introduction-to-sql-execution-plans.md - - 执行计划操作: - - TABLE SCAN: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/1.table-scan.md - - TABLE LOOKUP: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/2.table-lookup.md - - JOIN: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/3.JOIN.md - - COUNT: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/4.COUNT-1-2.md - - GROUP BY: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/5.group-by.md - - WINDOW FUNCTION: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/6.window-function.md - - SUBPLAN FILTER: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/7.subplan-filter.md - - DISTINCT: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/8.DISTINCT.md - - SEQUENCE: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/9.SEQUENCE.md - - MATERIAL: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/10.MATERIAL.md - - SORT: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/11.SORT.md - - LIMIT: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/12.LIMIT-1.md - - FOR UPDATE: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/13.for-update.md - - SELECT INTO: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/14.select-into.md - - SUBPLAN SCAN: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/15.subplan-scan.md - - UNION: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/16.UNION.md - - INTERSECT: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/17.INTERSECT.md - - EXCEPT/MINUS: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/18.except-minus.md - - INSERT: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/19.INSERT-1-2.md - - DELETE: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/20.DELETE-1-2.md - - UPDATE: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/21.UPDATE-1-2.md - - MERGE: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/22.MERGE-1.md - - EXCHANGE: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/23.EXCHANGE.md - - GI: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/2.execution-plan-operator/24.GI.md - - 执行计划缓存: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/3.execution-plan-cache-2.md - - 快速参数化: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/4.fast-parameterization-1.md - - 实时执行计划展示: docs-cn/5.overview/7.sql-engine-1/4.sql-execution-plan-1/5.real-time-execution-plan-display-1.md - - 分布式执行计划: - - 分布式执行和并行查询: docs-cn/5.overview/7.sql-engine-1/5.distributed-execution-plan-1/1.distributed-execution-and-parallel-query-2.md - - 分布式计划的生成: docs-cn/5.overview/7.sql-engine-1/5.distributed-execution-plan-1/2.generation-of-distributed-plans-2.md - - 分布式执行计划调度: docs-cn/5.overview/7.sql-engine-1/5.distributed-execution-plan-1/3.distributed-execution-plan-scheduling-2.md - - 分布式执行计划管理: docs-cn/5.overview/7.sql-engine-1/5.distributed-execution-plan-1/4.distributed-execution-plan-management-1.md - - 并行查询的执行: docs-cn/5.overview/7.sql-engine-1/5.distributed-execution-plan-1/5.execution-of-parallel-query-1.md - - 并行查询的参数调优: docs-cn/5.overview/7.sql-engine-1/5.distributed-execution-plan-1/6.optimize-the-parameters-for-parallel-query-1.md - - SQ优化指南: - - SQL 请求执行流程: docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/1.sql-request-execution-process-2.md - - SQL 执行计划: - - SQL 执行计划简介: docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/1.introduction-to-sql-execution-plans-1.md - - 执行计划操作: - - TABLE SCAN : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/1.table-scan-1.md - - TABLE LOOKUP : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/2.table-lookup-1.md - - JOIN : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/3.JOIN-1.md - - COUNT : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/4.COUNT-1-2-3.md - - GROUP BY : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/5.group-by-1.md - - WINDOW FUNCTION : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/6.window-function-1.md - - SUBPLAN FILTER : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/7.subplan-filter-1.md - - DISTINCT : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/8.DISTINCT-1.md - - SEQUENCE : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/9.SEQUENCE-1.md - - MATERIAL : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/10.MATERIAL-1.md - - SORT : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/11.SORT-1.md - - FOR UPDATE : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/12.for-update-1.md - - SELECT INTO : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/13.select-into-1.md - - SUBPLAN SCAN : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/14.subplan-scan-1.md - - UNION : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/15.UNION-1.md - - INTERSECT : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/16.INTERSECT-1.md - - EXCEPT/MINUS : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/17.except-minus-1.md - - INSERT : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/18.INSERT-1-2-3.md - - DELETE : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/19.DELETE-1-2-3.md - - UPDATE : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/20.UPDATE-1-2-3.md - - MERGE : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/21.MERGE-1-2.md - - EXCHANGE : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/22.EXCHANGE-1.md - - GI : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/2.execution-plan-operator-1/23.GI-1.md - - 执行计划缓存 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/3.execution-plan-cache-3.md - - 快速参数化 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/4.fast-parameterization-2.md - - 实时执行计划展示 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/2.sql-execution-plan-2/5.real-time-execution-plan-display-2.md - - 分布式执行计划: - - 分布式执行和并行查询 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/3.distributed-execution-plan/1.distributed-execution-and-parallel-query-1.md - - 分布式计划的生成 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/3.distributed-execution-plan/2.generation-of-distributed-plans-1.md - - 分布式执行计划调度 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/3.distributed-execution-plan/3.distributed-execution-plan-scheduling-1.md - - 分布式执行计划管理 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/3.distributed-execution-plan/4.distributed-execution-plan-management.md - - 并行查询的执行 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/3.distributed-execution-plan/5.execution-of-parallel-query.md - - 并行查询的参数调优 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/3.distributed-execution-plan/6.optimize-the-parameters-for-parallel-query.md - - SQL 调优 : - - SQL 调优基本流程 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/1.optimize-sql-statements.md - - SQL 执行性能监控 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/1.sql-trace.md - - SQL 性能执行样例 : - - 通过 SQL Audit 分析查询中等待事件 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/1.analyze-events-waiting-in-a-query-using-sql-audit.md - - 分析 RT 突然抖动的 SQL : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/2.sql-statement-that-analyzes-sudden-jitter-of-rt.md - - 查看执行计划形状并做分析 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/3.view-and-analyze-the-execution-plan.md - - 分析慢 SQL 查询 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/4.analyze-slow-sql-queries.md - - 查询 SQL 流量分布情况及 QPS : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/5.query-sql-traffic-and-query-the-qps.md - - 查看集群 SQL 请求流量是否均衡 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/6.check-whether-the-sql-request-traffic-is-balanced.md - - 查询排名 TOP N 的 SQL : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/7.top-n-sql-statements.md - - 分析系统或某个 SQL 的执行是否出现大量不合理远程执行请求 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/8.analyze-whether-the-execution-of-the-system-or-an-sql.md - - 查找某个租户中执行全表扫描的 SQL : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/9.queries-the-sql-statements-that-are-used-for-full-table.md - - 查找某个租户中执行全表扫描的 SQL : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/10.query-the-top-n-requests-with-the-most-execution-time.md - - 分析分布式计划相关的查询问题 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/11.analyze-query-problems-related-to-distributed-plans.md - - 查看分布式子计划 RPC 执行数是否均衡 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/2.monitor-sql-execution-performance/2.sql-performance-analysis-example/12.check-whether-the-number-of-distributed-rpc-executions-is-balanced.md - - 查询改写: - - 概述 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/3.query-rewrite-2/1.overview-12.md - - 基于规则的查询改写 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/3.query-rewrite-2/2.rule-based-query-rewriting-2.md - - 基于代价的查询改写 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/3.query-rewrite-2/3.cost-based-query-rewriting-2.md - - 查询优化 : - - 访问路径 : - - 概述 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/4.query-optimization-1/1.access-path-2/1.overview-13.md - - 基于规则的路径选择 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/4.query-optimization-1/1.access-path-2/2.rule-based-path-selection-2.md - - 基于代价的路径选择 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/4.query-optimization-1/1.access-path-2/3.cost-based-path-selection-2.md - - 联接算法: - - 概述 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/4.query-optimization-1/2.join-algorithm-3/1.overview-14.md - - 联接顺序 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/4.query-optimization-1/2.join-algorithm-3/2.join-order-2.md - - 执行计划管理 : - - HINT 语法 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/5.manage-execution-plans/1.optimizer-hint.md - - 计划绑定 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/5.manage-execution-plans/2.plan-binding.md - - 执行计划管理 : docs-cn/5.overview/7.sql-engine-1/6.sql-optimization-guide/4.sql-optimization/5.manage-execution-plans/3.sql-execution-plan-management-spm.md - - SQL 引擎 : - - SQL 请求执行流程 : docs-cn/5.overview/8.sql-engine/1.sql-request-execution-process.md - - 查询改写 : - - 概述 : docs-cn/5.overview/8.sql-engine/2.query-rewrite/1.overview-2.md - - 基于规则的查询改写 : docs-cn/5.overview/8.sql-engine/2.query-rewrite/2.rule-based-query-rewriting.md - - 基于代价的查询改写 : docs-cn/5.overview/8.sql-engine/2.query-rewrite/3.cost-based-query-rewriting.md - - 访问路径 : - - 基本概念 : docs-cn/5.overview/8.sql-engine/3.access-path/1.basic-concepts.md - - 基于规则的路径选择 : docs-cn/5.overview/8.sql-engine/3.access-path/2.rule-based-path-selection.md - - 基于代价的路径选择 : docs-cn/5.overview/8.sql-engine/3.access-path/3.cost-based-path-selection.md - - 联接算法和子查询 : - - 基本概念 : docs-cn/5.overview/8.sql-engine/4.join-algorithms-and-subqueries/1.basic-concepts-1.md - - 联接算法 : docs-cn/5.overview/8.sql-engine/4.join-algorithms-and-subqueries/2.join-algorithm.md - - 联接类型 : docs-cn/5.overview/8.sql-engine/4.join-algorithms-and-subqueries/3.join-type.md - - 联接顺序 : docs-cn/5.overview/8.sql-engine/4.join-algorithms-and-subqueries/4.join-order.md - - 子查询 : docs-cn/5.overview/8.sql-engine/4.join-algorithms-and-subqueries/5.subquery.md - - SQL 执行计划 : - - 执行计划的基本概念 : docs-cn/5.overview/8.sql-engine/5.sql-execution-plan/1.basic-concepts-of-an-execution-plan.md - - 执行计划缓存 : docs-cn/5.overview/8.sql-engine/5.sql-execution-plan/2.execution-plan-cache.md - - 快速参数化 : docs-cn/5.overview/8.sql-engine/5.sql-execution-plan/3.fast-parameterization.md - - 执行计划展示 (EXPLAIN) : docs-cn/5.overview/8.sql-engine/5.sql-execution-plan/4.execution-plan-explain.md - - 实时执行计划展示 : docs-cn/5.overview/8.sql-engine/5.sql-execution-plan/5.real-time-execution-plan-display.md - - 分布式执行计划和调度 : - - 分布式执行和并行查询 : docs-cn/5.overview/8.sql-engine/6.distributed-execution-planning-and-scheduling/1.distributed-execution-and-parallel-query.md - - 分布式计划的生成 : docs-cn/5.overview/8.sql-engine/6.distributed-execution-planning-and-scheduling/2.generation-of-distributed-plans.md - - 分布式执行计划调度 : docs-cn/5.overview/8.sql-engine/6.distributed-execution-planning-and-scheduling/3.distributed-execution-plan-scheduling.md - - 分布式连接 : docs-cn/5.overview/8.sql-engine/6.distributed-execution-planning-and-scheduling/4.distributed-connection.md - - 分布式聚合下压 : docs-cn/5.overview/8.sql-engine/6.distributed-execution-planning-and-scheduling/5.distributed-aggregate-pressure-reduction.md - - 备份和恢复 : - - 概述 : docs-cn/5.overview/9.backup-and-recovery/1.overview-3.md - - 备份架构 : docs-cn/5.overview/9.backup-and-recovery/2.backup-architecture.md - - 恢复架构 : docs-cn/5.overview/9.backup-and-recovery/3.recovery-architecture.md - - Backup Set : docs-cn/5.overview/9.backup-and-recovery/4.backup-set.md - - Archive Log Round : docs-cn/5.overview/9.backup-and-recovery/5.archive-log-round.md - - 管理者指南 : - - 数据库基础组件介绍 : docs-cn/6.administrator-guide/1.basic-database-components-1.md - - 数据库管理工具 : - - OceanBase 客户端 : docs-cn/6.administrator-guide/2.database-management-tools-1/1.oceanbase-client-1.md - - MySQL 客户端 : docs-cn/6.administrator-guide/2.database-management-tools-1/2.mysql-client.md - - 基本的数据库管理 : - - OceanBase 集群管理 : - - 集群管理概述 : docs-cn/6.administrator-guide/3.basic-database-management/1.oceanbase-cluster-management/1.cluster-management-overview.md - - 集群参数管理 : - - 集群参数管理概述 : docs-cn/6.administrator-guide/3.basic-database-management/1.oceanbase-cluster-management/7.cluster-parameter-management/1.overview-of-cluster-parameter-management.md - - 查询集群参数 : docs-cn/6.administrator-guide/3.basic-database-management/1.oceanbase-cluster-management/7.cluster-parameter-management/2.you-can-call-this-operation-to-query-cluster-parameters.md - - 修改集群参数 : docs-cn/6.administrator-guide/3.basic-database-management/1.oceanbase-cluster-management/7.cluster-parameter-management/3.modify-cluster-parameters.md - - Zone 管理 : - - Zone 管理概述 : docs-cn/6.administrator-guide/3.basic-database-management/2.zone-management/1.zone-management-overview.md - - 增加或删除 Zone : docs-cn/6.administrator-guide/3.basic-database-management/2.zone-management/2.add-or-remove-a-zone.md - - 增加或删除加密 Zone : docs-cn/6.administrator-guide/3.basic-database-management/2.zone-management/3.add-or-delete-an-encrypted-zone.md - - 启动或停止 Zone : docs-cn/6.administrator-guide/3.basic-database-management/2.zone-management/4.start-or-stop-a-zone.md - - 修改 Zone : docs-cn/6.administrator-guide/3.basic-database-management/2.zone-management/5.modify-a-zone.md - - OBServer 管理 : - - OBServer 管理概述 : docs-cn/6.administrator-guide/3.basic-database-management/3.observer-management/1.observer-management-overview.md - - 查看 OBServer 状态 : docs-cn/6.administrator-guide/3.basic-database-management/3.observer-management/2.view-observer-status.md - - 停止 OBServer : docs-cn/6.administrator-guide/3.basic-database-management/3.observer-management/3.stop-observer.md - - 启动 OBServer : docs-cn/6.administrator-guide/3.basic-database-management/3.observer-management/4.start-observer.md - - 管理 OBServer 节点状态 : docs-cn/6.administrator-guide/3.basic-database-management/3.observer-management/5.manage-observer-node-status.md - - 资源管理: - - 资源管理概述 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/1.resource-management-overview.md - - 创建资源单元 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/2.create-a-resource-unit.md - - 查看资源单元 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/3.view-resource-units.md - - 修改资源单元 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/4.modify-a-resource-unit.md - - 删除资源单元 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/5.delete-a-resource-unit.md - - 创建资源池 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/6.create-a-resource-pool.md - - 查看资源配置 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/7.view-resource-configurations.md - - 修改资源池 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/8.modifies-the-resource-pool.md - - 删除资源池 : docs-cn/6.administrator-guide/3.basic-database-management/4.resource-management/9.delete-a-resource-pool.md - - 租户管理: - - 租户管理概述: docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/1.tenant-management-overview-1.md - - 创建用户租户 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/2.create-a-user-tenant.md - - 新建租户 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/3.create-a-tenant-1.md - - 查看租户 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/4.view-tenants.md - - 修改租户 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/5.modify-tenant.md - - 删除租户 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/6.delete-a-tenant-1.md - - 查看租户会话 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/7.view-tenant-sessions.md - - 终止租户会话 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/8.terminate-a-tenant-session.md - - 租户管理变量 : docs-cn/6.administrator-guide/3.basic-database-management/5.tenants/9.tenant-management-variables.md - - 内存管理: - - 内存管理概述: docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/1.memory-management-overview.md - - OceanBase 内存结构 : docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/2.memory-structure-of-oceanbase.md - - OceanBase 数据库内存上限 : docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/3.maximum-memory-for-oceanbase-databases.md - - 系统内部内存管理 : docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/4.system-internal-memory-management.md - - 租户内部内存管理 : docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/5.memory-management-within-a-tenant.md - - 执行计划缓存 : docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/6.execution-plan-cache-1.md - - 常见内存问题 : docs-cn/6.administrator-guide/3.basic-database-management/6.memory-management/7.common-memory-problems.md - - 数据库对象管理: - - 管理表: - - 关于表 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/1.about-tables-1.md - - 创建表 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/2.create-a-table-3.md - - 定义自增列 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/3.define-an-auto-increment-column.md - - 定义列的约束类型 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/4.define-the-constraint-type-for-a-column.md - - 查看表的定义 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/5.view-the-definition-of-a-table-1.md - - 更改表 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/6.change-table.md - - 清空表 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/7.clear-table.md - - 删除表 : docs-cn/6.administrator-guide/4.database-object-management-1/1.manage-tables/8.delete-a-table-1.md - - 管理一个表组: - - 关于表组 : docs-cn/6.administrator-guide/4.database-object-management-1/2.manage-a-table-group/1.about-table-groups.md - - 表组管理命令 : docs-cn/6.administrator-guide/4.database-object-management-1/2.manage-a-table-group/2.table-group-management-statements.md - - 管理索引 : - - 关于索引 : docs-cn/6.administrator-guide/4.database-object-management-1/3.manage-indexes/1.about-indexes.md - - 创建索引 : docs-cn/6.administrator-guide/4.database-object-management-1/3.manage-indexes/2.create-an-index-1.md - - 查看索引 : docs-cn/6.administrator-guide/4.database-object-management-1/3.manage-indexes/3.view-indexes-1.md - - 删除索引 : docs-cn/6.administrator-guide/4.database-object-management-1/3.manage-indexes/4.delete-an-index-1.md - - 管理视图和同义词: - - 管理视图 : docs-cn/6.administrator-guide/4.database-object-management-1/4.view-sequence-and-synonym-management/1.manage-views.md - - 管理同义词 : docs-cn/6.administrator-guide/4.database-object-management-1/4.view-sequence-and-synonym-management/2.manage-synonyms-1.md - - 数据分发和链路管理: - - 分区表和分区索引管理: - - 关于分区 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/1.about-partitions.md - - 分区策略 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/2.partitioning-policy-3.md - - 创建一个分区表: - - 一级分区表 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/3.create-a-partition-table/1.level-1-partition-table-2.md - - 二级分区表 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/3.create-a-partition-table/2.secondary-partition-table-2.md - - 分区裁剪 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/4.partition-pruning.md - - 分区命名与查询 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/5.partition-naming-and-query.md - - 创建一个索引在一个分区表上: - - 局部索引 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/6.create-an-index-on-a-partition-table/1.local-index.md - - 全局索引 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/6.create-an-index-on-a-partition-table/2.global-index.md - - 使用索引 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/6.create-an-index-on-a-partition-table/3.use-index.md - - 分区表维护: - - 一级分区表 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/7.partition-table-maintenance/1.level-1-partition-table.md - - 二级分区表 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/1.partition-table-and-partitioned-index-management/7.partition-table-maintenance/2.secondary-partition-table.md - - 副本管理: - - 副本概述 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/2.replica-management/1.replica-overview.md - - 表级副本的使用 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/2.replica-management/2.use-table-replicas.md - - Locality 管理: - - Locality 管理概述 : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/3.locality-management/1.locality-management-overview.md - - 修改租户的 Locality : docs-cn/6.administrator-guide/5.data-distribution-and-link-management/3.locality-management/2.modify-the-tenant-s-locality.md - - 事务管理: - - 事务概述 : docs-cn/6.administrator-guide/6.transaction-management/1.transaction-overview.md - - 提交事务 : docs-cn/6.administrator-guide/6.transaction-management/2.submit-transaction-5.md - - 回滚事务 : docs-cn/6.administrator-guide/6.transaction-management/3.roll-back-transactions-5.md - - 事务隔离级别 : docs-cn/6.administrator-guide/6.transaction-management/4.transaction-isolation-level-1.md - - 用户权限管理: - - 创建用户 : docs-cn/6.administrator-guide/7.user-rights-management/2.create-user-3.md - - 管理角色 : docs-cn/6.administrator-guide/7.user-rights-management/3.roles-for-managing-oracle-tenants.md - - 修改用户权限 : docs-cn/6.administrator-guide/7.user-rights-management/4.modify-user-permissions-1.md - - 查看白名单 : docs-cn/6.administrator-guide/7.user-rights-management/5.view-the-whitelist.md - - 锁定和解锁用户 : docs-cn/6.administrator-guide/7.user-rights-management/6.lock-and-unlock-users-1.md - - 删除用户 : docs-cn/6.administrator-guide/7.user-rights-management/7.delete-a-user-1.md - - 数据的高可用: - - 回收站管理: - - 回收站支持的对象: docs-cn/6.administrator-guide/8.high-data-availability/1.recycle-bin-management/1.objects-supported-by-recycle-bin-1.md - - 数据库、表和索引级回收站 : docs-cn/6.administrator-guide/8.high-data-availability/1.recycle-bin-management/2.database-table-and-index-level-recycle-bin-1.md - - 租户级回收站 : docs-cn/6.administrator-guide/8.high-data-availability/1.recycle-bin-management/3.tenant-level-recycle-bin.md - - 物理备份和恢复管理: - - 物理备份与恢复概述 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/1.overview-of-physical-backup-and-recovery.md - - 部署 NFS : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/2.deploy-nfs.md - - 数据备份: - - 通过命令行备份 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/3.back-up-data/1.backup-by-using-the-command-line.md - - 查看备份进度 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/3.back-up-data/2.view-backup-progress.md - - 停止备份 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/3.back-up-data/3.stop-a-backup.md - - 删除过期的备份 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/3.back-up-data/4.deleting-an-expired-backup.md - - 清理备份数据: - - 清理备份数据 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/3.back-up-data/5.backup-data-cleanup/1.clear-backup-data.md - - 取消清理备份数据 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/3.back-up-data/5.backup-data-cleanup/2.cancel-cleaning-up-backup-data.md - - 数据恢复: - - 执行恢复 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/4.restore-data/1.perform-recovery.md - - 查看恢复进度和结果 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/4.restore-data/2.view-the-restore-progress-and-results.md - - 日常维护: - - 备份相关 : docs-cn/6.administrator-guide/8.high-data-availability/2.physical-backup-and-recovery-management/5.routine-maintenance/1.backup-related.md - - 开发指南: - - 前言 : - - 关于 OceanBase 数据库开发者 : docs-cn/7.developer-guide-1/1.preface-2/1.about-oceanbase-database-developers-2.md - - 关于本文档 : docs-cn/7.developer-guide-1/1.preface-2/2.about-this-document-2.md - - 关于OceanBase数据库: - - OceanBase 集群简介 : docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/1.apsaradb-for-oceanbase-cluster-overview-2.md - - OceanBase 租户简介 : docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/2.introduction-to-oceanbase-tenants-2.md - - OceanBase 的 MySQL 租户数据库对象 : docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/3.mysql-based-tenant-database-objects-of-oceanbase-2.md - - 关于OceanBase数据库的访问方法: - - 关于 MySQL 客户端(mysql): docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/4.about-oceanbase-database-access-methods-2/1.introduction-to-the-mysql-client-2.md - - 关于 OceanBase 客户端(obclient): docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/4.about-oceanbase-database-access-methods-2/2.introduction-to-the-oceanbase-client-obclient-2.md - - 关于结构化查询语言 : docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/4.about-oceanbase-database-access-methods-2/3.about-structured-query-language-2.md - - Java 数据库连接驱动(JDBC): docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/4.about-oceanbase-database-access-methods-2/4.java-database-connection-driver-jdbc-2.md - - OceanBase Java数据库连接驱动 : docs-cn/7.developer-guide-1/1.preface-2/3.about-oceanbase-databases-2/4.about-oceanbase-database-access-methods-2/5.oceanbase-java-database-connection-driver-2.md - - 关于示例数据库 TPCC : docs-cn/7.developer-guide-1/1.preface-2/4.about-the-sample-database-tpcc-2.md - - 连接到OceanBase数据库: - - 通过 MySQL 客户端连接 OceanBase 租户 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/1.connect-to-an-oceanbase-tenant-by-using-a-mysql-client.md - - 通过 obclient 连接 OceanBase 租户 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/2.connect-to-an-oceanbase-tenant-by-using-obclient.md - - 通过 ODC 连接 OceanBase 数据库 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/3.connect-to-the-oceanbase-database-through-odc.md - - 创建 OceanBase 示例数据库 TPCC : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/4.create-oceanbase-sample-database-tpcc.md - - 通过 obclient 探索 OceanBase MySQL 租户 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/5.explore-the-oceanbase-mysql-tenant-with-obclient.md - - 查询表数据: - - 关于查询语句 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/1.about-query-statements.md - - 在 ODC 中运行查询 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/2.run-queries-in-odc.md - - 查询表里符合特定搜索条件的数据 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/3.you-can-call-this-operation-to-query-the-data-that.md - - 对查询的结果进行排序 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/4.sort-the-results-of-the-query.md - - 从多个表里查询数据 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/5.query-data-from-multiple-tables.md - - 在查询中使用操作符: - - 查询中使用算术操作符 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/1.use-arithmetic-operators-in-queries.md - - 查询中使用数值函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/2.use-numeric-functions-in-queries.md - - 查询中使用字符串连接符 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/3.use-a-string-connector-in-a-query.md - - 查询中使用字符串函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/4.use-string-functions-in-queries.md - - 查询中使用时间函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/5.use-time-functions-in-queries.md - - 查询中使用类型转换函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/6.use-type-conversion-functions-in-queries.md - - 查询中使用聚合函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/7.use-aggregate-functions-in-queries.md - - 查询中使用 NULL 相关函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/8.use-null-related-functions-in-queries.md - - 查询中使用 CASE 函数 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/9.use-the-case-function-in-a-query.md - - 锁定查询结果 SELECT FOR UPDATE : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/6.use-operators-and-functions-in-queries/10.lock-query-results-select-for-update.md - - 查看查询执行计划 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/7.view-the-query-execution-plan.md - - 在查询中使用 SQL Hint : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/8.use-sql-hints-in-queries.md - - 关于查询超时设计 : docs-cn/7.developer-guide-1/2.connect-to-the-oceanbase-database/6.query-table-data/9.about-query-timeout-design.md - - 关于DML语句和事务: - - 关于DML语句: - - DML 语句概述 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/1.about-dml-statements/1.dml-statement-overview.md - - 关于 INSERT 语句 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/1.about-dml-statements/2.insert-statement.md - - 关于 UPDATE 语句 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/1.about-dml-statements/3.about-update-statements.md - - 关于 DELETE 语句 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/1.about-dml-statements/4.about-the-delete-statement.md - - 关于 REPLACE INTO 语句 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/1.about-dml-statements/5.replace-into-statements.md - - 关于事务控制语句 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/2.about-transactional-control-statements.md - - 提交事务 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/3.submit-transaction-3.md - - 回滚事务 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/4.roll-back-transactions-3.md - - 事务保存点 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/5.transaction-savepoints.md - - 关于事务超时 : docs-cn/7.developer-guide-1/3.about-dml-statements-and-transactions/6.about-transaction-timeout.md - - 创建和管理数据库对象: - - 关于 DDL 语句 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/1.about-ddl-statements.md - - 创建和管理表: - - 关于 SQL 数据类型: docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/2.create-and-manage-tables/1.about-sql-data-types.md - - 创建表 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/2.create-and-manage-tables/2.create-a-table-1.md - - 关于自增列 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/2.create-and-manage-tables/3.about-auto-increment-columns.md - - 关于列的约束类型 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/2.create-and-manage-tables/4.about-column-constraint-types.md - - 关于表的索引 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/2.create-and-manage-tables/5.about-table-indexes.md - - 闪回被删除的表 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/2.create-and-manage-tables/6.flashback-deleted-table.md - - 创建和管理表分区: - - 概述 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/3.create-and-manage-partition-table/1.overview-5.md - - 分区路由 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/3.create-and-manage-partition-table/2.partition-routing.md - - 分区策略 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/3.create-and-manage-partition-table/3.partitioning-policy-1.md - - 分区表的索引 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/3.create-and-manage-partition-table/4.partition-table-index.md - - 分区表使用建议 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/3.create-and-manage-partition-table/5.use-of-partition-table.md - - 创建和管理表组: - - 关于表组 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/4.create-and-manage-table-groups/1.about-table-groups-1.md - - 创建表时指定表组 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/4.create-and-manage-table-groups/2.specify-a-table-group-when-creating-a-table.md - - 查看表组信息 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/4.create-and-manage-table-groups/3.view-table-group-information.md - - 向表组中增加表 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/4.create-and-manage-table-groups/4.add-table-to-table-group.md - - 删除表组: docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/4.create-and-manage-table-groups/5.delete-a-table-group.md - - 创建和管理视图: - - 创建视图 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/5.create-and-manage-views/1.create-a-view.md - - 修改视图 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/5.create-and-manage-views/2.modify-view.md - - 删除视图 : docs-cn/7.developer-guide-1/4.create-and-manage-database-objects/5.create-and-manage-views/3.delete-a-view.md - - OceanBase数据迁移: - - 关于数据迁移和同步 : docs-cn/7.developer-guide-1/5.migrate-data-to-oceanbase/1.about-data-migration-and-synchronization.md - - 通用数据同步框架 DataX : docs-cn/7.developer-guide-1/5.migrate-data-to-oceanbase/2.general-purpose-data-synchronization-framework.md - - 不同数据源的 DataX 读写插件示例 : docs-cn/7.developer-guide-1/5.migrate-data-to-oceanbase/3.examples-of-the-datax-reader-and-writer.md - - 使用 DataX 向 OceanBase 数据库全量迁移数据 : docs-cn/7.developer-guide-1/5.migrate-data-to-oceanbase/4.use-datax-to-full-migration-data-to-oceanbase.md - - 使用 Canal 向 OceanBase 数据库增量迁移数据 : docs-cn/7.developer-guide-1/5.migrate-data-to-oceanbase/5.use-canal-to-incrementally-migrate-data-to-oceanbase-database.md - - OceanBase 数据加载技术 : docs-cn/7.developer-guide-1/5.migrate-data-to-oceanbase/6.data-loading-technology-of-oceanbase.md - - 附录: - - Java 连接 OceanBase 示例 : docs-cn/7.developer-guide-1/6.appendix/1.use-java-to-connect-to-oceanbase.md - - OceanBase 常用参数和变量 : docs-cn/7.developer-guide-1/6.appendix/2.common-oceanbase-parameters-and-variables.md - - OceanBase 常用 SQL Hints : docs-cn/7.developer-guide-1/6.appendix/3.common-sql-hints-for-oceanbase.md - - SQL 参考: - - 基本元素: - - 数据类型 : docs-cn/10.sql-reference/1.basic-elements/1.data-type.md - - 表达式 : docs-cn/10.sql-reference/1.basic-elements/2.expression.md - - 类型转换 : docs-cn/10.sql-reference/1.basic-elements/3.type-conversion.md - - 字符集 : docs-cn/10.sql-reference/1.basic-elements/4.character-set.md - - 排序规则 : docs-cn/10.sql-reference/1.basic-elements/5.collation.md - - 数据比较规则 : docs-cn/10.sql-reference/1.basic-elements/6.data-comparison-rules.md - - 字面量 : docs-cn/10.sql-reference/1.basic-elements/7.literal.md - - 注释 : docs-cn/10.sql-reference/1.basic-elements/8.annotation.md - - 运算符: - - 算术运算符 : docs-cn/10.sql-reference/2.operator/1.arithmetic-operators.md - - 位运算符 : docs-cn/10.sql-reference/2.operator/2.bitwise-operators.md - - 比较运算符 : docs-cn/10.sql-reference/2.operator/3.comparison-operators.md - - 逻辑运算符 : docs-cn/10.sql-reference/2.operator/4.logical-operators.md - - 日期时间运算符 : docs-cn/10.sql-reference/2.operator/5.date-and-time-operators.md - - 字符连接运算符 : docs-cn/10.sql-reference/2.operator/6.character-concatenation-operators.md - - 层次查询运算符 : docs-cn/10.sql-reference/2.operator/7.hierarchical-query-operators.md - - 排序规则运算符 : docs-cn/10.sql-reference/2.operator/8.collation-operators.md - - 函数: - - 函数 : docs-cn/10.sql-reference/3.functions/1.single-row-functions.md - - 聚集函数 : docs-cn/10.sql-reference/3.functions/2.aggregate-functions.md - - 分析函数 : docs-cn/10.sql-reference/3.functions/3.analysis-functions.md - - 信息函数 : docs-cn/10.sql-reference/3.functions/4.information-functions.md - - 其它函数 : docs-cn/10.sql-reference/3.functions/5.other-functions.md - - 查询和子查询: - - 概述 : docs-cn/10.sql-reference/4.queries-and-subqueries/1.overview-8.md - - 连接 : docs-cn/10.sql-reference/4.queries-and-subqueries/2.connection.md - - 集合 : docs-cn/10.sql-reference/4.queries-and-subqueries/3.collection.md - - SQL语句: - - 通用语法 : docs-cn/10.sql-reference/5.sql-statement/1.general-syntax.md - - ALTER DATABASE : docs-cn/10.sql-reference/5.sql-statement/2.alter-database.md - - ALTER OUTLINE : docs-cn/10.sql-reference/5.sql-statement/3.alter-outline.md - - ALTER RESOURCE POOL : docs-cn/10.sql-reference/5.sql-statement/4.alter-resource-pool.md - - ALTER RESOURCE UNIT : docs-cn/10.sql-reference/5.sql-statement/5.alter-resource-unit.md - - ALTER SYSTEM : docs-cn/10.sql-reference/5.sql-statement/6.alter-system.md - - ALTER TABLE : docs-cn/10.sql-reference/5.sql-statement/7.alter-table.md - - ALTER TABLEGROUP : docs-cn/10.sql-reference/5.sql-statement/8.alter-tablegroup.md - - ALTER TENANT : docs-cn/10.sql-reference/5.sql-statement/9.alter-tenant.md - - ALTER USER : docs-cn/10.sql-reference/5.sql-statement/10.alter-user.md - - CREATE DATABASE : docs-cn/10.sql-reference/5.sql-statement/11.create-database.md - - CREATE INDEX : docs-cn/10.sql-reference/5.sql-statement/12.create-index.md - - CREATE OUTLINE : docs-cn/10.sql-reference/5.sql-statement/13.create-outline.md - - CREATE RESOURCE POOL : docs-cn/10.sql-reference/5.sql-statement/14.create-resource-pool.md - - CREATE RESOURCE UNIT : docs-cn/10.sql-reference/5.sql-statement/15.create-resource-unit.md - - CREATE RESTORE POINT : docs-cn/10.sql-reference/5.sql-statement/16.create-restore-point.md - - CREATE SYNONYM : docs-cn/10.sql-reference/5.sql-statement/17.create-synonym.md - - CREATE TABLE : docs-cn/10.sql-reference/5.sql-statement/18.create-table.md - - CREATE TABLEGROUP : docs-cn/10.sql-reference/5.sql-statement/19.create-tablegroup.md - - CREATE TENANT : docs-cn/10.sql-reference/5.sql-statement/20.create-tenant.md - - CREATE USER : docs-cn/10.sql-reference/5.sql-statement/21.create-user-1.md - - CREATE VIEW : docs-cn/10.sql-reference/5.sql-statement/22.create-view.md - - DELETE : docs-cn/10.sql-reference/5.sql-statement/23.DELETE.md - - DROP DATABASE : docs-cn/10.sql-reference/5.sql-statement/24.drop-database.md - - DROP INDEX : docs-cn/10.sql-reference/5.sql-statement/25.drop-index.md - - DROP OUTLINE : docs-cn/10.sql-reference/5.sql-statement/26.drop-outline.md - - DROP RESOURCE POOL : docs-cn/10.sql-reference/5.sql-statement/27.drop-resource-pool.md - - DROP RESOURCE UNIT : docs-cn/10.sql-reference/5.sql-statement/28.drop-resource-unit.md - - DROP RESTORE POINT : docs-cn/10.sql-reference/5.sql-statement/29.drop-restore-point.md - - DROP TABLE : docs-cn/10.sql-reference/5.sql-statement/30.drop-table.md - - DROP TABLEGROUP : docs-cn/10.sql-reference/5.sql-statement/31.drop-tablegroup.md - - DROP TENANT : docs-cn/10.sql-reference/5.sql-statement/32.drop-tenant.md - - DROP SYNONYM : docs-cn/10.sql-reference/5.sql-statement/33.drop-synonym.md - - DROP USER : docs-cn/10.sql-reference/5.sql-statement/34.drop-user.md - - DROP VIEW : docs-cn/10.sql-reference/5.sql-statement/35.drop-view.md - - EXPLAIN : docs-cn/10.sql-reference/5.sql-statement/36.EXPLAIN.md - - FLASHBACK DATABASE : docs-cn/10.sql-reference/5.sql-statement/37.flashback-database.md - - FLASHBACK TABLE : docs-cn/10.sql-reference/5.sql-statement/38.flashback-table.md - - FLASHBACK TENANT : docs-cn/10.sql-reference/5.sql-statement/39.flashback-tenant.md - - GRANT : docs-cn/10.sql-reference/5.sql-statement/40.GRANT.md - - INSERT : docs-cn/10.sql-reference/5.sql-statement/41.INSERT.md - - KILL : docs-cn/10.sql-reference/5.sql-statement/42.KILL.md - - PURGE DATABASE : docs-cn/10.sql-reference/5.sql-statement/43.purge-database.md - - PURGE INDEX : docs-cn/10.sql-reference/5.sql-statement/44.purge-index.md - - PURGE RECYCLEBIN : docs-cn/10.sql-reference/5.sql-statement/45.purge-recyclebin.md - - PURGE TABLE : docs-cn/10.sql-reference/5.sql-statement/46.purge-table.md - - PURGE TENANT : docs-cn/10.sql-reference/5.sql-statement/47.purge-tenant.md - - RENAME TABLE : docs-cn/10.sql-reference/5.sql-statement/48.rename-table.md - - RENAME USER : docs-cn/10.sql-reference/5.sql-statement/49.rename-user.md - - REPLACE : docs-cn/10.sql-reference/5.sql-statement/50.REPLACE.md - - REVOKE : docs-cn/10.sql-reference/5.sql-statement/51.REVOKE.md - - SAVEPOINT : docs-cn/10.sql-reference/5.sql-statement/52.SAVEPOINT.md - - SCHEMA : docs-cn/10.sql-reference/5.sql-statement/53.SCHEMA.md - - SELECT : docs-cn/10.sql-reference/5.sql-statement/54.SELECT.md - - SESSION : docs-cn/10.sql-reference/5.sql-statement/55.SESSION.md - - SET PASSWORD : docs-cn/10.sql-reference/5.sql-statement/56.set-password.md - - SHOW GRANTS : docs-cn/10.sql-reference/5.sql-statement/57.show-grants.md - - SHOW RECYCLEBIN : docs-cn/10.sql-reference/5.sql-statement/58.show-recyclebin.md - - TRANSACTION : docs-cn/10.sql-reference/5.sql-statement/59.TRANSACTION.md - - TRUNCATE TABLE : docs-cn/10.sql-reference/5.sql-statement/60.truncate-table.md - - UPDATE : docs-cn/10.sql-reference/5.sql-statement/61.UPDATE.md - - SQL 优化指南: - - SQL 请求执行流程 : docs-cn/12.sql-optimization-guide-1/1.sql-request-execution-process-3.md - - SQL 执行计划: - - SQL 执行计划简介 : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/1.introduction-to-sql-execution-plans-2.md - - 执行计划操作符 : - - TABLE SCAN : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/1.table-scan-2.md - - TABLE LOOKUP : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/2.table-lookup-2.md - - JOIN : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/3.JOIN-1-2.md - - COUNT : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/4.COUNT-1-2-3-4.md - - GROUP BY : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/5.group-by-2.md - - WINDOW FUNCTION : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/6.window-function-2.md - - SUBPLAN FILTER : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/7.subplan-filter-2.md - - DISTINCT : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/8.DISTINCT-1-2.md - - SEQUENCE : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/9.SEQUENCE-1-2.md - - MATERIAL : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/10.MATERIAL-1-2.md - - SORT : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/11.SORT-1-2.md - - LIMIT : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/12.LIMIT-1-2.md - - FOR UPDATE : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/13.for-update-2.md - - SELECT INTO : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/14.select-into-2.md - - SUBPLAN SCAN : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/15.subplan-scan-2.md - - UNION : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/16.UNION-1-2.md - - INTERSECT : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/17.INTERSECT-1-2.md - - EXCEPT/MINUS : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/18.except-minus-2.md - - INSERT : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/19.INSERT-1-2-3-4.md - - DELETE : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/20.DELETE-1-2-3-4.md - - UPDATE : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/21.UPDATE-1-2-3-4.md - - MERGE : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/22.MERGE-1-2-3.md - - EXCHANGE : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/23.EXCHANGE-1-2.md - - GI : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/2.execution-plan-operator-2/24.GI-1-2.md - - 执行计划缓存 : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/3.execution-plan-cache-4.md - - 快速参数化 : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/4.fast-parameterization-3.md - - 实时执行计划展示 : docs-cn/12.sql-optimization-guide-1/2.sql-execution-plan-3/5.real-time-execution-plan-display-3.md - - 分布式执行计划: - - 分布式执行和并行查询 : docs-cn/12.sql-optimization-guide-1/3.distributed-execution-plan-2/1.distributed-execution-and-parallel-query-3.md - - 分布式计划的生成 : docs-cn/12.sql-optimization-guide-1/3.distributed-execution-plan-2/2.generation-of-distributed-plans-3.md - - 分布式执行计划调度 : docs-cn/12.sql-optimization-guide-1/3.distributed-execution-plan-2/3.distributed-execution-plan-scheduling-3.md - - 分布式执行计划管理 : docs-cn/12.sql-optimization-guide-1/3.distributed-execution-plan-2/4.distributed-execution-plan-management-2.md - - 并行查询的执行 : docs-cn/12.sql-optimization-guide-1/3.distributed-execution-plan-2/5.execution-of-parallel-query-2.md - - 并行查询的参数调优 : docs-cn/12.sql-optimization-guide-1/3.distributed-execution-plan-2/6.optimize-the-parameters-for-parallel-query-2.md - - SQL 调优: - - SQL 调优概览 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/1.overview-of-sql-optimization.md - - SQL 调优基本流程 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/2.optimize-sql-statements-1.md - - 监视SQL执行性能: - - (g)v$sql_audit 介绍 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/1.g-v-sql_audit-introduction.md - - SQL Trace : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/2.sql-trace-1.md - - 计划缓存视图 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/3.plan-cache-view.md - - SQL 执行性能样例: - - 通过 SQL Audit 分析查询中等待事件 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/1.analyze-events-waiting-in-a-query-using-sql-audit-1.md - - 分析 RT 突然抖动的 SQL : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/2.sql-statement-that-analyzes-sudden-jitter-of-rt-1.md - - 查看执行计划形状并做分析 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/3.view-and-analyze-the-execution-plan-1.md - - 分析慢 SQL 查询 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/4.analyze-slow-sql-queries-1.md - - 查询 SQL 流量分布情况及 QPS : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/5.query-sql-traffic-and-query-the-qps-1.md - - 查看集群 SQL 请求流量是否均衡 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/6.check-whether-the-sql-request-traffic-is-balanced-1.md - - 查询排名 TOP N 的 SQL : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/7.top-n-sql-statements-1.md - - 查询某段时间内执行时间排名 TOP N 的请求 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/8.query-the-top-n-requests-with-the-most-execution-time-1.md - - 分析系统或某个 SQL 的执行是否出现大量不合理远程执行请求 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/9.analyze-whether-the-execution-of-the-system-or-an-sql-1.md - - 查找某个租户中执行全表扫描的 SQL : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/10.queries-the-sql-statements-that-are-used-for-full-table-1.md - - 分析分布式计划相关的查询问题 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/11.analyze-query-problems-related-to-distributed-plans-1.md - - 查看分布式子计划 RPC 执行数是否均衡 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/3.monitor-sql-execution-performance-1/4.sql-performance-analysis-example-1/12.check-whether-the-number-of-distributed-rpc-executions-is-balanced-1.md - - 查询改写: - - 概述 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/4.query-rewrite-3/1.overview-15.md - - 基于规则的查询改写 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/4.query-rewrite-3/2.rule-based-query-rewriting-3.md - - 基于代价的查询改写 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/4.query-rewrite-3/3.cost-based-query-rewriting-3.md - - 查询优化: - - 访问路径: - - 概述 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/5.query-optimization-2/1.access-path-3/1.overview-16.md - - 基于规则的路径选择 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/5.query-optimization-2/1.access-path-3/2.rule-based-path-selection-3.md - - 基于代价的路径选择 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/5.query-optimization-2/1.access-path-3/3.cost-based-path-selection-3.md - - 联接算法: - - 概述 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/5.query-optimization-2/2.join-algorithm-5/1.overview-17.md - - 联接算法 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/5.query-optimization-2/2.join-algorithm-5/2.join-algorithm-6.md - - 联接顺序 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/5.query-optimization-2/2.join-algorithm-5/3.join-order-3.md - - 管理执行计划: - - Optimizer Hint : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/6.manage-execution-plans-1/1.optimizer-hint-1.md - - 计划绑定 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/6.manage-execution-plans-1/2.plan-binding-1.md - - 执行计划管理 : docs-cn/12.sql-optimization-guide-1/4.sql-optimization-1/6.manage-execution-plans-1/3.sql-execution-plan-management-spm-1.md - - 相关术语 : docs-cn/12.sql-optimization-guide-1/5.related-terms.md - - SQL 调优常见问题 : docs-cn/12.sql-optimization-guide-1/6.faq-about-sql-tuning.md - - 参考指南: - - 系统视图 : - - 概述 : docs-cn/13.reference-guide/1.system-view/1.overview-4.md - - 字典视图 : - - mysql.help_topic : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/1.mysql-help_topic.md - - mysql-help_category : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/2.mysql-help_category.md - - mysql.help_keyword : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/3.mysql-help_keyword.md - - mysql.help_relation : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/4.mysql-help_relation.md - - mysql.db : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/5.mysql-db.md - - mysql.proc : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/6.mysql-proc.md - - mysql.time_zone : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/7.mysql-time_zone.md - - mysql.time_zone_name : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/8.mysql-time_zone_name.md - - mysql.time_zone_transition : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/9.mysql-time_zone_transition.md - - mysql.time_zone_transition_type : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/10.mysql-time_zone_transition_type.md - - mysql.user : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/11.mysql-user.md - - information_schema.CHARACTER_SETS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/12.information_schema-character_sets.md - - information_schema.COLLATIONS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/13.information_schema-collations.md - - information_schema.COLLATION_CHARACTER_SET_APPLICABILITY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/14.information_schema-collation_character_set_applicability.md - - information_schema.COLUMNS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/15.information_schema-columns.md - - information_schema.DBA_OUTLINES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/16.information_schema-dba_outlines.md - - information_schema.ENGINES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/17.information_schema-engines.md - - information_schema.GLOBAL_STATUS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/18.information_schema-global_status.md - - information_schema.GLOBAL_VARIABLES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/19.information_schema-global_variables.md - - mysql.help_category : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/2.mysql-help_category.md - - information_schema.KEY_COLUMN_USAGE : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/20.information_schema-key_column_usage.md - - information_schema.PARAMETERS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/21.information_schema-parameters.md - - information_schema.PARTITIONS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/22.information_schema-partitions.md - - information_schema.PROCESSLIST : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/23.information_schema-processlist.md - - information_schema.REFERENTIAL_CONSTRAINTS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/24.information_schema-referential_constraints.md - - information_schema.ROUTINES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/25.information_schema-routines.md - - information_schema.SCHEMATA : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/26.information_schema-schemata.md - - information_schema.SCHEMA_PRIVILEGES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/27.information_schema-schema_privileges.md - - information_schema.SESSION_STATUS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/28.information_schema-session_status.md - - information_schema.SESSION_VARIABLES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/29.information_schema-session_variables.md - - information_schema.STATISTICS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/30.information_schema-statistics.md - - information_schema.TABLES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/31.information_schema-tables.md - - information_schema.TABLE_CONSTRAINTS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/32.information_schema-table_constraints.md - - information_schema.TABLE_PRIVILEGES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/33.information_schema-table_privileges.md - - information_schema.USER_PRIVILEGES : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/34.information_schema-user_privileges.md - - information_schema.USER_RECYCLEBIN : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/35.information_schema-user_recyclebin.md - - information_schema.VIEWS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/36.information_schema-views.md - - oceanbase.CDB_OB_BACKUP_ARCHIVELOG_SUMMARY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/37.oceanbase-cdb_ob_backup_archivelog_summary.md - - oceanbase.CDB_OB_BACKUP_JOB_DETAILS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/38.oceanbase-cdb_ob_backup_job_details.md - - oceanbase.CDB_OB_BACKUP_SET_DETAILS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/39.oceanbase-cdb_ob_backup_set_details.md - - oceanbase.CDB_OB_BACKUP_PROGRESS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/40.oceanbase-cdb_ob_backup_progress.md - - oceanbase.CDB_OB_BACKUP_SET_EXPIRED : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/41.oceanbase-cdb_ob_backup_set_expired.md - - oceanbase.CDB_OB_BACKUP_ARCHIVELOG_PROGRESS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/42.oceanbase-cdb_ob_backup_archivelog_progress.md - - oceanbase.CDB_OB_BACKUP_CLEAN_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/43.oceanbase-cdb_ob_backup_clean_history.md - - oceanbase.CDB_OB_BACKUP_TASK_CLEAN_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/44.oceanbase-cdb_ob_backup_task_clean_history.md - - oceanbase.CDB_OB_RESTORE_PROGRESS : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/45.oceanbase-cdb_ob_restore_progress.md - - oceanbase.CDB_OB_RESTORE_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/46.oceanbase-cdb_ob_restore_history.md - - oceanbase.CDB_CKPT_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/47.oceanbase-cdb_ckpt_history.md - - oceanbase.CDB_OB_BACKUP_VALIDATION_JOB : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/48.oceanbase-cdb_ob_backup_validation_job.md - - oceanbase.CDB_OB_BACKUP_VALIDATION_JOB_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/49.oceanbase-cdb_ob_backup_validation_job_history.md - - oceanbase.CDB_OB_TENANT_BACKUP_VALIDATION_TASK : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/50.oceanbase-cdb_ob_tenant_backup_validation_task.md - - oceanbase.CDB_OB_BACKUP_VALIDATION_TASK_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/51.oceanbase-cdb_ob_backup_validation_task_history.md - - oceanbase.CDB_OB_BACKUP_BACKUP_ARCHIVELOG_SUMMARY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/52.oceanbase-cdb_ob_backup_backup_archivelog_summary.md - - oceanbase.CDB_OB_BACKUP_BACKUPSET_TASK_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/53.oceanbase-cdb_ob_backup_backupset_task_history.md - - oceanbase.CDB_OB_BACKUP_BACKUPSET_TASK : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/54.oceanbase-cdb_ob_backup_backupset_task.md - - oceanbase.CDB_OB_BACKUP_BACKUPSET_JOB_HISTORY : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/55.oceanbase-cdb_ob_backup_backupset_job_history.md - - oceanbase.CDB_OB_BACKUP_BACKUPSET_JOB : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/56.oceanbase-cdb_ob_backup_backupset_job.md - - oceanbase.CDB_OB_BACKUP_SET_OBSOLETE : docs-cn/13.reference-guide/1.system-view/2.dictionary-view/57.oceanbase-cdb_ob_backup_set_obsolete.md - - 性能视图: - - gv$plan_cache_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/1.gv-plan_cache_stat.md - - gv$plan_cache_plan_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/2.gv-plan_cache_plan_stat.md - - gv$session_event : docs-cn/13.reference-guide/1.system-view/3.performance-view/3.gv-session_event.md - - gv$session_wait : docs-cn/13.reference-guide/1.system-view/3.performance-view/4.gv-session_wait.md - - gv$session_wait_history : docs-cn/13.reference-guide/1.system-view/3.performance-view/5.gv-session_wait_history.md - - gv$system_event : docs-cn/13.reference-guide/1.system-view/3.performance-view/6.gv-system_event.md - - gv$sesstat : docs-cn/13.reference-guide/1.system-view/3.performance-view/7.gv-sesstat.md - - gv$sysstat : docs-cn/13.reference-guide/1.system-view/3.performance-view/8.gv-sysstat.md - - gv$sql_audit : docs-cn/13.reference-guide/1.system-view/3.performance-view/9.gv-sql_audit.md - - gv$latch : docs-cn/13.reference-guide/1.system-view/3.performance-view/10.gv-latch.md - - gv$memory : docs-cn/13.reference-guide/1.system-view/3.performance-view/11.gv-memory.md - - gv$memstore : docs-cn/13.reference-guide/1.system-view/3.performance-view/12.gv-memstore.md - - gv$memstore_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/13.gv-memstore_info.md - - gv$plan_cache_plan_explain : docs-cn/13.reference-guide/1.system-view/3.performance-view/14.gv-plan_cache_plan_explain.md - - gv$obrpc_outgoing : docs-cn/13.reference-guide/1.system-view/3.performance-view/15.gv-obrpc_outgoing.md - - gv$obrpc_incoming : docs-cn/13.reference-guide/1.system-view/3.performance-view/16.gv-obrpc_incoming.md - - gv$sql : docs-cn/13.reference-guide/1.system-view/3.performance-view/17.gv-sql.md - - gv$sql_plan_monitor : docs-cn/13.reference-guide/1.system-view/3.performance-view/18.gv-sql_plan_monitor.md - - gv$outline : docs-cn/13.reference-guide/1.system-view/3.performance-view/19.gv-outline.md - - gv$concurrent_limit_sql : docs-cn/13.reference-guide/1.system-view/3.performance-view/20.gv-concurrent_limit_sql.md - - gv$sql_plan_statistics : docs-cn/13.reference-guide/1.system-view/3.performance-view/21.gv-sql_plan_statistics.md - - gv$server_memstore : docs-cn/13.reference-guide/1.system-view/3.performance-view/22.gv-server_memstore.md - - gv$unit_load_balance_event_history : docs-cn/13.reference-guide/1.system-view/3.performance-view/23.gv-unit_load_balance_event_history.md - - gv$tenant : docs-cn/13.reference-guide/1.system-view/3.performance-view/24.gv-tenant.md - - gv$database : docs-cn/13.reference-guide/1.system-view/3.performance-view/25.gv-database.md - - gv$table : docs-cn/13.reference-guide/1.system-view/3.performance-view/26.gv-table.md - - gv$unit : docs-cn/13.reference-guide/1.system-view/3.performance-view/27.gv-unit.md - - gv$partition : docs-cn/13.reference-guide/1.system-view/3.performance-view/28.gv-partition.md - - gv$lock_wait_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/29.gv-lock_wait_stat.md - - gv$session_longops : docs-cn/13.reference-guide/1.system-view/3.performance-view/30.gv-session_longops.md - - gv$tenant_memstore_allocator_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/31.gv-tenant_memstore_allocator_info.md - - gv$minor_merge_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/32.gv-minor_merge_info.md - - gv$tenant_px_worker_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/33.gv-tenant_px_worker_stat.md - - gv$partition_audit : docs-cn/13.reference-guide/1.system-view/3.performance-view/34.gv-partition_audit.md - - gv$ps_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/35.gv-ps_stat.md - - gv$ps_item_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/36.gv-ps_item_info.md - - gv$sql_workarea : docs-cn/13.reference-guide/1.system-view/3.performance-view/37.gv-sql_workarea.md - - gv$sql_workarea_histogram : docs-cn/13.reference-guide/1.system-view/3.performance-view/38.gv-sql_workarea_histogram.md - - gv$ob_sql_workarea_memory_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/39.gv-ob_sql_workarea_memory_info.md - - gv$server_schema_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/40.gv-server_schema_info.md - - gv$merge_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/41.gv-merge_info.md - - gv$lock : docs-cn/13.reference-guide/1.system-view/3.performance-view/42.gv-lock.md - - gv$sstable : docs-cn/13.reference-guide/1.system-view/3.performance-view/43.gv-sstable.md - - gv$ob_trans_table_status : docs-cn/13.reference-guide/1.system-view/3.performance-view/44.gv-ob_trans_table_status.md - - v$statname : docs-cn/13.reference-guide/1.system-view/3.performance-view/45.v-statname.md - - v$event_name : docs-cn/13.reference-guide/1.system-view/3.performance-view/46.v-event_name.md - - v$session_event : docs-cn/13.reference-guide/1.system-view/3.performance-view/47.v-session_event.md - - v$session_wait : docs-cn/13.reference-guide/1.system-view/3.performance-view/48.v-session_wait.md - - v$session_wait_history : docs-cn/13.reference-guide/1.system-view/3.performance-view/49.v-session_wait_history.md - - v$sesstat : docs-cn/13.reference-guide/1.system-view/3.performance-view/50.v-sesstat.md - - v$sysstat : docs-cn/13.reference-guide/1.system-view/3.performance-view/51.v-sysstat.md - - v$system_event : docs-cn/13.reference-guide/1.system-view/3.performance-view/52.v-system_event.md - - v$memory : docs-cn/13.reference-guide/1.system-view/3.performance-view/53.v-memory.md - - v$memstore : docs-cn/13.reference-guide/1.system-view/3.performance-view/54.v-memstore.md - - v$memstore_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/55.v-memstore_info.md - - v$plan_cache_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/56.v-plan_cache_stat.md - - v$plan_cache_plan_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/57.v-plan_cache_plan_stat.md - - v$plan_cache_plan_explain : docs-cn/13.reference-guide/1.system-view/3.performance-view/58.v-plan_cache_plan_explain.md - - v$sql_audit : docs-cn/13.reference-guide/1.system-view/3.performance-view/59.v-sql_audit.md - - v$obrpc_outgoing : docs-cn/13.reference-guide/1.system-view/3.performance-view/60.v-obrpc_outgoing.md - - v$obrpc_incoming : docs-cn/13.reference-guide/1.system-view/3.performance-view/61.v-obrpc_incoming.md - - v$sql : docs-cn/13.reference-guide/1.system-view/3.performance-view/62.v-sql.md - - v$sql_monitor : docs-cn/13.reference-guide/1.system-view/3.performance-view/63.v-sql_monitor.md - - v$sql_plan_monitor : docs-cn/13.reference-guide/1.system-view/3.performance-view/64.v-sql_plan_monitor.md - - v$sql_plan_statistics : docs-cn/13.reference-guide/1.system-view/3.performance-view/65.v-sql_plan_statistics.md - - v$unit : docs-cn/13.reference-guide/1.system-view/3.performance-view/66.v-unit.md - - v$partition : docs-cn/13.reference-guide/1.system-view/3.performance-view/67.v-partition.md - - v$lock_wait_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/68.v-lock_wait_stat.md - - v$session_longops : docs-cn/13.reference-guide/1.system-view/3.performance-view/69.v-session_longops.md - - v$latch : docs-cn/13.reference-guide/1.system-view/3.performance-view/70.v-latch.md - - v$tenant_memstore_allocator_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/71.v-tenant_memstore_allocator_info.md - - v$tenant_px_worker_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/72.v-tenant_px_worker_stat.md - - v$partition_audit : docs-cn/13.reference-guide/1.system-view/3.performance-view/73.v-partition_audit.md - - v$ob_cluster : docs-cn/13.reference-guide/1.system-view/3.performance-view/74.v-ob_cluster.md - - v$ob_standby_status : docs-cn/13.reference-guide/1.system-view/3.performance-view/75.v-ob_standby_status.md - - v$ob_cluster_stats : docs-cn/13.reference-guide/1.system-view/3.performance-view/76.v-ob_cluster_stats.md - - v$ob_cluster_event_history : docs-cn/13.reference-guide/1.system-view/3.performance-view/77.v-ob_cluster_event_history.md - - v$ps_stat : docs-cn/13.reference-guide/1.system-view/3.performance-view/78.v-ps_stat.md - - v$ps_item_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/79.v-ps_item_info.md - - v$sql_workarea : docs-cn/13.reference-guide/1.system-view/3.performance-view/80.v-sql_workarea.md - - v$sql_workarea_active : docs-cn/13.reference-guide/1.system-view/3.performance-view/81.v-sql_workarea_active.md - - v$sql_workarea_histogram : docs-cn/13.reference-guide/1.system-view/3.performance-view/82.v-sql_workarea_histogram.md - - v$ob_sql_workarea_memory_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/83.v-ob_sql_workarea_memory_info.md - - v$ob_timestamp_service : docs-cn/13.reference-guide/1.system-view/3.performance-view/84.v-ob_timestamp_service.md - - v$server_schema_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/85.v-server_schema_info.md - - v$merge_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/86.v-merge_info.md - - v$lock : docs-cn/13.reference-guide/1.system-view/3.performance-view/87.v-lock.md - - v$sql_monitor_statname : docs-cn/13.reference-guide/1.system-view/3.performance-view/88.v-sql_monitor_statname.md - - v$restore_point : docs-cn/13.reference-guide/1.system-view/3.performance-view/89.v-restore_point.md - - v$ob_cluster_failover_info : docs-cn/13.reference-guide/1.system-view/3.performance-view/90.v-ob_cluster_failover_info.md - - v$encrypted_tables : docs-cn/13.reference-guide/1.system-view/3.performance-view/91.v-encrypted_tables.md - - v$encrypted_tablespaces : docs-cn/13.reference-guide/1.system-view/3.performance-view/92.v-encrypted_tablespaces.md - - v$sstable : docs-cn/13.reference-guide/1.system-view/3.performance-view/93.v-sstable.md - - v$ob_trans_table_status : docs-cn/13.reference-guide/1.system-view/3.performance-view/94.v-ob_trans_table_status.md - - 系统变量: - - 系统变量概述 : docs-cn/13.reference-guide/2.system-variable/1.overview-of-system-variables.md - - auto_increment_increment : docs-cn/13.reference-guide/2.system-variable/2.auto_increment_increment-1.md - - auto_increment_offset : docs-cn/13.reference-guide/2.system-variable/3.auto_increment_offset.md - - autocommit : docs-cn/13.reference-guide/2.system-variable/4.autocommit.md - - character_set_client : docs-cn/13.reference-guide/2.system-variable/5.character_set_client.md - - character_set_connection : docs-cn/13.reference-guide/2.system-variable/6.character_set_connection.md - - character_set_database : docs-cn/13.reference-guide/2.system-variable/7.character_set_database.md - - character_set_results : docs-cn/13.reference-guide/2.system-variable/8.character_set_results.md - - character_set_server : docs-cn/13.reference-guide/2.system-variable/9.character_set_server.md - - character_set_system : docs-cn/13.reference-guide/2.system-variable/10.character_set_system.md - - collation_connection : docs-cn/13.reference-guide/2.system-variable/11.collation_connection.md - - collation_database : docs-cn/13.reference-guide/2.system-variable/12.collation_database.md - - collation_server : docs-cn/13.reference-guide/2.system-variable/13.collation_server.md - - interactive_timeout : docs-cn/13.reference-guide/2.system-variable/14.interactive_timeout.md - - last_insert_id : docs-cn/13.reference-guide/2.system-variable/15.last_insert_id.md - - max_allowed_packet : docs-cn/13.reference-guide/2.system-variable/16.max_allowed_packet.md - - sql_mode : docs-cn/13.reference-guide/2.system-variable/17.sql_mode.md - - time_zone : docs-cn/13.reference-guide/2.system-variable/18.time_zone.md - - tx_isolation : docs-cn/13.reference-guide/2.system-variable/19.tx_isolation.md - - version_comment : docs-cn/13.reference-guide/2.system-variable/20.version_comment.md - - wait_timeout : docs-cn/13.reference-guide/2.system-variable/21.wait_timeout.md - - binlog_row_image : docs-cn/13.reference-guide/2.system-variable/22.binlog_row_image.md - - character_set_filesystem : docs-cn/13.reference-guide/2.system-variable/23.character_set_filesystem.md - - connect_timeout : docs-cn/13.reference-guide/2.system-variable/24.connect_timeout.md - - datadir : docs-cn/13.reference-guide/2.system-variable/25.datadir.md - - debug_sync : docs-cn/13.reference-guide/2.system-variable/26.debug_sync.md - - div_precision_increment : docs-cn/13.reference-guide/2.system-variable/27.div_precision_increment.md - - explicit_defaults_for_timestamp : docs-cn/13.reference-guide/2.system-variable/28.explicit_defaults_for_timestamp.md - - group_concat_max_len : docs-cn/13.reference-guide/2.system-variable/29.group_concat_max_len.md - - identity : docs-cn/13.reference-guide/2.system-variable/30.identity.md - - lower_case_table_names : docs-cn/13.reference-guide/2.system-variable/31.lower_case_table_names.md - - net_read_timeout : docs-cn/13.reference-guide/2.system-variable/32.net_read_timeout.md - - net_write_timeout : docs-cn/13.reference-guide/2.system-variable/33.net_write_timeout.md - - read_only : docs-cn/13.reference-guide/2.system-variable/34.read_only.md - - sql_auto_is_null : docs-cn/13.reference-guide/2.system-variable/35.sql_auto_is_null.md - - sql_select_limit : docs-cn/13.reference-guide/2.system-variable/36.sql_select_limit.md - - timestamp : docs-cn/13.reference-guide/2.system-variable/37.timestamp.md - - tx_read_only : docs-cn/13.reference-guide/2.system-variable/38.tx_read_only.md - - version : docs-cn/13.reference-guide/2.system-variable/39.version.md - - sql_warnings : docs-cn/13.reference-guide/2.system-variable/40.sql_warnings.md - - max_user_connections : docs-cn/13.reference-guide/2.system-variable/41.max_user_connections.md - - init_connect : docs-cn/13.reference-guide/2.system-variable/42.init_connect.md - - license : docs-cn/13.reference-guide/2.system-variable/43.license.md - - net_buffer_length : docs-cn/13.reference-guide/2.system-variable/44.net_buffer_length.md - - system_time_zone : docs-cn/13.reference-guide/2.system-variable/45.system_time_zone.md - - query_cache_size : docs-cn/13.reference-guide/2.system-variable/46.query_cache_size.md - - query_cache_type : docs-cn/13.reference-guide/2.system-variable/47.query_cache_type.md - - sql_quote_show_create : docs-cn/13.reference-guide/2.system-variable/48.sql_quote_show_create.md - - max_sp_recursion_depth : docs-cn/13.reference-guide/2.system-variable/49.max_sp_recursion_depth.md - - sql_safe_updates : docs-cn/13.reference-guide/2.system-variable/50.sql_safe_updates.md - - ob_proxy_partition_hit : docs-cn/13.reference-guide/2.system-variable/51.ob_proxy_partition_hit.md - - ob_log_level : docs-cn/13.reference-guide/2.system-variable/52.ob_log_level.md - - ob_max_parallel_degree : docs-cn/13.reference-guide/2.system-variable/53.ob_max_parallel_degree.md - - ob_query_timeout : docs-cn/13.reference-guide/2.system-variable/54.ob_query_timeout.md - - ob_read_consistency : docs-cn/13.reference-guide/2.system-variable/55.ob_read_consistency.md - - ob_enable_transformation : docs-cn/13.reference-guide/2.system-variable/56.ob_enable_transformation.md - - ob_trx_timeout : docs-cn/13.reference-guide/2.system-variable/57.ob_trx_timeout.md - - ob_enable_plan_cache : docs-cn/13.reference-guide/2.system-variable/58.ob_enable_plan_cache.md - - ob_enable_index_direct_select : docs-cn/13.reference-guide/2.system-variable/59.ob_enable_index_direct_select.md - - ob_proxy_set_trx_executed : docs-cn/13.reference-guide/2.system-variable/60.ob_proxy_set_trx_executed.md - - ob_enable_aggregation_pushdown : docs-cn/13.reference-guide/2.system-variable/61.ob_enable_aggregation_pushdown.md - - ob_last_schema_version : docs-cn/13.reference-guide/2.system-variable/62.ob_last_schema_version.md - - ob_global_debug_sync : docs-cn/13.reference-guide/2.system-variable/63.ob_global_debug_sync.md - - ob_proxy_global_variables_version : docs-cn/13.reference-guide/2.system-variable/64.ob_proxy_global_variables_version.md - - ob_enable_trace_log : docs-cn/13.reference-guide/2.system-variable/65.ob_enable_trace_log.md - - ob_enable_hash_group_by : docs-cn/13.reference-guide/2.system-variable/66.ob_enable_hash_group_by.md - - ob_enable_blk_nestedloop_join : docs-cn/13.reference-guide/2.system-variable/67.ob_enable_blk_nestedloop_join.md - - ob_bnl_join_cache_size : docs-cn/13.reference-guide/2.system-variable/68.ob_bnl_join_cache_size.md - - ob_org_cluster_id : docs-cn/13.reference-guide/2.system-variable/69.ob_org_cluster_id.md - - ob_plan_cache_percentage : docs-cn/13.reference-guide/2.system-variable/70.ob_plan_cache_percentage.md - - ob_plan_cache_evict_high_percentage : docs-cn/13.reference-guide/2.system-variable/71.ob_plan_cache_evict_high_percentage.md - - ob_plan_cache_evict_low_percentage : docs-cn/13.reference-guide/2.system-variable/72.ob_plan_cache_evict_low_percentage.md - - recyclebin : docs-cn/13.reference-guide/2.system-variable/73.recyclebin.md - - ob_capability_flag : docs-cn/13.reference-guide/2.system-variable/74.ob_capability_flag.md - - ob_stmt_parallel_degree : docs-cn/13.reference-guide/2.system-variable/75.ob_stmt_parallel_degree.md - - is_result_accurate : docs-cn/13.reference-guide/2.system-variable/76.is_result_accurate.md - - error_on_overlap_time : docs-cn/13.reference-guide/2.system-variable/77.error_on_overlap_time.md - - ob_compatibility_mode : docs-cn/13.reference-guide/2.system-variable/78.ob_compatibility_mode.md - - ob_create_table_strict_mode : docs-cn/13.reference-guide/2.system-variable/79.ob_create_table_strict_mode.md - - ob_sql_work_area_percentage : docs-cn/13.reference-guide/2.system-variable/80.ob_sql_work_area_percentage.md - - ob_route_policy : docs-cn/13.reference-guide/2.system-variable/81.ob_route_policy.md - - ob_enable_transmission_checksum : docs-cn/13.reference-guide/2.system-variable/82.ob_enable_transmission_checksum.md - - foreign_key_checks: docs-cn/13.reference-guide/2.system-variable/83.foreign_key_checks.md - - ob_enable_truncate_flashback : docs-cn/13.reference-guide/2.system-variable/84.ob_enable_truncate_flashback.md - - ob_tcp_invited_nodes : docs-cn/13.reference-guide/2.system-variable/85.ob_tcp_invited_nodes.md - - sql_throttle_current_priority : docs-cn/13.reference-guide/2.system-variable/86.sql_throttle_current_priority.md - - sql_throttle_priority : docs-cn/13.reference-guide/2.system-variable/87.sql_throttle_priority.md - - sql_throttle_rt : docs-cn/13.reference-guide/2.system-variable/88.sql_throttle_rt.md - - sql_throttle_network : docs-cn/13.reference-guide/2.system-variable/89.sql_throttle_network.md - - auto_increment_cache_size : docs-cn/13.reference-guide/2.system-variable/90.auto_increment_cache_size.md - - ob_enable_jit : docs-cn/13.reference-guide/2.system-variable/91.ob_enable_jit.md - - ob_timestamp_service : docs-cn/13.reference-guide/2.system-variable/92.ob_timestamp_service.md - - plugin_dir : docs-cn/13.reference-guide/2.system-variable/93.plugin_dir.md - - undo_retention : docs-cn/13.reference-guide/2.system-variable/94.undo_retention.md - - ob_sql_audit_percentage : docs-cn/13.reference-guide/2.system-variable/95.ob_sql_audit_percentage.md - - ob_enable_sql_audit : docs-cn/13.reference-guide/2.system-variable/96.ob_enable_sql_audit.md - - optimizer_use_sql_plan_baselines : docs-cn/13.reference-guide/2.system-variable/97.optimizer_use_sql_plan_baselines.md - - optimizer_capture_sql_plan_baselines : docs-cn/13.reference-guide/2.system-variable/98.optimizer_capture_sql_plan_baselines.md - - parallel_max_servers : docs-cn/13.reference-guide/2.system-variable/99.parallel_max_servers.md - - parallel_servers_target : docs-cn/13.reference-guide/2.system-variable/100.parallel_servers_target.md - - ob_trx_idle_timeout : docs-cn/13.reference-guide/2.system-variable/101.ob_trx_idle_timeout.md - - block_encryption_mode : docs-cn/13.reference-guide/2.system-variable/102.block_encryption_mode.md - - ob_reserved_meta_memory_percentage : docs-cn/13.reference-guide/2.system-variable/103.ob_reserved_meta_memory_percentage.md - - ob_check_sys_variable : docs-cn/13.reference-guide/2.system-variable/104.ob_check_sys_variable.md - - tracefile_identifier : docs-cn/13.reference-guide/2.system-variable/105.tracefile_identifier.md - - transaction_isolation : docs-cn/13.reference-guide/2.system-variable/106.transaction_isolation.md - - ob_trx_lock_timeout : docs-cn/13.reference-guide/2.system-variable/107.ob_trx_lock_timeout.md - - validate_password_check_user_name : docs-cn/13.reference-guide/2.system-variable/108.validate_password_check_user_name.md - - validate_password_length : docs-cn/13.reference-guide/2.system-variable/109.validate_password_length.md - - validate_password_mixed_case_count : docs-cn/13.reference-guide/2.system-variable/110.validate_password_mixed_case_count.md - - validate_password_number_count : docs-cn/13.reference-guide/2.system-variable/111.validate_password_number_count.md - - validate_password_policy : docs-cn/13.reference-guide/2.system-variable/112.validate_password_policy.md - - validate_password_special_char_count : docs-cn/13.reference-guide/2.system-variable/113.validate_password_special_char_count.md - - default_password_lifetime : docs-cn/13.reference-guide/2.system-variable/114.default_password_lifetime.md - - ob_trace_info : docs-cn/13.reference-guide/2.system-variable/115.ob_trace_info.md - - secure_file_priv : docs-cn/13.reference-guide/2.system-variable/116.secure_file_priv.md - - ob_pl_block_timeout : docs-cn/13.reference-guide/2.system-variable/117.ob_pl_block_timeout.md - - performance_schema : docs-cn/13.reference-guide/2.system-variable/118.performance_schema.md - - transaction_read_only : docs-cn/13.reference-guide/2.system-variable/119.transaction_read_only.md - - resource_manager_plan : docs-cn/13.reference-guide/2.system-variable/120.resource_manager_plan.md - - 系统配置项 : - - 系统配置项概述 : docs-cn/13.reference-guide/3.system-configuration-items/1.system-configuration-items-overview-1_2894363.md - - auto_leader_switch_interval : docs-cn/13.reference-guide/3.system-configuration-items/2.auto_leader_switch_interval.md - - auto_delete_expired_backup : docs-cn/13.reference-guide/3.system-configuration-items/3.auto_delete_expired_backup.md - - autoinc_cache_refresh_interval : docs-cn/13.reference-guide/3.system-configuration-items/4.autoinc_cache_refresh_interval.md - - audit_sys_operations : docs-cn/13.reference-guide/3.system-configuration-items/5.audit_sys_operations.md - - audit_trail : docs-cn/13.reference-guide/3.system-configuration-items/6.audit_trail.md - - balancer_idle_time : docs-cn/13.reference-guide/3.system-configuration-items/7.balancer_idle_time.md - - balancer_log_interval : docs-cn/13.reference-guide/3.system-configuration-items/8.balancer_log_interval.md - - balancer_timeout_check_interval : docs-cn/13.reference-guide/3.system-configuration-items/9.balancer_timeout_check_interval.md - - balancer_task_timeout : docs-cn/13.reference-guide/3.system-configuration-items/10.balancer_task_timeout.md - - balancer_tolerance_percentage : docs-cn/13.reference-guide/3.system-configuration-items/11.balancer_tolerance_percentage.md - - balancer_emergency_percentage : docs-cn/13.reference-guide/3.system-configuration-items/12.balancer_emergency_percentage.md - - balance_blacklist_failure_threshold : docs-cn/13.reference-guide/3.system-configuration-items/13.balance_blacklist_failure_threshold.md - - balance_blacklist_retry_interval : docs-cn/13.reference-guide/3.system-configuration-items/14.balance_blacklist_retry_interval.md - - backup_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/15.backup_concurrency.md - - backup_dest : docs-cn/13.reference-guide/3.system-configuration-items/16.backup_dest.md - - backup_net_limit : docs-cn/13.reference-guide/3.system-configuration-items/17.backup_net_limit.md - - backup_recovery_window : docs-cn/13.reference-guide/3.system-configuration-items/18.backup_recovery_window.md - - backup_region : docs-cn/13.reference-guide/3.system-configuration-items/19.backup_region.md - - builtin_db_data_verify_cycle : docs-cn/13.reference-guide/3.system-configuration-items/20.builtin_db_data_verify_cycle.md - - bf_cache_miss_count_threshold : docs-cn/13.reference-guide/3.system-configuration-items/21.bf_cache_miss_count_threshold.md - - bf_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/22.bf_cache_priority.md - - cache_wash_threshold : docs-cn/13.reference-guide/3.system-configuration-items/23.cache_wash_threshold.md - - clog_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/24.clog_cache_priority.md - - clog_sync_time_warn_threshold : docs-cn/13.reference-guide/3.system-configuration-items/25.clog_sync_time_warn_threshold.md - - clog_disk_usage_limit_percentage : docs-cn/13.reference-guide/3.system-configuration-items/26.clog_disk_usage_limit_percentage.md - - clog_transport_compress_all : docs-cn/13.reference-guide/3.system-configuration-items/27.clog_transport_compress_all.md - - clog_transport_compress_func : docs-cn/13.reference-guide/3.system-configuration-items/28.clog_transport_compress_func.md - - clog_persistence_compress_func : docs-cn/13.reference-guide/3.system-configuration-items/29.clog_persistence_compress_func.md - - clog_max_unconfirmed_log_count : docs-cn/13.reference-guide/3.system-configuration-items/30.clog_max_unconfirmed_log_count.md - - cluster : docs-cn/13.reference-guide/3.system-configuration-items/31.cluster.md - - cluster_id : docs-cn/13.reference-guide/3.system-configuration-items/32.cluster_id.md - - cpu_count : docs-cn/13.reference-guide/3.system-configuration-items/33.cpu_count.md - - cpu_quota_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/34.cpu_quota_concurrency.md - - cpu_reserved : docs-cn/13.reference-guide/3.system-configuration-items/35.cpu_reserved.md - - config_additional_dir : docs-cn/13.reference-guide/3.system-configuration-items/36.config_additional_dir.md - - data_copy_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/37.data_copy_concurrency.md - - data_dir : docs-cn/13.reference-guide/3.system-configuration-items/38.data_dir.md - - datafile_disk_percentage : docs-cn/13.reference-guide/3.system-configuration-items/39.datafile_disk_percentage.md - - dtl_buffer_size : docs-cn/13.reference-guide/3.system-configuration-items/40.dtl_buffer_size.md - - datafile_size : docs-cn/13.reference-guide/3.system-configuration-items/41.datafile_size.md - - debug_sync_timeout : docs-cn/13.reference-guide/3.system-configuration-items/42.debug_sync_timeout.md - - default_compress_func : docs-cn/13.reference-guide/3.system-configuration-items/43.default_compress_func.md - - default_compress : docs-cn/13.reference-guide/3.system-configuration-items/44.default_compress.md - - default_progressive_merge_num : docs-cn/13.reference-guide/3.system-configuration-items/45.default_progressive_merge_num.md - - default_row_format : docs-cn/13.reference-guide/3.system-configuration-items/46.default_row_format.md - - devname : docs-cn/13.reference-guide/3.system-configuration-items/47.devname.md - - data_disk_usage_limit_percentage : docs-cn/13.reference-guide/3.system-configuration-items/48.data_disk_usage_limit_percentage.md - - disk_io_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/49.disk_io_thread_count.md - - dead_socket_detection_timeout : docs-cn/13.reference-guide/3.system-configuration-items/50.dead_socket_detection_timeout.md - - enable_clog_persistence_compress : docs-cn/13.reference-guide/3.system-configuration-items/51.enable_clog_persistence_compress.md - - election_cpu_quota : docs-cn/13.reference-guide/3.system-configuration-items/52.election_cpu_quota.md - - enable_one_phase_commit : docs-cn/13.reference-guide/3.system-configuration-items/53.enable_one_phase_commit.md - - enable_sys_unit_standalone : docs-cn/13.reference-guide/3.system-configuration-items/54.enable_sys_unit_standalone.md - - enable_pg : docs-cn/13.reference-guide/3.system-configuration-items/55.enable_pg.md - - enable_smooth_leader_switch : docs-cn/13.reference-guide/3.system-configuration-items/56.enable_smooth_leader_switch.md - - election_blacklist_interval : docs-cn/13.reference-guide/3.system-configuration-items/57.election_blacklist_interval.md - - enable_election_group : docs-cn/13.reference-guide/3.system-configuration-items/58.enable_election_group.md - - enable_auto_leader_switch : docs-cn/13.reference-guide/3.system-configuration-items/59.enable_auto_leader_switch.md - - enable_global_freeze_trigger : docs-cn/13.reference-guide/3.system-configuration-items/60.enable_global_freeze_trigger.md - - enable_manual_merge : docs-cn/13.reference-guide/3.system-configuration-items/61.enable_manual_merge.md - - enable_merge_by_turn : docs-cn/13.reference-guide/3.system-configuration-items/62.enable_merge_by_turn.md - - enable_perf_event : docs-cn/13.reference-guide/3.system-configuration-items/63.enable_perf_event.md - - enable_rebalance : docs-cn/13.reference-guide/3.system-configuration-items/64.enable_rebalance.md - - enable_record_trace_log : docs-cn/13.reference-guide/3.system-configuration-items/65.enable_record_trace_log.md - - enable_record_trace_id : docs-cn/13.reference-guide/3.system-configuration-items/66.enable_record_trace_id.md - - enable_early_lock_release : docs-cn/13.reference-guide/3.system-configuration-items/67.enable_early_lock_release.md - - enable_rereplication : docs-cn/13.reference-guide/3.system-configuration-items/68.enable_rereplication.md - - enable_rich_error_msg : docs-cn/13.reference-guide/3.system-configuration-items/69.enable_rich_error_msg.md - - enable_rootservice_standalone : docs-cn/13.reference-guide/3.system-configuration-items/70.enable_rootservice_standalone.md - - enable_sql_audit : docs-cn/13.reference-guide/3.system-configuration-items/71.enable_sql_audit.md - - enable_sql_operator_dump : docs-cn/13.reference-guide/3.system-configuration-items/72.enable_sql_operator_dump.md - - enable_async_syslog : docs-cn/13.reference-guide/3.system-configuration-items/73.enable_async_syslog.md - - enable_syslog_recycle : docs-cn/13.reference-guide/3.system-configuration-items/74.enable_syslog_recycle.md - - enable_syslog_wf : docs-cn/13.reference-guide/3.system-configuration-items/75.enable_syslog_wf.md - - enable_upgrade_mode : docs-cn/13.reference-guide/3.system-configuration-items/76.enable_upgrade_mode.md - - enable_separate_sys_clog : docs-cn/13.reference-guide/3.system-configuration-items/77.enable_separate_sys_clog.md - - enable_ddl : docs-cn/13.reference-guide/3.system-configuration-items/78.enable_ddl.md - - enable_major_freeze : docs-cn/13.reference-guide/3.system-configuration-items/79.enable_major_freeze.md - - enable_rebuild_on_purpose : docs-cn/13.reference-guide/3.system-configuration-items/80.enable_rebuild_on_purpose.md - - enable_log_archive : docs-cn/13.reference-guide/3.system-configuration-items/81.enable_log_archive.md - - enable_monotonic_weak_read : docs-cn/13.reference-guide/3.system-configuration-items/82.enable_monotonic_weak_read.md - - external_kms_info : docs-cn/13.reference-guide/3.system-configuration-items/83.external_kms_info.md - - freeze_trigger_percentage : docs-cn/13.reference-guide/3.system-configuration-items/84.freeze_trigger_percentage.md - - flush_log_at_trx_commit : docs-cn/13.reference-guide/3.system-configuration-items/85.flush_log_at_trx_commit.md - - fuse_row_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/86.fuse_row_cache_priority.md - - force_refresh_location_cache_interval : docs-cn/13.reference-guide/3.system-configuration-items/87.force_refresh_location_cache_interval.md - - force_refresh_location_cache_threshold : docs-cn/13.reference-guide/3.system-configuration-items/88.force_refresh_location_cache_threshold.md - - get_leader_candidate_rpc_timeout : docs-cn/13.reference-guide/3.system-configuration-items/89.get_leader_candidate_rpc_timeout.md - - global_major_freeze_residual_memory : docs-cn/13.reference-guide/3.system-configuration-items/90.global_major_freeze_residual_memory.md - - global_write_halt_residual_memory : docs-cn/13.reference-guide/3.system-configuration-items/91.global_write_halt_residual_memory.md - - ignore_replay_checksum_error : docs-cn/13.reference-guide/3.system-configuration-items/92.ignore_replay_checksum_error.md - - global_index_build_single_replica_timeout : docs-cn/13.reference-guide/3.system-configuration-items/93.global_index_build_single_replica_timeout.md - - high_priority_net_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/94.high_priority_net_thread_count.md - - ignore_replica_checksum_error : docs-cn/13.reference-guide/3.system-configuration-items/95.ignore_replica_checksum_error.md - - ignore_replay_checksum_error : docs-cn/13.reference-guide/3.system-configuration-items/96.ignore_replay_checksum_error-1.md - - index_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/97.index_cache_priority.md - - index_clog_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/98.index_clog_cache_priority.md - - index_info_block_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/99.index_info_block_cache_priority.md - - internal_sql_execute_timeout : docs-cn/13.reference-guide/3.system-configuration-items/100.internal_sql_execute_timeout.md - - large_query_worker_percentage : docs-cn/13.reference-guide/3.system-configuration-items/101.large_query_worker_percentage.md - - large_query_threshold : docs-cn/13.reference-guide/3.system-configuration-items/102.large_query_threshold.md - - leak_mod_to_check : docs-cn/13.reference-guide/3.system-configuration-items/103.leak_mod_to_check.md - - lease_time : docs-cn/13.reference-guide/3.system-configuration-items/104.lease_time.md - - location_cache_cpu_quota : docs-cn/13.reference-guide/3.system-configuration-items/105.location_cache_cpu_quota.md - - location_cache_expire_time : docs-cn/13.reference-guide/3.system-configuration-items/106.location_cache_expire_time.md - - location_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/107.location_cache_priority.md - - location_cache_refresh_min_interval : docs-cn/13.reference-guide/3.system-configuration-items/108.location_cache_refresh_min_interval.md - - location_fetch_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/109.location_fetch_concurrency.md - - location_refresh_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/110.location_refresh_thread_count.md - - log_archive_checkpoint_interval : docs-cn/13.reference-guide/3.system-configuration-items/111.log_archive_checkpoint_interval.md - - log_archive_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/112.log_archive_concurrency.md - - log_restore_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/113.log_restore_concurrency.md - - major_freeze_duty_time : docs-cn/13.reference-guide/3.system-configuration-items/114.major_freeze_duty_time.md - - max_kept_major_version_number : docs-cn/13.reference-guide/3.system-configuration-items/115.max_kept_major_version_number.md - - max_string_print_length : docs-cn/13.reference-guide/3.system-configuration-items/116.max_string_print_length.md - - max_syslog_file_count : docs-cn/13.reference-guide/3.system-configuration-items/117.max_syslog_file_count.md - - merge_stat_sampling_ratio : docs-cn/13.reference-guide/3.system-configuration-items/118.merge_stat_sampling_ratio.md - - major_compact_trigger : docs-cn/13.reference-guide/3.system-configuration-items/119.major_compact_trigger.md - - memory_chunk_cache_size : docs-cn/13.reference-guide/3.system-configuration-items/120.memory_chunk_cache_size.md - - memory_limit : docs-cn/13.reference-guide/3.system-configuration-items/121.memory_limit.md - - memory_limit_percentage : docs-cn/13.reference-guide/3.system-configuration-items/122.memory_limit_percentage.md - - memory_reserved : docs-cn/13.reference-guide/3.system-configuration-items/123.memory_reserved.md - - merge_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/124.merge_thread_count.md - - merger_check_interval : docs-cn/13.reference-guide/3.system-configuration-items/125.merger_check_interval.md - - merger_completion_percentage : docs-cn/13.reference-guide/3.system-configuration-items/126.merger_completion_percentage.md - - merger_switch_leader_duration_time : docs-cn/13.reference-guide/3.system-configuration-items/127.merger_switch_leader_duration_time.md - - merger_warm_up_duration_time : docs-cn/13.reference-guide/3.system-configuration-items/128.merger_warm_up_duration_time.md - - max_px_worker_count : docs-cn/13.reference-guide/3.system-configuration-items/129.max_px_worker_count.md - - migration_disable_time : docs-cn/13.reference-guide/3.system-configuration-items/130.migration_disable_time.md - - min_observer_version : docs-cn/13.reference-guide/3.system-configuration-items/131.min_observer_version.md - - minor_deferred_gc_time : docs-cn/13.reference-guide/3.system-configuration-items/132.minor_deferred_gc_time.md - - minor_freeze_times : docs-cn/13.reference-guide/3.system-configuration-items/133.minor_freeze_times.md - - minor_warm_up_duration_time : docs-cn/13.reference-guide/3.system-configuration-items/134.minor_warm_up_duration_time.md - - mysql_port : docs-cn/13.reference-guide/3.system-configuration-items/135.mysql_port.md - - minor_merge_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/136.minor_merge_concurrency.md - - multiblock_read_gap_size : docs-cn/13.reference-guide/3.system-configuration-items/137.multiblock_read_gap_size.md - - multiblock_read_size : docs-cn/13.reference-guide/3.system-configuration-items/138.multiblock_read_size.md - - micro_block_merge_verify_level : docs-cn/13.reference-guide/3.system-configuration-items/139.micro_block_merge_verify_level.md - - migrate_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/140.migrate_concurrency.md - - minor_compact_trigger : docs-cn/13.reference-guide/3.system-configuration-items/141.minor_compact_trigger.md - - memstore_limit_percentage : docs-cn/13.reference-guide/3.system-configuration-items/142.memstore_limit_percentage.md - - net_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/143.net_thread_count.md - - obconfig_url : docs-cn/13.reference-guide/3.system-configuration-items/144.obconfig_url.md - - ob_enable_batched_multi_statement : docs-cn/13.reference-guide/3.system-configuration-items/145.ob_enable_batched_multi_statement.md - - partition_table_check_interval : docs-cn/13.reference-guide/3.system-configuration-items/146.partition_table_check_interval.md - - partition_table_scan_batch_count : docs-cn/13.reference-guide/3.system-configuration-items/147.partition_table_scan_batch_count.md - - plan_cache_evict_interval : docs-cn/13.reference-guide/3.system-configuration-items/148.plan_cache_evict_interval.md - - px_task_size : docs-cn/13.reference-guide/3.system-configuration-items/149.px_task_size.md - - px_workers_per_cpu_quota : docs-cn/13.reference-guide/3.system-configuration-items/150.px_workers_per_cpu_quota.md - - replica_safe_remove_time : docs-cn/13.reference-guide/3.system-configuration-items/151.replica_safe_remove_time.md - - resource_hard_limit : docs-cn/13.reference-guide/3.system-configuration-items/152.resource_hard_limit.md - - resource_soft_limit : docs-cn/13.reference-guide/3.system-configuration-items/153.resource_soft_limit.md - - rootservice_async_task_queue_size : docs-cn/13.reference-guide/3.system-configuration-items/154.rootservice_async_task_queue_size.md - - rootservice_async_task_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/155.rootservice_async_task_thread_count.md - - rootservice_list : docs-cn/13.reference-guide/3.system-configuration-items/156.rootservice_list.md - - rootservice_ready_check_interval : docs-cn/13.reference-guide/3.system-configuration-items/157.rootservice_ready_check_interval.md - - row_compaction_update_limit : docs-cn/13.reference-guide/3.system-configuration-items/158.row_compaction_update_limit.md - - row_purge_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/159.row_purge_thread_count.md - - rpc_port : docs-cn/13.reference-guide/3.system-configuration-items/160.rpc_port.md - - rpc_timeout : docs-cn/13.reference-guide/3.system-configuration-items/161.rpc_timeout.md - - restore_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/162.restore_concurrency.md - - rootservice_memory_limit : docs-cn/13.reference-guide/3.system-configuration-items/163.rootservice_memory_limit.md - - rebuild_replica_data_lag_threshold : docs-cn/13.reference-guide/3.system-configuration-items/164.rebuild_replica_data_lag_threshold.md - - schema_history_expire_time : docs-cn/13.reference-guide/3.system-configuration-items/165.schema_history_expire_time-1.md - - ssl_client_authentication : docs-cn/13.reference-guide/3.system-configuration-items/166.ssl_client_authentication.md - - server_check_interval : docs-cn/13.reference-guide/3.system-configuration-items/167.server_check_interval.md - - server_data_copy_in_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/168.server_data_copy_in_concurrency.md - - server_data_copy_out_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/169.server_data_copy_out_concurrency.md - - server_permanent_offline_time : docs-cn/13.reference-guide/3.system-configuration-items/170.server_permanent_offline_time.md - - stack_size : docs-cn/13.reference-guide/3.system-configuration-items/171.stack_size.md - - server_balance_critical_disk_waterlevel : docs-cn/13.reference-guide/3.system-configuration-items/172.server_balance_critical_disk_waterlevel.md - - server_balance_disk_tolerance_percent : docs-cn/13.reference-guide/3.system-configuration-items/173.server_balance_disk_tolerance_percent.md - - system_memory : docs-cn/13.reference-guide/3.system-configuration-items/174.system_memory.md - - server_balance_cpu_mem_tolerance_percent : docs-cn/13.reference-guide/3.system-configuration-items/175.server_balance_cpu_mem_tolerance_percent.md - - server_cpu_quota_max : docs-cn/13.reference-guide/3.system-configuration-items/176.server_cpu_quota_max.md - - server_cpu_quota_min : docs-cn/13.reference-guide/3.system-configuration-items/177.server_cpu_quota_min.md - - sql_audit_memory_limit : docs-cn/13.reference-guide/3.system-configuration-items/178.sql_audit_memory_limit.md - - sys_bkgd_io_high_percentage : docs-cn/13.reference-guide/3.system-configuration-items/179.sys_bkgd_io_high_percentage.md - - sys_bkgd_io_low_percentage : docs-cn/13.reference-guide/3.system-configuration-items/180.sys_bkgd_io_low_percentage.md - - sys_bkgd_io_timeout : docs-cn/13.reference-guide/3.system-configuration-items/181.sys_bkgd_io_timeout.md - - sys_bkgd_net_percentage : docs-cn/13.reference-guide/3.system-configuration-items/182.sys_bkgd_net_percentage.md - - sys_bkgd_migration_change_member_list_timeout : docs-cn/13.reference-guide/3.system-configuration-items/183.sys_bkgd_migration_change_member_list_timeout.md - - sys_bkgd_migration_retry_num : docs-cn/13.reference-guide/3.system-configuration-items/184.sys_bkgd_migration_retry_num.md - - syslog_level : docs-cn/13.reference-guide/3.system-configuration-items/185.syslog_level.md - - switchover_process_thread_count : docs-cn/13.reference-guide/3.system-configuration-items/186.switchover_process_thread_count.md - - system_cpu_quota : docs-cn/13.reference-guide/3.system-configuration-items/187.system_cpu_quota.md - - sys_cpu_limit_trigger : docs-cn/13.reference-guide/3.system-configuration-items/188.sys_cpu_limit_trigger.md - - syslog_io_bandwidth_limit : docs-cn/13.reference-guide/3.system-configuration-items/189.syslog_io_bandwidth_limit.md - - tablet_size : docs-cn/13.reference-guide/3.system-configuration-items/190.tablet_size.md - - tableapi_transport_compress_func : docs-cn/13.reference-guide/3.system-configuration-items/191.tableapi_transport_compress_func.md - - tenant_task_queue_size : docs-cn/13.reference-guide/3.system-configuration-items/192.tenant_task_queue_size.md - - tenant_groups : docs-cn/13.reference-guide/3.system-configuration-items/193.tenant_groups.md - - trace_log_slow_query_watermark : docs-cn/13.reference-guide/3.system-configuration-items/194.trace_log_slow_query_watermark.md - - trace_log_sampling_interval : docs-cn/13.reference-guide/3.system-configuration-items/195.trace_log_sampling_interval.md - - trx_2pc_retry_interval : docs-cn/13.reference-guide/3.system-configuration-items/196.trx_2pc_retry_interval.md - - trx_force_kill_threshold : docs-cn/13.reference-guide/3.system-configuration-items/197.trx_force_kill_threshold.md - - tde_method : docs-cn/13.reference-guide/3.system-configuration-items/198.tde_method.md - - token_reserved_percentage : docs-cn/13.reference-guide/3.system-configuration-items/199.token_reserved_percentage.md - - unit_balance_resource_weight : docs-cn/13.reference-guide/3.system-configuration-items/200.unit_balance_resource_weight.md - - user_block_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/201.user_block_cache_priority.md - - user_row_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/202.user_row_cache_priority.md - - user_tab_col_stat_cache_priority : docs-cn/13.reference-guide/3.system-configuration-items/203.user_tab_col_stat_cache_priority.md - - user_iort_up_percentage : docs-cn/13.reference-guide/3.system-configuration-items/204.user_iort_up_percentage.md - - use_large_pages : docs-cn/13.reference-guide/3.system-configuration-items/205.use_large_pages.md - - virtual_table_location_cache_expire_time : docs-cn/13.reference-guide/3.system-configuration-items/206.virtual_table_location_cache_expire_time.md - - workers_per_cpu_quota : docs-cn/13.reference-guide/3.system-configuration-items/207.workers_per_cpu_quota.md - - wait_leader_batch_count : docs-cn/13.reference-guide/3.system-configuration-items/208.wait_leader_batch_count.md - - writing_throttling_maximum_duration : docs-cn/13.reference-guide/3.system-configuration-items/209.writing_throttling_maximum_duration.md - - writing_throttling_trigger_percentage : docs-cn/13.reference-guide/3.system-configuration-items/210.writing_throttling_trigger_percentage.md - - weak_read_version_refresh_interval : docs-cn/13.reference-guide/3.system-configuration-items/211.weak_read_version_refresh_interval.md - - workarea_size_policy : docs-cn/13.reference-guide/3.system-configuration-items/212.workarea_size_policy.md - - zone : docs-cn/13.reference-guide/3.system-configuration-items/213.zone.md - - zone_merge_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/214.zone_merge_concurrency.md - - zone_merge_order : docs-cn/13.reference-guide/3.system-configuration-items/215.zone_merge_order.md - - zone_merge_timeout : docs-cn/13.reference-guide/3.system-configuration-items/216.zone_merge_timeout.md - - ob_ssl_invited_common_names : docs-cn/13.reference-guide/3.system-configuration-items/217.ob_ssl_invited_common_names.md - - ssl_external_kms_info : docs-cn/13.reference-guide/3.system-configuration-items/218.ssl_external_kms_info.md - - ob_event_history_recycle_interval : docs-cn/13.reference-guide/3.system-configuration-items/219.ob_event_history_recycle_interval.md - - backup_backup_dest : docs-cn/13.reference-guide/3.system-configuration-items/220.backup_backup_dest.md - - backup_log_archive_checkpoint_interval : docs-cn/13.reference-guide/3.system-configuration-items/221.backup_log_archive_checkpoint_interval.md - - plsql_ccflags : docs-cn/13.reference-guide/3.system-configuration-items/222.plsql_ccflags.md - - plsql_code_type : docs-cn/13.reference-guide/3.system-configuration-items/223.plsql_code_type.md - - plsql_debug : docs-cn/13.reference-guide/3.system-configuration-items/224.plsql_debug.md - - plsql_optimize_level : docs-cn/13.reference-guide/3.system-configuration-items/225.plsql_optimize_level.md - - plsql_v2_compatibility : docs-cn/13.reference-guide/3.system-configuration-items/226.plsql_v2_compatibility.md - - plsql_warnings : docs-cn/13.reference-guide/3.system-configuration-items/227.plsql_warnings.md - - recyclebin_object_expire_time : docs-cn/13.reference-guide/3.system-configuration-items/228.recyclebin_object_expire_time.md - - log_archive_batch_buffer_limit : docs-cn/13.reference-guide/3.system-configuration-items/229.log_archive_batch_buffer_limit.md - - clog_disk_utilization_threshold : docs-cn/13.reference-guide/3.system-configuration-items/230.clog_disk_utilization_threshold.md - - backup_backup_archive_log_batch_count : docs-cn/13.reference-guide/3.system-configuration-items/231.backup_backup_archive_log_batch_count.md - - backup_backup_archivelog_retry_interval : docs-cn/13.reference-guide/3.system-configuration-items/232.backup_backup_archivelog_retry_interval.md - - backup_backupset_batch_count : docs-cn/13.reference-guide/3.system-configuration-items/233.backup_backupset_batch_count.md - - backup_backupset_retry_interval : docs-cn/13.reference-guide/3.system-configuration-items/234.backup_backupset_retry_interval.md - - open_cursors : docs-cn/13.reference-guide/3.system-configuration-items/235.open_cursors.md - - fast_recovery_concurrency : docs-cn/13.reference-guide/3.system-configuration-items/236.fast_recovery_concurrency.md - - 预留关键字 : docs-cn/13.reference-guide/4.reserved-keywords.md - - 社区贡献 : - - 如何贡献 : docs-cn/15.community-contribution/1.how-to-contribute.md - - 代码风格 : docs-cn/15.community-contribution/2.code-style.md - - Pull Request 与 Commit 信息规范 : docs-cn/15.community-contribution/3.pull-request-and-commit-specifications.md - - OceanBase Roadmap : docs-cn/16.oceanbase-roadmap.md - - - 小白玩转OB : - - 欢迎来到OceanBase初级训练营: junior-training/index.md - - OceanBase 大赛 : - - 数据库管理系统实现基础讲义: lectures/index.md - - 第1章 数据库管理系统概述: lectures/lecture-1.md - - 第2章 数据库的存储结构: lectures/lecture-2.md - - 第3章 索引结构: lectures/lecture-3.md - - 第4章 查询处理: lectures/lecture-4.md - - 第5章 查询优化: lectures/lecture-5.md - - 第6章 事务处理: lectures/lecture-6.md - - 参考资料: lectures/references.md - - 版权声明: lectures/copyright.md \ No newline at end of file diff --git a/docs/requirements.txt b/docs/requirements.txt deleted file mode 100644 index b4ee4e868acc96f0c62574767a89c0c09d03dbee..0000000000000000000000000000000000000000 --- a/docs/requirements.txt +++ /dev/null @@ -1,11 +0,0 @@ -mkdocs==1.1.2 -mkdocs-oceanbase -mkdocs-macros-plugin -mike -mdx_truly_sane_lists -mkdocs_latest_release_plugin -mkdocs-git-revision-date-localized-plugin -weasyprint -mkdocs-with-pdf -qrcode -mkdocs-material