在hive中通过
insert overwrite table kk.table_name partition(batch_date=20211230) select col1,col2,... from kk.table_name where batch_date=20211030;
复制指定分区数据到另一个分区但在hdfs上发现这两个分区路径格式却不同,分别是
请问一下,这样两个分区的路径,日期格式不一样1.使用时会导致什么问题吗?2.如何统一格式?
会导致存储不上