當前位置: 首頁>>代碼示例>>Python>>正文


Python CloudHost.pull_file_from_s3方法代碼示例

本文整理匯總了Python中cloud.aws.CloudHost.pull_file_from_s3方法的典型用法代碼示例。如果您正苦於以下問題:Python CloudHost.pull_file_from_s3方法的具體用法?Python CloudHost.pull_file_from_s3怎麽用?Python CloudHost.pull_file_from_s3使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cloud.aws.CloudHost的用法示例。


在下文中一共展示了CloudHost.pull_file_from_s3方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: calc_stat

# 需要導入模塊: from cloud.aws import CloudHost [as 別名]
# 或者: from cloud.aws.CloudHost import pull_file_from_s3 [as 別名]
    def calc_stat(user_email):
        VolMgr.STATS['num_users'] += 1
        sessname = unique_sessname(user_email)

        k = CloudHost.pull_file_from_s3(JBoxVol.BACKUP_BUCKET, sessname + ".tar.gz", metadata_only=True)
        if k is not None:
            VolMgr.STATS['loopback']['sizes'].append(k.size)
開發者ID:melvin0008,項目名稱:JuliaBox,代碼行數:9,代碼來源:volmgr.py

示例2: update_user_home_image

# 需要導入模塊: from cloud.aws import CloudHost [as 別名]
# 或者: from cloud.aws.CloudHost import pull_file_from_s3 [as 別名]
    def update_user_home_image(fetch=True):
        img_dir, curr_img = os.path.split(JBoxVol.USER_HOME_IMG)
        bucket, new_img = JBoxDynConfig.get_user_home_image(CloudHost.INSTALL_ID)
        new_img_path = os.path.join(img_dir, new_img)

        if fetch and (not os.path.exists(new_img_path)):
            VolMgr.log_debug("fetching new image to %s", new_img_path)
            k = CloudHost.pull_file_from_s3(bucket, new_img_path)
            if k is not None:
                VolMgr.log_debug("fetched new user home image")

        if os.path.exists(new_img_path):
            VolMgr.log_debug("set new image to %s", new_img_path)
            JBoxVol.USER_HOME_IMG = new_img_path
            return True
        return False
開發者ID:melvin0008,項目名稱:JuliaBox,代碼行數:18,代碼來源:volmgr.py

示例3: pull_backup

# 需要導入模塊: from cloud.aws import CloudHost [as 別名]
# 或者: from cloud.aws.CloudHost import pull_file_from_s3 [as 別名]
 def pull_backup(user_email):
     sessname = unique_sessname(user_email)
     S3Disk.log_info("pulling %s.tar.gz from %s", sessname, JBoxVol.BACKUP_BUCKET)
     CloudHost.pull_file_from_s3(JBoxVol.BACKUP_BUCKET, sessname + ".tar.gz", metadata_only=False)
開發者ID:barrygolden,項目名稱:JuliaBox,代碼行數:6,代碼來源:disk_tools.py

示例4: pull_from_s3

# 需要導入模塊: from cloud.aws import CloudHost [as 別名]
# 或者: from cloud.aws.CloudHost import pull_file_from_s3 [as 別名]
 def pull_from_s3(local_file, metadata_only=False):
     if JBoxVol.BACKUP_BUCKET is None:
         return None
     return CloudHost.pull_file_from_s3(JBoxVol.BACKUP_BUCKET, local_file, metadata_only=metadata_only)
開發者ID:melvin0008,項目名稱:JuliaBox,代碼行數:6,代碼來源:jbox_volume.py


注:本文中的cloud.aws.CloudHost.pull_file_from_s3方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。