Last active
          June 3, 2023 17:22 
        
      - 
      
 - 
        
Save jasonrdsouza/f2c77dedb8d80faebcf9 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
Jason Dsouza revised this gist
May 2, 2016 . 1 changed file with 33 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,15 +16,24 @@ import logging # Script expects everything to happen in one bucket BUCKET = "" # set by command line args # S3 multi-part upload parts must be larger than 5mb MIN_S3_SIZE = 6000000 # Setup logger to display timestamp logging.basicConfig(format='%(asctime)s => %(message)s') def run_concatenation(folder_to_concatenate, result_filepath, file_suffix, max_filesize): s3 = new_s3_client() parts_list = collect_parts(s3, folder_to_concatenate, file_suffix) logging.warning("Found {} parts to concatenate in {}/{}".format(len(parts_list), BUCKET, folder_to_concatenate)) grouped_parts_list = chunk_by_size(parts_list, max_filesize) logging.warning("Created {} concatenation groups".format(len(grouped_parts_list))) for i, parts in enumerate(grouped_parts_list): logging.warning("Concatenating group {}/{}".format(i, len(grouped_parts_list))) run_single_concatenation(s3, parts, "{}-{}".format(result_filepath, i)) def run_single_concatenation(s3, parts_list, result_filepath): if len(parts_list) > 1: # perform multi-part upload upload_id = initiate_concatenation(s3, result_filepath) @@ -33,11 +42,25 @@ def run_concatenation(folder_to_concatenate, result_filepath, file_suffix): elif len(parts_list) == 1: # can perform a simple S3 copy since there is just a single file resp = s3.copy_object(Bucket=BUCKET, CopySource="{}/{}".format(BUCKET, parts_list[0][0]), Key=result_filepath) logging.warning("Copied single file to {} and got response {}".format(result_filepath, resp)) else: logging.warning("No files to concatenate for {}".format(result_filepath)) pass def chunk_by_size(parts_list, max_filesize): grouped_list = [] current_list = [] current_size = 0 for p in parts_list: current_size += p[1] current_list.append(p) if current_size > max_filesize: grouped_list.append(current_list) current_list = [] current_size = 0 return grouped_list def new_s3_client(): # initialize an S3 client with a private session so that multithreading # doesn't cause issues with the client's internal state @@ -122,11 +145,14 @@ def complete_concatenation(s3, result_filename, upload_id, parts_mapping): if __name__ == "__main__": parser = argparse.ArgumentParser(description="S3 file combiner") parser.add_argument("--bucket", help="base bucket to use") parser.add_argument("--folder", help="folder whose contents should be combined") parser.add_argument("--output", help="output location for resulting merged files, relative to the specified base bucket") parser.add_argument("--suffix", help="suffix of files to include in the combination") parser.add_argument("--filesize", type=int, help="max filesize of the concatenated files in bytes") args = parser.parse_args() logging.warning("Combining files in {}/{} to {}/{}, with a max size of {} bytes".format(BUCKET, args.folder, BUCKET, args.output, args.filesize)) BUCKET = args.bucket run_concatenation(args.folder, args.output, args.suffix, args.filesize)  - 
        
jasonrdsouza created this gist
Oct 13, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,132 @@ ''' This script performs efficient concatenation of files stored in S3. Given a folder, output location, and optional suffix, all files with the given suffix will be concatenated into one file stored in the output location. Concatenation is performed within S3 when possible, falling back to local operations when necessary. Run `python combineS3Files.py -h` for more info. ''' import boto3 import os import threading import argparse import logging # Script expects everything to happen in one bucket BUCKET = "parquet.data.logs.staging.sandbox" # S3 multi-part upload parts must be larger than 5mb MIN_S3_SIZE = 6000000 # Setup logger to display timestamp logging.basicConfig(format='%(asctime)s => %(message)s') def run_concatenation(folder_to_concatenate, result_filepath, file_suffix): s3 = new_s3_client() parts_list = collect_parts(s3, folder_to_concatenate, file_suffix) if len(parts_list) > 1: # perform multi-part upload upload_id = initiate_concatenation(s3, result_filepath) parts_mapping = assemble_parts_to_concatenate(s3, result_filepath, upload_id, parts_list) complete_concatenation(s3, result_filepath, upload_id, parts_mapping) elif len(parts_list) == 1: # can perform a simple S3 copy since there is just a single file resp = s3.copy_object(Bucket=BUCKET, CopySource="{}/{}".format(BUCKET, parts_list[0][0]), Key=result_filepath) logging.warning("Copied single file in {} to {} and got response {}".format(folder_to_concatenate, result_filepath, resp)) else: logging.warning("No files to concatenate in {} for {}".format(folder_to_concatenate, result_filepath)) pass def new_s3_client(): # initialize an S3 client with a private session so that multithreading # doesn't cause issues with the client's internal state session = boto3.session.Session() return session.client('s3') def collect_parts(s3, folder, suffix): return filter(lambda x: x[0].endswith(suffix), _list_all_objects_with_size(s3, folder)) def _list_all_objects_with_size(s3, folder): def resp_to_filelist(resp): return [(x['Key'], x['Size']) for x in resp['Contents']] objects_list = [] resp = s3.list_objects(Bucket=BUCKET, Prefix=folder) objects_list.extend(resp_to_filelist(resp)) while resp['IsTruncated']: # if there are more entries than can be returned in one request, the key # of the last entry returned acts as a pagination value for the next request logging.warning("Found {} objects so far".format(len(objects_list))) last_key = objects_list[-1][0] resp = s3.list_objects(Bucket=BUCKET, Prefix=folder, Marker=last_key) objects_list.extend(resp_to_filelist(resp)) return objects_list def initiate_concatenation(s3, result_filename): # performing the concatenation in S3 requires creating a multi-part upload # and then referencing the S3 files we wish to concatenate as "parts" of that upload resp = s3.create_multipart_upload(Bucket=BUCKET, Key=result_filename) logging.warning("Initiated concatenation attempt for {}, and got response: {}".format(result_filename, resp)) return resp['UploadId'] def assemble_parts_to_concatenate(s3, result_filename, upload_id, parts_list): parts_mapping = [] part_num = 0 s3_parts = ["{}/{}".format(BUCKET, p[0]) for p in parts_list if p[1] > MIN_S3_SIZE] local_parts = [p[0] for p in parts_list if p[1] <= MIN_S3_SIZE] # assemble parts large enough for direct S3 copy for part_num, source_part in enumerate(s3_parts, 1): # part numbers are 1 indexed resp = s3.upload_part_copy(Bucket=BUCKET, Key=result_filename, PartNumber=part_num, UploadId=upload_id, CopySource=source_part) logging.warning("Setup S3 part #{}, with path: {}, and got response: {}".format(part_num, source_part, resp)) parts_mapping.append({'ETag': resp['CopyPartResult']['ETag'][1:-1], 'PartNumber': part_num}) # assemble parts too small for direct S3 copy by downloading them locally, # combining them, and then reuploading them as the last part of the # multi-part upload (which is not constrained to the 5mb limit) small_parts = [] for source_part in local_parts: temp_filename = "/tmp/{}".format(source_part.replace("/","_")) s3.download_file(Bucket=BUCKET, Key=source_part, Filename=temp_filename) with open(temp_filename, 'rb') as f: small_parts.append(f.read()) os.remove(temp_filename) logging.warning("Downloaded and copied small part with path: {}".format(source_part)) if len(small_parts) > 0: last_part_num = part_num + 1 last_part = ''.join(small_parts) resp = s3.upload_part(Bucket=BUCKET, Key=result_filename, PartNumber=last_part_num, UploadId=upload_id, Body=last_part) logging.warning("Setup local part #{} from {} small files, and got response: {}".format(last_part_num, len(small_parts), resp)) parts_mapping.append({'ETag': resp['ETag'][1:-1], 'PartNumber': last_part_num}) return parts_mapping def complete_concatenation(s3, result_filename, upload_id, parts_mapping): if len(parts_mapping) == 0: resp = s3.abort_multipart_upload(Bucket=BUCKET, Key=result_filename, UploadId=upload_id) logging.warning("Aborted concatenation for file {}, with upload id #{} due to empty parts mapping".format(result_filename, upload_id)) else: resp = s3.complete_multipart_upload(Bucket=BUCKET, Key=result_filename, UploadId=upload_id, MultipartUpload={'Parts': parts_mapping}) logging.warning("Finished concatenation for file {}, with upload id #{}, and parts mapping: {}".format(result_filename, upload_id, parts_mapping)) if __name__ == "__main__": parser = argparse.ArgumentParser(description="S3 file combiner") parser.add_argument("--folder", help="folder whose contents should be combined") parser.add_argument("--output", help="output location for resulting merged file, relative to the base bucket: {}".format(BUCKET)) parser.add_argument("--suffix", help="suffix of files to include in the combination") args = parser.parse_args() logging.warning("Combining files in {}/{} to {}/{}".format(BUCKET, args.folder, BUCKET, args.output)) run_concatenation(args.folder, args.output, args.suffix) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ from datetime import datetime import combineS3Files as combiner from multiprocessing import Pool def folders_at_level(base_folder, level): # This function returns all of the S3 folders at a given depth level # underneath the base folder. # This allows a list to be built up of folders that should have their # contents concatenated. # Example: level --> 1 2 3 # | | | # base_folder/a/b/c s3 = combiner.new_s3_client() return {'/'.join(k[0].split('/')[:level+1]) for k in combiner.collect_parts(s3, base_folder, "")} def rollup(input_folder): # parallel map function only takes 1 arg combiner.run_concatenation(input_folder, "pythonrollup/{}/all.json".format(input_folder), "") if __name__ == '__main__': print("Start: {}".format(datetime.now())) folders_to_rollup = folders_at_level("split-2015-07-06", 3) print("Folders: {}".format(folders_to_rollup)) print("Finished Getting S3 Listing: {}".format(datetime.now())) pool = Pool(processes=128) pool.map(rollup, folders_to_rollup, 200) print("End: {}".format(datetime.now()))