参考地址:https://www.zhihu.com/tardis/sogou/art/46544606
方法一:配置/etc/network/interfaces文件
首先查看网卡接口名称:ip a 知道网卡接口名称之后,在 /etc/network/interfaces 文件中配置:
auto enp0s31f6 …
项目场景:
需求:需要在之前上线的分区报表中新增加一列。 实现方案:
1、创建分区测试表并插入测试数据
drop table test_1;
create table test_1
(id string,
score int,
name string
)
partitioned by (class string)
row format delimit…