Login
Remember
Register
Ask a Question
What are some ways to ingest data from on-premise storage to Azure?
+1
vote
asked
Mar 13, 2023
in
Azure
by
SakshiSharma
What are some ways to ingest data from on-premise storage to Azure?
azure
on-premise-storage
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 13, 2023
by
SakshiSharma
While choosing a data transfer solution, the main factors to consider are:
Data Size
Data Transfer Frequency (One-time or Periodic)
Network Bandwidth
Based on the above factors, data movement solutions can be:
Offline transfer: It is used for one-time bulk data transfer. Thus, Microsoft can provide customers with disks or secure storage devices, or even customers can also ship their disks to Microsoft. The offline options for transfer are named data box, data box disk, data box heavy and import/export (customer’s own disks).
Network transfer: Over a network connection, data transfer can be performed in the following ways:
Graphical Interface: This is ideal while transferring a few files and when there is no need to automate the data transfer. Graphical interface options include Azure Storage Explorer and Azure Portal.
Programmatic Transfer: Some available scriptable data transfer tools are AzCopy, Azure PowerShell, Azure CLI. Various programming language SDKs are also available.
On-premises devices: A physical device called Data Box Edge and a virtual Data Box Gateway are installed at the customer’s premises, optimising the data transfer to Azure.
Managed Data Factory pipeline: Azure Data Factory pipelines can move, transform and automate regular data transfers from on-prem data stores to Azure.
...