Coder Social home page Coder Social logo

Comments (1)

ljluestc avatar ljluestc commented on July 24, 2024
from azure.storage.blob import ContainerClient
import os
import json
import datetime
import time

def file_upload_blob(sitename, property_list, location="", containername=os.getenv('containerName')):
    try:
        # connect to the container client.
        container_client = ContainerClient.from_connection_string(
            conn_str=os.getenv("BLOB_STORAGE_CONNECTION_STRING"),
            container_name=containername
        )
        time.sleep(3)
        logger.info(f"connected to the container {containername}")

        # perform file operations
        filename = os.path.join(sitename,
                                "{sn}_{location}{ts}.json".format(
                                    ts=datetime.datetime.now().strftime(r'%Y-%b-%d_%H-%M-%S'),
                                    sn=sitename,
                                    location=location)
                                )
        try:
            if property_list:
                container_client.upload_blob(
                    name=filename,
                    data=json.dumps(obj=property_list, indent=4),
                    blob_type='BlockBlob',
                    timeout=3600  # Set a longer timeout in seconds (1 hour in this example)
                )
                logger.info(f'file "{filename}" has been uploaded in azure blob storage')
            else:
                container_client.upload_blob(
                    name=filename,
                    data=json.dumps(obj=['got empty file'], indent=4),
                    blob_type='BlockBlob',
                    timeout=3600  # Set a longer timeout in seconds (1 hour in this example)
                )
                logger.info('found empty file! .. uploading empty file')

        except Exception as e:
            logger.error(f"getting error while uploading file to blob storage:{e}")
            traceback.print_exc()

    except Exception as e1:
        logger.error(f" blob storage error: {e1}")

# Call the function with appropriate parameters
# file_upload_blob(sitename, property_list, location, containername)

the timeout parameter in the upload_blob method has been set to 3600 seconds (1 hour) to allow longer time for the upload operation to complete

from azure-storage-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.