跳到主要内容

数据集命令:dataset

列出所有数据集:list

命令入口:

bohr dataset list

概要:

Usage:
bohr dataset list [flags]

Aliases:
list, ls

Flags:
--csv output with CSV format
-h, --help help for list
--json output with JSON format
--noheader does not print header information
-n, --number int number of results to be displayed (default 50)
-p, --projectId int Specify project ID to filter results
-t, --title string Search title
--yaml output in YAML format

参数说明表:

参数缩写说明必填
--number-n显示多少个数据集(默认 50 个)
--projectId-p显示项目id下的数据集
--title-t搜索数据集名称

案例:

$ bohr dataset list  -t bigfile --yaml 
# 以 YAML 格式查看最近 50 个名称包含 bigfile 的数据集
$ bohr dataset list -p 123 -n 10
# 查看项目 ID 为 123 的前 10 个数据集 (按 Ctrl+C 退出)

dataset list

删除数据集:delete

命令入口:

bohr dataset delete

概要:

Usage:
bohr dataset delete <datasetId>... [flags]

Flags:
--datasetId ints DatasetId(s) (can be used multiple times)
-h, --help help for delete

参数说明表:

参数缩写说明必填
--datasetId-数据集Id

案例:

$ bohr dataset delete  123 234
# 删除 ID 为 123 和 234 的数据集

创建数据集:create

在传输过程中如果发生了失败,可以通过重新执行相同的命令,并在根据提示输入y即可续传。

命令入口:

bohr dataset create

概要:

Usage:
bohr dataset create [flags]

Examples:
$ bohr dataset create


Flags:
-m, --comment string dataset description
-h, --help help for create
-l, --lp string file local path
-n, --name string dataset name
-p, --path string dataset path
-i, --pid int project id

参数说明表:

参数缩写说明必填
--comment-m数据集描述
--name-n数据集名字
--path-p数据集路径
--pid-i项目id
--lp-l上传文件的本地路径

案例:

$ bohr dataset create -n bigfile -p bigfile -i 26611 -l "/Users/dp/Downloads/test"
# 将本地的 test 文件夹上传到名为 bigfile 的数据集中
# 上传过程中可中断,再次执行命令并输入 y 继续上传

dataset create