if S3_Utils.decomp_s3_url(self.config.alter_query, segment="BUCKET"): self.spark.sql(S3_Utils.open_s3_text_file(self.config.alter_query)) else: self.spark.sql(self.config.alter_query) self.logger.info(f"Alter query is complete. SQL: {self.config.alter_query}")
时间: 2024-03-28 11:40:49 浏览: 108
这是一段代码,看起来像是一个方法或函数。在这段代码中,使用了S3_Utils这个工具类的decomp_s3_url方法来判断config.alter_query是否是S3的URL,并通过open_s3_text_file方法打开S3中的文本文件。如果不是S3的URL,直接执行config.alter_query中的SQL语句。最后使用logger来记录日志,输出执行的SQL语句。
相关问题
if '*' in source_path: source_path = '/'.join(source_path.split('/')[0:-1]) if not source_path.endswith('/'): source_path = source_path + '/' if not error_path.endswith('/'): error_path = error_path + '/' source_file_list = S3_Utils.list_files_by_bucket(source_bucket, source_path, file_type=None) source_file_list = [S3_Utils.decomp_s3_url(file_arn, segment="KEY") for file_arn in source_file_list] self.s3_move_file(source_bucket, source_file_list, error_bucket, error_path, self.config.kms_key_id)
这段代码也是 Python 代码,它的作用是将源路径中的所有文件移动到错误路径中,并且通过 S3_Utils 工具类中的 list_files_by_bucket 方法获取到源路径中所有的文件列表。如果源路径中存在通配符 `*`,则代码会将通配符前面的部分作为实际的路径,并将通配符去除。如果源路径或错误路径没有以 `/` 结尾,则代码会在路径末尾添加 `/`。最后,代码调用 s3_move_file 方法将源路径中的文件移动到错误路径中,并且使用 config 中指定的 KMS Key ID 进行加密。具体的实现细节需要查看 s3_move_file 和 list_files_by_bucket 方法的源代码。
阅读全文