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

Billing

Updated on 2024-07-22 GMT+08:00

Billing Mode

OMS is a free service. You pay for migration resources used (bandwidth and API calls). After the free period expires, you will be billed only for data migrated by OMS. This billing mode allows you to easily and flexibly estimate migration costs.

CAUTION:

During the migration, the APIs of the object storage services on the source and destination platforms are called to upload and download data. You will be charged for the API requests generated as well as data download and upload. For details about the fees, see API Requests and Data Download and Upload.

Data Download and Upload

OMS needs to download data from source buckets and then upload the data to the destination OBS buckets.

  • Any data download fees generated on the source platform are billed by the source cloud service provider. The total charges depend on the data size.
    NOTE:
    • To save money, you can subscribe to a Content Delivery Network (CDN) traffic package from the source cloud service provider, and enable the traffic limiting function of OMS to limit the traffic transmitted during peak hours.
    • If the automatic restoration function of OMS is used, you need to pay for archive data restoration and retrieval.
  • No fees are generated when data is uploaded to destination OBS buckets on Huawei Cloud.
  • No traffic fees are generated for migration in the same region, regardless of the migration is performed within the same account or across accounts.

API Requests

Before the migration, OMS compares objects in source and destination buckets. Then, OMS downloads objects from the source bucket and then uploads them to the destination bucket. After the migration, OMS verifies the objects that are migrated.

All these operations generate API requests. There are basic requests and common requests (for listing objects, uploading failed object lists, retrying upon network exceptions, and automatic restoration). The number of API requests depends on the scenario.

  • If there is no object in the destination bucket with the same name as one in the source bucket, the source object will be migrated.
    • Source bucket: 2 HEAD and 1 GET requests
      • One HEAD request is used to check if the object exists in the source bucket and compare the object with those in the destination bucket.
      • One GET request is used to download the object from the source bucket.
      • One HEAD request is used to verify consistency.
    • Destination bucket: 2 HEAD and 2 PUT requests
      • One HEAD request is sent to check whether the object already exists in the destination bucket.
      • One PUT request is used to upload the object to the destination bucket.
      • One PUT request is used to configure the object storage class after the migration is complete.
      • One HEAD request is used to verify consistency.
  • If there is an object in the destination bucket with the same name and size as one in the source bucket, but the last modification time of the destination object is later than that of the source object, the source object will not be migrated.
    • Source bucket: 1 HEAD request
      • One HEAD request is used to check if the object exists in the source bucket and compare the object with those in the destination bucket.
    • Destination bucket: 1 HEAD request
      • One HEAD request is sent to check whether the object already exists in the destination bucket.
  • If there is an object in the destination bucket with the same name as one in the source bucket, but the object has a different size or its last modification time is earlier than that of the source object, the source object will be migrated, and the migrated object will overwrite the destination object.
    • Source bucket: 2 HEAD and 1 GET requests
      • One HEAD request is used to check if the object exists in the source bucket and compare the object with those in the destination bucket.
      • One GET request is used to download the object from the source bucket.
      • One HEAD request is used to verify consistency.
    • Destination bucket: 2 HEAD and 2 PUT requests
      • One HEAD request is sent to check whether the object already exists in the destination bucket.
      • One PUT request is used to upload the object to the destination bucket.
      • One PUT request is used to configure the object storage class after the migration is complete.
      • One HEAD request is used to verify consistency.
NOTICE:

Any source object larger than 50 MB will be uploaded in multiple parts with each part of up to 50 MB, and each part will generate their own GET and PUT requests.

For example, a 200 MB object will be divided into four parts, so there will be four GET requests needed to down load them from the source bucket, four PUT requests needed to upload them to the destination bucket, and one additional PUT request for combining them at the end. That means a 200 MB object generates the following requests:

  • Source bucket: 2 HEAD and 4 GET requests
  • Destination bucket: 2 HEAD and 5 PUT requests (1 PUT for each of the four parts and 1 combination PUT)
NOTE:

The actual price of an API request depends on the cloud service provider. For details about the price of the API requests of Huawei Cloud OBS, see Product Pricing Details.

How to Estimate Migration Fees

Generally, the migration fees can be estimated using the following formula:

Migration fee = Number of source API requests x Unit price of source API requests + Number of destination API requests x Unit price of destination API requests + Total size of source objects x Unit price of outbound traffic on the source platform

  • Number of source API requests = (Total number of objects/1,000) + Number of objects x 3
  • Number of destination API requests = Total number of objects x 4
  • Unit price of outbound traffic on the source platform: determined by the source cloud service provider
    NOTICE:
    • The fees of the destination API requests are billed by Huawei Cloud. The fees of the source API requests and the outbound traffic on the source platform are billed by the source cloud service provider.
    • Even if an object is skipped during the migration, API requests are still generated on the source platform and Huawei Cloud to check whether the object exists and compare it with other objects. You need to pay for these API requests.

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