09 2023 档案

两个命令之间连接&&、||、&、|的区别
摘要:两个命令之间连接 说明 command1 && command2 第二个命令仅在第一个命令成功执行(返回零退出状态)时才会执行。 command1 || command2 第二个命令仅在第一个命令失败(返回非零退出状态)时才会执行。 command1 & command2 将多个命令同时启动,而不必 阅读全文

posted @ 2023-09-18 11:56 cag2050 阅读(116) 评论(0) 推荐(0) 编辑

Kerberos资料
摘要:资料 说明 10.2.2 基于Kerberos的认证(比较好的介绍资料) https://weread.qq.com/web/reader/4b932650813ab80dag016370k9f6326602389f61408e3715 阅读全文

posted @ 2023-09-18 11:37 cag2050 阅读(15) 评论(0) 推荐(0) 编辑

Shell操作符说明
摘要:Shell操作符说明 说明 [[ expression ]] 双方括号命令expression可以使用test命令中的标准字符串比较。除此之外,它还提供了test命令所不具备的另一个特性——模式匹配。当在双方括号内使用==运算符或!=运算符时,运算符的右侧被视为通配符。如果使用的是=~运算符,则运算 阅读全文

posted @ 2023-09-16 19:27 cag2050 阅读(11) 评论(0) 推荐(0) 编辑

Kerberos知识点
摘要:hive jdbc连接串中的principal参数值,为hive-site.xml中hive.server2.authentication.kerberos.principal配置项的值;比如: <property> <name>hive.server2.authentication.kerbero 阅读全文

posted @ 2023-09-16 15:30 cag2050 阅读(35) 评论(0) 推荐(0) 编辑

Hive的分区
摘要:在下面的代码中,我们创建了名为emp的分区表,使用关键字partitioned by: create table emp( name string, age int ) partitioned by (provice string,city string); 在这里,用partitioned by指 阅读全文

posted @ 2023-09-16 13:27 cag2050 阅读(43) 评论(0) 推荐(0) 编辑

Hive的ConfigurationProperties
摘要:Version Information Hive 0.14.0 adds new parameters to the default white list (see HIVE-8534). Hive 1.1.0 removes some parameters (see HIVE-9331). Hiv 阅读全文

posted @ 2023-09-15 14:04 cag2050 阅读(4) 评论(0) 推荐(0) 编辑

Doris 知识点
摘要:列映射的目的主要是描述导入文件中各个列的信息,相当于为源数据中的列定义名称。通过描述列映射关系,我们可以将于表中列顺序不同、列数量不同的源文件导入到 Doris 中。 https://doris.apache.org/zh-CN/docs/dev/data-operate/import/import 阅读全文

posted @ 2023-09-13 15:51 cag2050 阅读(67) 评论(0) 推荐(0) 编辑

导航

点击右上角即可分享
微信分享提示