Created 03-08-2022 11:40 PM
https://github.com/GitJason1027/cm_api_programs/blob/main/bdr_build_plan.py
Here is my program to create schedule in BDR function.(CDH professional version)
But some options I cannot find in the cm_api interface,s such as "Permanently Delete", "Copy HDFS File " options. Is someone can tell me how to deal with it ?
https://github.com/cloudera/cm_api/blob/master/python/src/cm_api/endpoints/types.py
line 686 class ApiHdfsReplicationArguments
Created 03-09-2022 12:08 AM
Hi @lee_yg ,
The "Permanently Delete" option is equivalent to "removeMissingFiles = True" and "skipTrash = True".
The "Copy HDFS File" option is equivalent to "replicateData = True", in the Hive arguments.
Cheers,
André
Created 03-09-2022 12:08 AM
Hi @lee_yg ,
The "Permanently Delete" option is equivalent to "removeMissingFiles = True" and "skipTrash = True".
The "Copy HDFS File" option is equivalent to "replicateData = True", in the Hive arguments.
Cheers,
André
Created 03-09-2022 01:39 AM
Thanks Bro😀