BendSQL
BendSQL 是一个专门为 Databend 设计的命令行工具。它允许用户与 Databend 建立连接,并直接从 CLI 窗口执行查询。
BendSQL 特别适用于那些偏好命令行界面并需要经常与 Databend 打交道的用户。通过 BendSQL,用户可以轻松高效地管理其数据库、表和数据,并轻松执行各种查询和操作。
安装 BendSQL
BendSQL 提供了多种安装选项,以适应不同的平台和偏好。从下面的章节中选择您偏好的方法,或从 BendSQL 发布页面 下载安装包手动安装。
Shell 脚本
BendSQL 提供了一个方便的 Shell 脚本用于安装。您可以选择以下两种选项之一:
默认安装
将 BendSQL 安装到用户的主目录(~/.bendsql):
curl -fsSL https://repo.databend.com/install/bendsql.sh | bash
curl -fsSL https://repo.databend.com/install/bendsql.sh | bash
B E N D S Q L
Installer
--------------------------------------------------------------------------------
Website: https://databend.com
Docs: https://docs.databend.com
Github: https://github.com/databendlabs/bendsql
--------------------------------------------------------------------------------
>>> 我们将通过 https://repo.databend.com/bendsql/v0.22.2/ 的预构建存档安装 BendSQL
>>> 准备继续吗?(y/n)
>>> 请输入 y 或 n。
>>> y
--------------------------------------------------------------------------------
>>> 通过 https://repo.databend.com/bendsql/v0.22.2/bendsql-aarch64-apple-darwin.tar.gz 下载 BendSQL ✓
>>> 解压存档到 /Users/eric/.bendsql ... ✓
>>> 将 BendSQL 路径添加到 /Users/eric/.zprofile ✓
>>> 将 BendSQL 路径添加到 /Users/eric/.profile ✓
>>> 安装成功!🚀
>>> 启动 BendSQL:
bendsql --help
>>> 更多信息请访问 https://github.com/databendlabs/bendsql
使用 --prefix
自定义安装
将 BendSQL 安装到指定目录(例如,/usr/local):
curl -fsSL https://repo.databend.com/install/bendsql.sh | bash -s -- -y --prefix /usr/local
curl -fsSL https://repo.databend.com/install/bendsql.sh | bash -s -- -y --prefix /usr/local
B E N D S Q L
Installer
--------------------------------------------------------------------------------
Website: https://databend.com
Docs: https://docs.databend.com
Github: https://github.com/databendlabs/bendsql
--------------------------------------------------------------------------------
>>> 通过 https://repo.databend.com/bendsql/v0.22.2/bendsql-aarch64-apple-darwin.tar.gz 下载 BendSQL ✓
>>> 解压存档到 /usr/local ... ✓
>>> 安装成功!🚀
>>> 启动 BendSQL:
bendsql --help
>>> 更多信息请访问 https://github.com/databendlabs/bendsql
Homebrew(适用于 macOS)
BendSQL 可以通过 Homebrew 在 macOS 上轻松安装,只需一个简单的命令:
brew install databendcloud/homebrew-tap/bendsql
Apt(适用于 Ubuntu/Debian)
在 Ubuntu 和 Debian 系统上,BendSQL 可以通过 Apt 包管理器安装。根据发行版版本选择适当的说明。
DEB822 格式(Ubuntu-22.04/Debian-12 及更高版本)
sudo curl -L -o /etc/apt/sources.list.d/databend.sources https://repo.databend.com/deb/databend.sources
旧格式(Ubuntu-20.04/Debian-11 及更早版本)
sudo curl -L -o /usr/share/keyrings/databend-keyring.gpg https://repo.databend.com/deb/databend.gpg
sudo curl -L -o /etc/apt/sources.list.d/databend.list https://repo.databend.com/deb/databend.list
最后,更新包列表并安装 BendSQL:
sudo apt update
sudo apt install bendsql
Cargo(Rust 包管理器)
要使用 Cargo 安装 BendSQL,可以使用 cargo-binstall
工具或通过提供的命令从源代码构建。
在使用 Cargo 安装之前,请确保您的计算机上已安装完整的 Rust 工具链和 cargo
命令。如果没有,请按照 https://rustup.rs/ 的安装指南进行安装。
使用 cargo-binstall
请参考 Cargo B(inary)Install - 安装 安装 cargo-binstall
并启用 cargo binstall <crate-name>
子命令。
cargo binstall bendsql
从源代码构建
从源代码构建时,某些依赖项可能涉及编译 C/C++ 代码。请确保您的计算机上已安装 GCC/G++ 或 Clang 工具链。
cargo install bendsql
用户认证
如果您连接到自托管的 Databend 实例,可以使用 databend-query.toml 配置文件中指定的管理员用户,或者使用通过 CREATE USER 命令创建的 SQL 用户进行连接。
对于连接到 Databend Cloud,您可以使用默认的 cloudapp
用户或通过 CREATE USER 命令创建的 SQL 用户。请注意,您用于登录 Databend Cloud 控制台 的用户账户不能用于连接 Databend Cloud。
教程
BendSQL 设置
BendSQL 提供了一系列设置,允许您定义查询结果的呈现方式:
设置 | 描述 |
---|---|
display_pretty_sql | 当设置为 true 时,SQL 查询将以视觉上吸引人的方式格式化,使其更易于阅读和理解。 |
prompt | 命令行界面中显示的提示符,通常指示用户、计算集群和正在访问的数据库。 |
progress_color | 指定用于进度指示器的颜色,例如在执行需要一些时间完成的查询时。 |
show_progress | 当设置为 true 时,将显示进度指示器,以显示长时间运行的查询或操作的进度。 |
show_stats | 如果为 true ,则在执行每个查询后将显示查询统计信息,如执行时间、读取的行数和处理的字节数。 |
max_display_rows | 设置查询结果输出中将显示的最大行数。 |
max_col_width | 设置每个列显示渲染的最大宽度(以字符为单位)。小于 3 的值将禁用限制。 |
max_width | 设置整个显示输出的最大宽度(以字符为单位)。值为 0 时,默认使用终端窗口的宽度。 |
output_format | 设置用于显示查询结果的格式(table 、csv 、tsv 、null )。 |
expand | 控制查询输出的显示方式是作为单独的记录还是以表格格式显示。可用值:on 、off 和 auto 。 |
multi_line | 确定是否允许多行输入 SQL 查询。当设置为 true 时,查询可以跨越多行,以提高可读性。 |
replace_newline | 指定查询结果输出中的换行符是否应替换为空格。这可以防止显示中出现意外的换行。 |
有关每个设置的详细信息,请参阅下面的参考信息:
display_pretty_sql
display_pretty_sql
设置控制 SQL 查询是否以视觉格式化的方式显示。当设置为 false
时,如第一个查询所示,SQL 查询不会格式化为视觉上吸引人的方式。相反,当设置为 true
时,如第二个查询所示,SQL 查询将以视觉上吸引人的方式格式化,使其更易于阅读和理解。
root@localhost:8000/default> !set display_pretty_sql false
root@localhost:8000/default> SELECT TO_STRING(ST_ASGEOJSON(ST_GEOMETRYFROMWKT('SRID=4326;LINESTRING(400000 6000000, 401000 6010000)'))) AS pipeline_geojson;
┌─────────────────────────────────────────────────────────────────────────┐
│ pipeline_geojson │
│ String │
├─────────────────────────────────────────────────────────────────────────┤
│ {"coordinates":[[400000,6000000],[401000,6010000]],"type":"LineString"} │
└─────────────────────────────────────────────────────────────────────────┘
1 row read in 0.063 sec. Processed 1 row, 1 B (15.76 rows/s, 15 B/s)
root@localhost:8000/default> !set display_pretty_sql true
root@localhost:8000/default> SELECT TO_STRING(ST_ASGEOJSON(ST_GEOMETRYFROMWKT('SRID=4326;LINESTRING(400000 6000000, 401000 6010000)'))) AS pipeline_geojson;
SELECT
TO_STRING(
ST_ASGEOJSON(
ST_GEOMETRYFROMWKT(
'SRID=4326;LINESTRING(400000 6000000, 401000 6010000)'
)
)
) AS pipeline_geojson
┌─────────────────────────────────────────────────────────────────── ──────┐
│ pipeline_geojson │
│ String │
├─────────────────────────────────────────────────────────────────────────┤
│ {"coordinates":[[400000,6000000],[401000,6010000]],"type":"LineString"} │
└─────────────────────────────────────────────────────────────────────────┘
1 row read in 0.087 sec. Processed 1 row, 1 B (11.44 rows/s, 11 B/s)
prompt
prompt
设置控制命令行界面提示符的格式。在下面的示例中,它最初设置为显示用户和计算集群({user}@{warehouse}
)。在更新为 {user}@{warehouse}/{database}
后,提示符现在包括用户、计算集群和数据库。
root@localhost:8000/default> !set prompt {user}@{warehouse}
root@localhost:8000 !configs
Settings {
display_pretty_sql: true,
prompt: "{user}@{warehouse}",
progress_color: "cyan",
show_progress: true,
show_stats: true,
max_display_rows: 40,
max_col_width: 1048576,
max_width: 1048576,
output_format: Table,
quote_style: Necessary,
expand: Off,
time: None,
multi_line: true,
replace_newline: true,
}
root@localhost:8000 !set prompt {user}@{warehouse}/{database}
root@localhost:8000/default
progress_color
progress_color
设置控制查询执行期间进度指示器的颜色。在此示例中,颜色已设置为 blue
:
root@localhost:8000/default> !set progress_color blue
show_progress
当设置为 true
时,在查询执行期间显示进度信息。进度信息包括已处理的行数、查询中的总行数、每秒处理的行数、已处理的内存量以及每秒处理的内存量。
root@localhost:8000/default> !set show_progress true
root@localhost:8000/default> select * from numbers(1000000000000000);
⠁ [00:00:08] 处理 18.02 百万/1 千万亿 (2.21 百万行/秒), 137.50 MiB/7.11 PiB (16.88 MiB/秒) ░
show_stats
show_stats
设置控制是否在每次查询执行后显示查询统计信息。当设置为 false
时,如以下示例中的第一个查询,不显示查询统计信息。相反,当设置为 true
时,如第二个查询,在每次查询执行后显示执行时间、读取的行数和处理的字节数等查询统计信息。
root@localhost:8000/default> !set show_stats false
root@localhost:8000/default> select now();
┌────────────────────────────┐
│ now() │
│ Timestamp │
├────────────────────────────┤
│ 2024-04-23 23:27:11.538673 │
└────────────────────────────┘
root@localhost:8000/default> !set show_stats true
root@localhost:8000/default> select now();
┌────────────────────────────┐
│ now() │
│ Timestamp │
├────────────────────────────┤
│ 2024-04-23 23:49:04.754296 │
└────────────────────────────┘
1 行读取于 0.045 秒。处理了 1 行,1 B (22.26 行/秒, 22 B/秒)
max_display_rows
max_display_rows
设置控制查询结果输出中显示的最大行数。当设置为 5
时,如以下示例所示,查询结果中仅显示最多 5 行。剩余的行用 (5 显示) 表示。
root@localhost:8000/default> !set max_display_rows 5
root@localhost:8000/default> SELECT * FROM system.configs;
┌──────────────────────────────────────────────────────┐
│ group │ name │ value │ description │
│ String │ String │ String │ String │
├───────────┼──────────────────┼─────────┼─────────────┤
│ query │ tenant_id │ default │ │
│ query │ cluster_id │ default │ │
│ query │ num_cpus │ 0 │ │
│ · │ · │ · │ · │
│ · │ · │ · │ · │
│ · │ · │ · │ · │
│ storage │ cos.endpoint_url │ │ │
│ storage │ cos.root │ │ │
│ 176 行 │ │ │ │
│ (5 显示) │ │ │ │
└──────────────────────────────────────────────────────┘
176 行读取于 0.059 秒。处理了 176 行,10.36 KiB (2.98 千行/秒, 175.46 KiB/秒)
max_col_width
& max_width
max_col_width
和 max_width
设置分别指定单个列和整个显示输出的最大允许宽度(以字符为单位)。以下示例将列显示宽度设置为 10 个字符,整个显示宽度设置为 100 个字符:
// highlight-next-line
root@localhost:8000/default> .max_col_width 10
// highlight-next-line
root@localhost:8000/default> .max_width 100
root@localhost:8000/default> select * from system.settings;
┌──────────────────────────────────────────────────────────────────────────────────────────────────┐
│ name │ value │ default │ range │ level │ description │ type │
│ String │ String │ String │ String │ String │ String │ String │
├────────────┼─────────┼─────────┼──────────┼─────────┼───────────────────────────────────┼────────┤
│ acquire... │ 15 │ 15 │ None │ DEFAULT │ 设置最大超时时间(以秒为单位)... │ UInt64 │
│ aggrega... │ 0 │ 0 │ None │ DEFAULT │ 设置最大内存量... │ UInt64 │
│ aggrega... │ 0 │ 0 │ [0, 100] │ DEFAULT │ 设置最大内存比率... │ UInt64 │
│ auto_co... │ 50 │ 50 │ None │ DEFAULT │ 触发自动压缩的阈值... │ UInt64 │
│ collation │ utf8 │ utf8 │ ["utf8"] │ DEFAULT │ 设置字符排序规则... │ String │
│ · │ · │ · │ · │ · │ · │ · │
│ · │ · │ · │ · │ · │ · │ · │
│ · │ · │ · │ · │ · │ · │ · │
│ storage... │ 1048576 │ 1048576 │ None │ DEFAULT │ 设置缓冲区字节大小... │ UInt64 │
│ table_l... │ 10 │ 10 │ None │ DEFAULT │ 设置表的秒数... │ UInt64 │
│ timezone │ UTC │ UTC │ None │ DEFAULT │ 设置时区... │ String │
│ unquote... │ 0 │ 0 │ None │ DEFAULT │ 确定 Databend 是否... │ UInt64 │
│ use_par... │ 0 │ 0 │ [0, 1] │ DEFAULT │ 此设置已弃用... │ UInt64 │
│ 96 行 │ │ │ │ │ │ │
│ (10 显示) │ │ │ │ │ │ │
└──────────────────────────────────────────────────────────────────────────────────────────────────┘
96 行读取于 0.040 秒。处理了 96 行,16.52 KiB (2.38 千行/秒, 410.18 KiB/秒)
output_format
通过将 output_format
设置为 table
、csv
、tsv
或 null
,您可以控制查询结果的格式。table
格式以带有列标题的表格格式呈现结果,而 csv
和 tsv
格式分别提供逗号分隔值和制表符分隔值,null
格式则完全抑制输出格式。
root@localhost:8000/default> !set output_format table
root@localhost:8000/default> show users;
┌────────────────────────────────────────────────────────────────────────────┐
│ name │ hostname │ auth_type │ is_configured │ default_role │ disabled │
│ String │ String │ String │ String │ String │ Boolean │
├────────┼──────────┼─────────────┼───────────────┼───────────────┼──────────┤
│ root │ % │ no_password │ YES │ account_admin │ false │
└────────────────────────────────────────────────────────────────────────────┘
1 行读取于 0.032 秒。处理了 1 行,113 B (31.02 行/秒, 3.42 KiB/秒)
root@localhost:8000/default> !set output_format csv
root@localhost:8000/default> show users;
root,%,no_password,YES,account_admin,false
1 行读取于 0.062 秒。处理了 1 行,113 B (16.03 行/秒, 1.77 KiB/秒)
root@localhost:8000/default> !set output_format tsv
root@localhost:8000/default> show users;
root % no_password YES account_admin false
1 行读取于 0.076 秒。处理了 1 行,113 B (13.16 行/秒, 1.45 KiB/秒)
root@localhost:8000/default> !set output_format null
root@localhost:8000/default> show users;
1 行读取于 0.036 秒。处理了 1 行,113 B (28.1 行/秒, 3.10 KiB/秒)
expand
expand
设置控制查询输出的显示方式是作为单独的记录还是以表格格式显示。当 expand
设置为 auto
时,系统会根据查询返回的行数自动确定如何显示输出。如果查询仅返回一行,则输出显示为单个记录。
root@localhost:8000/default> !set expand on
root@localhost:8000/default> show users;
-[ RECORD 1 ]-----------------------------------
name: root
hostname: %
auth_type: no_password
is_configured: YES
default_role: account_admin
disabled: false
1 行读取于 0.055 秒。处理了 1 行,113 B (18.34 行/秒, 2.02 KiB/秒)
root@localhost:8000/default> !set expand off
root@localhost:8000/default> show users;
┌────────────────────────────────────────────────────────────────────────────┐
│ name │ hostname │ auth_type │ is_configured │ default_role │ disabled │
│ String │ String │ String │ String │ String │ Boolean │
├────────┼──────────┼─────────────┼───────────────┼───────────────┼──────────┤
│ root │ % │ no_password │ YES │ account_admin │ false │
└────────────────────────────────────────────────────────────────────────────┘
1 行读取于 0.046 秒。处理了 1 行,113 B (21.62 行/秒, 2.39 KiB/秒)
root@localhost:8000/default> !set expand auto
root@localhost:8000/default> show users;
-[ RECORD 1 ]-----------------------------------
name: root
hostname: %
auth_type: no_password
is_configured: YES
default_role: account_admin
disabled: false
1 行读取于 0.037 秒。处理了 1 行,113 B (26.75 行/秒, 2.95 KiB/秒)
multi_line
当 multi_line
设置为 true
时,允许输入跨越多行。因此,SQL 查询以每个子句在单独的行上输入,以提高可读性和组织性。
root@localhost:8000/default> !set multi_line true;
root@localhost:8000/default> SELECT *
> FROM system.configs;
┌──────────────────────────────────────────────────────┐
│ group │ name │ value │ description │
│ String │ String │ String │ String │
├───────────┼──────────────────┼─────────┼─────────────┤
│ query │ tenant_id │ default │ │
│ query │ cluster_id │ default │ │
│ query │ num_cpus │ 0 │ │
│ · │ · │ · │ · │
│ · │ · │ · │ · │
│ · │ · │ · │ · │
│ storage │ cos.endpoint_url │ │ │
│ storage │ cos.root │ │ │
│ 176 rows │ │ │ │
│ (5 shown) │ │ │ │
└──────────────────────────────────────────────────────┘
176 rows read in 0.060 sec. Processed 176 rows, 10.36 KiB (2.91 thousand rows/s, 171.39 KiB/s)
replace_newline
replace_newline
设置决定是否将换行符 (\n) 替换为字面字符串 (\n) 输出。在下面的示例中,replace_newline
设置为 true
。因此,当选择字符串 'Hello\nWorld' 时,换行符 (\n) 被替换为字面字符串 (\n)。因此,输出显示 'Hello\nWorld' 为 'Hello\nWorld',而不是显示换行符:
root@localhost:8000/default> !set replace_newline true
root@localhost:8000/default> SELECT 'Hello\nWorld' AS message;
┌──────────────┐
│ message │
│ String │
├──────────────┤
│ Hello\nWorld │
└──────────────┘
1 row read in 0.056 sec. Processed 1 row, 1 B (18 rows/s, 17 B/s)
root@localhost:8000/default> !set replace_newline false;
root@localhost:8000/default> SELECT 'Hello\nWorld' AS message;
┌─────────┐
│ message │
│ String │
├─────────┤
│ Hello │
│ World │
└─────────┘
1 row read in 0.067 sec. Processed 1 row, 1 B (14.87 rows/s, 14 B/s)
配置 BendSQL 设置
您有以下选项来配置 BendSQL 设置:
-
使用
!set <setting> <value>
命令。更多信息,请参阅 实用命令。 -
在配置文件
~/.config/bendsql/config.toml
中添加和配置设置。为此,打开文件并在[settings]
部分下添加您的设置。以下示例将max_display_rows
设置为 10,max_width
设置为 100:
...
[settings]
max_display_rows = 10
max_width = 100
...
- 在运行时通过启动 BendSQL 并指定格式为
.<setting> <value>
的设置来配置设置。请注意,以这种方式配置的设置仅在当前会话中生效。
root@localhost:8000/default> .max_display_rows 10
root@localhost:8000/default> .max_width 100
实用命令
BendSQL 为用户提供了各种命令,以简化他们的工作流程并自定义他们的体验。以下是 BendSQL 中可用的命令概述:
命令 | 描述 |
---|---|
!exit | 退出 BendSQL。 |
!quit | 退出 BendSQL。 |
!configs | 显示当前 BendSQL 设置。 |
!set <setting> <value> | 修改 BendSQL 设置。 |
!source <sql_file> | 执行 SQL 文件。 |
有关每个命令的示例,请参阅下面的参考信息:
!exit
断开与 Databend 的连接并退出 BendSQL。
➜ ~ bendsql
Welcome to BendSQL 0.17.0-homebrew.
Connecting to localhost:8000 as user root.
Connected to Databend Query v1.2.427-nightly-b1b622d406(rust-1.77.0-nightly-2024-04-20T22:12:35.318382488Z)
root@localhost:8000/default> !exit
Bye~
!quit
断开与 Databend 的连接并退出 BendSQL。
➜ ~ bendsql
Welcome to BendSQL 0.17.0-homebrew.
Connecting to localhost:8000 as user root.
Connected to Databend Query v1.2.427-nightly-b1b622d406(rust-1.77.0-nightly-2024-04-20T22:12:35.318382488Z)
root@localhost:8000/default> !quit
Bye~
➜ ~
!configs
显示当前 BendSQL 设置。
root@localhost:8000/default> !configs
Settings {
display_pretty_sql: true,
prompt: "{user}@{warehouse}/{database}> ",
progress_color: "cyan",
show_progress: true,
show_stats: true,
max_display_rows: 40,
max_col_width: 1048576,
max_width: 1048576,
output_format: Table,
quote_style: Necessary,
expand: Off,
time: None,
multi_line: true,
replace_newline: true,
}
!set <setting> <value>
修改 BendSQL 设置。
root@localhost:8000/default> !set display_pretty_sql false
!source <sql_file>
执行 SQL 文件。
➜ ~ more ./desktop/test.sql
CREATE TABLE test_table (
id INT,
name VARCHAR(50)
);
INSERT INTO test_table (id, name) VALUES (1, 'Alice');
INSERT INTO test_table (id, name) VALUES (2, 'Bob');
INSERT INTO test_table (id, name) VALUES (3, 'Charlie');
➜ ~ bendsql
Welcome to BendSQL 0.17.0-homebrew.
Connecting to localhost:8000 as user root.
Connected to Databend Query v1.2.427-nightly-b1b622d406(rust-1.77.0-nightly-2024-04-20T22:12:35.318382488Z)
root@localhost:8000/default> !source ./desktop/test.sql
root@localhost:8000/default> SELECT * FROM test_table;
SELECT
*
FROM
test_table
┌────────────────────────────────────┐
│ id │ name │
│ Nullable(Int32) │ Nullable(String) │
├─────────────────┼──────────────────┤
│ 1 │ Alice │
│ 2 │ Bob │
│ 3 │ Charlie │
└────────────────────────────────────┘
3 rows read in 0.064 sec. Processed 3 rows, 81 B (46.79 rows/s, 1.23 KiB/s)