jiangbiao910 opened a new issue, #6089:
URL: https://github.com/apache/hudi/issues/6089
Hudi has recently released the latest version of Hudi, 0.11.1, which is
pulled from Github and modified as follows for our Hadoop environment CDH6.3.2。
Upgrading to 0.11.1 resulting use sparksql:
`
create table if not exists zone_test.hudi_spark_table_0707
(
id string,
brand_id int,
brand_name string comment '品牌名称',
model_id int,
model_name string,
etl_update_time string,
dt string,
hh string
) using hudi
options (
type = 'cow',
primaryKey = 'brand_id,model_id',
preCombineField = 'etl_update_time'
)
partitioned by (dt,hh)
;
insert into zone_test.hudi_spark_table_0707 partition (dt, hh)
select id,
brand_id,
brand_name,
model_id,
model_name,
CAST(current_timestamp AS string) as etl_update_time,
'20220707' as dt,
'13' as hh
from zone_test.test_status_2_hi
;`
HS2 does not start after **hudi-hadoop-mr-bundle-0.11.1.jar** package is
put into hive/lib directory and restart Hive, the log :

After the hbase-site. xml and hbase-default.xml file in the
**hudi-hadoop-mr-bundle-0.11.1.jar** package is deleted , HS2 starts normally,
hudi -spark-sql tasks are normal, but data query is abnormal.

what can I do next step? Thank you for your help。
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]