conf directory of the tool directory. Copy the core-site.xml file of the HDFS cluster to be synced to conf, which contains the configuration information of the NameNode. Edit the configuration file cos_info.conf by including your appid, bucket, region, and key information.-ak <ak> the cos secret id // Your `SecretId`. We recommend you use a sub-account key and follow the principle of least privilege to reduce risks. For information on how to get a sub-account key, visit https://www.tencentcloud.com/document/product/598/37140?from_cn_redirect=1.-appid,--appid <appid> the cos appid-bucket,--bucket <bucket_name> the cos bucket name-cos_info_file,--cos_info_file <arg> the cos user info config default is ./conf/cos_info.conf-cos_path,--cos_path <cos_path> the absolute cos folder path-h,--help print help message-hdfs_conf_file,--hdfs_conf_file <arg> the hdfs info config default is ./conf/core-site.xml-hdfs_path,--hdfs_path <hdfs_path> the hdfs path-region,--region <region> the cos region. legal value cn-south, cn-east, cn-north, sg-sk <sk> the cos secret key // Your `SecretKey`. We recommend you use a sub-account key and follow the principle of least privilege to reduce risks. For information on how to get a sub-account key, visit https://www.tencentcloud.com/document/product/598/37140?from_cn_redirect=1.-skip_if_len_match,--skip_if_len_match skip upload if hadoop file length match cos
# All operations must be performed in the tool directory. If both configuration files and command line parameters are set, the latter will prevail./hdfs_to_cos_cmd -h# Copy from HDFS to COS (if a file already exists in COS, it will be overwritten)./hdfs_to_cos_cmd --hdfs_path=/tmp/hive --cos_path=/hdfs/20170224/# Copy from HDFS to COS, and if a file to be copied is of the same length as a file in COS, then it is skipped (this is suitable for repeated copy)# Only the length is checked here, as the overheads would be very high if the digests of files in Hadoop are to be calculated./hdfs_to_cos_cmd --hdfs_path=/tmp/hive --cos_path=/hdfs/20170224/ -skip_if_len_match# Set parameters completely through the command line./hdfs_to_cos_cmd -appid 1********* -ak****************************************** -sk******************************** -bucket test -cos_path /hdfs-hdfs_path /data/data -region cn-south -hdfs_conf_file/home/hadoop/hadoop-2.8.1/etc/hadoop/core-site.xml
[Folder Operation Result : [ 53(sum)/ 53(ok) / 0(fail)]][File Operation Result: [22(sum)/ 22(ok) / 0(fail) / 0(skip)]][Used Time: 3 s]
sum indicates the total number of files to be migrated.ok indicates the number of files successfully migrated.fail indicates the number of files failed to be migrated.skip indicates the number of files skipped because they have the same length as the files of the same name in the destination after the skip_if_len_match parameter is added.appID, key, bucket, and region. Make sure that the server time is the same as Beijing time (1-minute difference is acceptable. If the difference is too large, reset your server time). -skip_if_len_match parameter, which indicates to skip files if they have the same length as the existing files. Feedback