All Products
Search
Document Center

Object Storage Service:Use Function Compute to download multiple objects as a package

Last Updated:Apr 25, 2024

This topic describes how to use Function Compute to download multiple objects as a package to an on-premises device.

Prerequisites

Background information

Downloading multiple objects from OSS at a time can cause inconvenience in some special cases. For example, the download speed is slow when you download a large number of small objects at a time. To improve your experience in downloading a large number of objects at a time, you can use Function Compute to compress the objects into a package, download the package to your on-premises device, and then decompress the package. The following figure shows how to use Function Compute to compress objects into a package and download the package.压缩OSS文件

  1. A user invokes a function and specifies the objects to be compressed and the bucket to which the objects are uploaded.

  2. Function Compute obtains the specified objects from OSS and generates a ZIP package that has a random name.

  3. Function Compute uploads the ZIP package to OSS.

  4. Function Compute returns the URL that is used to download the ZIP package to the user.

  5. The user downloads the ZIP package from OSS by using the URL, which remains valid for a long period of time.

Usage notes

  • Streaming download and streaming upload are used to transfer the ZIP package due to limited disk space for running the function. Only a small amount of data is cached in the memory.

  • To accelerate the transfer of the ZIP package, Function Compute uploads the ZIP package to OSS while Function Compute generates the ZIP package.

  • Multipart upload is used to upload the ZIP package in parts in parallel to OSS.

  • Function Compute takes up to 24 hours to compress objects into a package. Test data shows that Function Compute took approximately 63 seconds to compress 57 objects whose total size is 1.06 GB.

Procedure

In this example, Function Compute is used to download multiple objects in the dir/ directory of the examplebucket bucket in the China (Hangzhou) region to an on-premises device.

  1. Deploy an application and obtain its public domain name.

    Use ROS to deploy an application

    Perform the following steps to use Resource Orchestration Service (ROS) to deploy a Function Compute application and obtain its public domain name:

    1. Go to the Create Stack wizard in the ROS console.

    2. In the Configure Parameters step, retain the default settings for all parameters and click Next.

    3. In the Check and Confirm step, click Create.

      On the Stack Information tab of the page that appears, the status of the stack is Creating.

    4. After the status of the stack becomes Created, click the Outputs tab to view the public domain name.

    Use Serverless Application Center to deploy an application

    1. Go to Serverless Application Center to deploy the start-zip-oss application template.

      Select Directly Deploy for Deployment Type. Select the region of the bucket for the application template. Retain the default settings for other parameters and click Create and Deploy Default Environment. The following figure shows the configuration details.1

    2. Obtain the public domain name.

      1. In the Deploy Version panel of the page that appears, click the Result tab.

      2. In the triggers field, obtain the public domain name from the urlInternet parameter.

        2

    Use Serverless Devs to deploy an application

    1. Install Serverless Devs.

      curl -o- -L http://cli.so/install.sh | bash

      Check whether Serverless Devs is installed.

      s -v

      The following output is returned if Serverless Devs is installed:

      @serverless-devs/s: 2.1.1, s-home: /root/.s, linux-x64, node-v14.19.3
    2. Configure Serverless Devs.

      s config add --AccessKeyID LTAI******** --AccessKeySecret  KZo1******** --access fc-access

      The following table describes the parameters in the preceding command.

      Parameter

      Description

      --AccessKeyID

      The AccessKey ID used to access Function Compute.

      --AccessKeySecret

      The AccessKey secret used to access Function Compute.

      --Access

      The custom key alias.

    3. Deploy the application template start-zip-oss.

      1. Initialize the project.

      2. s init start-zip-oss -d start-zip-oss
      3. Refer to the following example values to complete configurations for start-zip-oss.

      4. Configuration item

        Example

        The ID of the region in which you want to deploy the application

        cn-hangzhou

        The service to which the application belongs in Function Compute

        start-zip-oss

        The function name of the application

        zip-oss-func

        The ARN of the RAM role that is created for the service to which the application belongs in Function Compute

        acs:ram::137918634953****:role/test-role

      5. Start the project.

      6. cd start-zip-oss
      7. Deploy the project.

      8. s deploy -y
      9. Record the returned system_url.

      10. fc-zip-oss-service:
          region:   cn-hangzhou
          service:
            name: start-zip-oss
          function:
            name:       zip-oss-func
            runtime:    python2.7
            handler:    main.main_handler
            memorySize: 3072
            timeout:    1800
          url:
            system_url: https://zip-oss-func-start-zip-oss-ayouye****.cn-hangzhou.fcapp.run
          triggers:
            -
              type: http
              name: http-test
  2. Run the following command to generate the event.json file and specify the bucket name and the directory in which the objects to be downloaded are stored:

    cat > event.json <<EOF
    {   
       "bucket": "examplebucket",
       "source-dir": "dir/"
    }
    EOF

    You must set source-dir to a directory other than the root directory of the bucket.

  3. Run the following command to trigger the function:

    curl -v -L -o /test/oss.zip -d @./event.json https://zip-oss-func-zip-oss-ayouye****.cn-hangzhou.fcapp.run
    • /test/oss.zip: the local path used to store objects in the dir/ directory.

    • https://zip-oss-func-zip-oss-ayouye****.cn-hangzhou.fcapp.run: the system_url returned when the project is deployed.

    Note

    If you want to change the anonymous non-authenticated HTTP function in the preceding example to the authenticated HTTP function, you can use one of the following OSS SDKs:

FAQ

Can I add watermarks to objects when I use Function Compute to compress the objects into a package and download the package?

No, you cannot add watermarks to objects when you use Function Compute to compress the objects into a package and download the package. However, before you use Function Compute to compress the objects into a package and download the package, you can use one of the following methods to add text or image watermarks to the objects in OSS:

  • Objects whose access control list (ACL) is public-read or public-read-write

    Add the watermark parameter to the object URL. For more information, see Add watermarks.

  • Objects whose ACL is private

    Configure image processing (IMG) parameters or image style parameters by using OSS SDKs. For more information, see Use OSS SDKs to process images.

Can Function Compute generate a download URL that has a validity period when I use Function Compute to download multiple objects as a package?

No, Function Compute cannot generate a download URL that has a validity period. If you want the download URL to have a validity period, you can include the Expires parameter in the generated URL. For more information, see Use object URLs.

References

For more information about the template and applications when you use Function Compute together with OSS, see Sample code.