add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/hive.md Normal file
View File

@@ -0,0 +1,20 @@
# hive
> Apache Hive 的 CLI 工具。
> 更多信息:<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+Cli>。
- 启动 Hive 交互式 shell
`hive`
- 运行 HiveQL
`hive -e "{{hiveql_query}}"`
- 运行带有变量替换的 HiveQL 文件:
`hive --define {{key}}={{value}} -f {{path/to/file.sql}}`
- 使用 HiveConfig 运行 HiveQL例如 `mapred.reduce.tasks=32`
`hive --hiveconf {{conf_name}}={{conf_value}}`