Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Situation Awareness
Managed Threat Detection
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive
On this page

Python

Updated on 2024-11-15 GMT+08:00

Prerequisites

  • You have a Huawei Cloud account and have completed real-name authentication.
  • Your Huawei Cloud account is not in arrears and has sufficient balance for the resources involved in this example.

Procedure

  1. Create a function.

    1. Log in to the FunctionGraph console, choose Functions > Function List in the navigation pane, and click Create Function.
    2. Select Create from scratch, set the function information, and click Create Function.
      • Function Type: Select Event Function.
      • Region: Select AP-Singapore.
      • Function Name: Enter a function name, for example, upload-file-1.
      • Agency: Select Use no agency.
      • Runtime: Select Python 3.6.
    3. On the Code tab of the function details page, copy the following code to replace the default code, and click Deploy.
      # -*- coding: utf-8 -*-
      
      from requests_toolbelt.multipart import decoder
      import base64
      
      def handler(event, context):
          context.getLogger().info("Function start run.")
      
          content_type = ''
          if "content-type" in event['headers']: 
              content_type = event['headers']['content-type']
      
          if "multipart/form-data" not in content_type:
              return {
                  "statusCode": 200,
                  "body": "The request is not in multipart/form-data format.",
                  "headers": {
                      "Content-Type": "application/json"
                  }
              }
      
          body = event['body']
          # The APIG trigger encodes data using Base64 by default. The data is decoded here.
          raw_data = base64.b64decode(body)
          for part in decoder.MultipartDecoder(raw_data, content_type).parts:
              # Data is processed here.
              context.getLogger().info(part.content)
      
          return {
              "statusCode": 200,
              "body": "ok",
              "headers": {
                  "Content-Type": "application/json"
              }
          }

  2. Create an APIG trigger.

    1. On the details page of function upload-file-1, choose Configuration > Triggers.
    2. Click Create Trigger, and set Trigger Type to API Gateway (APIG) or API Gateway (Dedicated Gateway). The shared gateway is used as an example.
      • API Name: Retain the default name.
      • API Group: If no API group is available, click Create API Group to create one.
      • Environment: Select RELEASE.
      • Security Authentication: In this example, select None for testing. You can select a more secure authentication mode, such as IAM, for your own services.
      • Protocol: Select HTTPS.
      • Timeout (ms): Retain the default value 5000.

  3. Perform E2E testing.

    Create a file named app.log with any content on your local host. Example:
    start something
    run
    stop all
    • Take the curl tool as an example (curl -F is mainly used in the Linux environment). Run the following command:
      curl -iv {APIG trigger URL} -F upload=@/{Local file path}/app.log
      Figure 1 Example
    • Take the Postman tool as an example. Set the following parameters and click Send.
      Figure 2 Example

      Name: Select upload.

      Type: Select file.

      Value: Click Upload to upload the created app.log file.

    On the Monitoring tab of the upload-file-1 function details page, view the file content in the logs. If needed, you can modify the code to save data to OBS or LTS or to directly process the data.

    Figure 3 View logs

We use cookies to improve our site and your experience. By continuing to browse our site you accept our cookie policy. Find out more

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback