FAQ (original) (raw)

Index

Local Deployment FAQ

How do I install docker?

Other useful commands

How do I clean up:

View output within a docker container

You can view files within a container by statrting a bash session inside the container. This is useful to view output in case you have that specified in your flow. You can cd into the folder you specified when adding a local output location, say, Local Folder URI (e.g. /app/aspnetcore/output)

docker exec -it dataxlocal /bin/bash  

Copy files into or from a docker container

To copy files into the container, use the following

docker cp myfile.txt dataxlocal:/app/aspnetcore/myfile.txt

To copy files out of the container, use the following

docker cp dataxlocal:/app/aspnetcore/myfile.txt myfile.txt

Look at Spark Logs

Cloud Deployment FAQ

Trouble shooting

adminSteps.ps1 
(along with the generated configuration file (copy the whole folder))

I am a guest of a tenant, how can I deploy DataX?

You need to be a contributor of the tenant, please speak to your admin to gain access.

How many resources does the ARM template create?

The ARM template creates 1 resource group for all 24 resources. The same resource group can host 1 or more products but we recommend separate subscription for each instance for now

    e.g.
    If your product name is A and the resource  group name is RG_A, the ARM template will create them like below:
    In RG_A (resource group)
            A_1
        A_2
        A_3
     
    And later, if you deploy a new product named B in the same resource group,
    In RG_A
            A_1
        A_2
        A_3
            B_1
        B_2
        B_3

Will ARM reuse any resources across product if I deploy in the same group?

No, the ARM template will create another set of resources for your new product. We don’t re-use any resources from other products.

What if I run the ARM template a second time, will it create any duplicate resources? Will it detect any broken/missing/deleted resources to fix bad states?

Other FAQ

How do I know which version of Data Accelerator am I running?

The Data Processing components will have the version built in, i.e. datax-utility_2.4_2.11-1.2.0-....jar means

Similarly, the web components have the version built in, i.e. "name": "datax-home", "version": "1.3.0-...",

The Services have the version built into the file properties.

How do I log a good issue?

See these issues for a couple of examples. here. Make sure to have as much info as possible to enable the team to reproduce and understand your expected behavior.