Export from Azure DevOps to Apache Arrow Flight
CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.
The CloudQuery Azure DevOps plugin allows you to sync data from Azure DevOps to any destination, including Apache Arrow Flight. It takes only minutes to get started.
Azure DevOps
The CloudQuery Azure DevOps plugin reads information from your Azure DevOps account and loads it into any supported CloudQuery destination
cloudquery
v4.4.5
Source
Apache Arrow Flight
This destination plugin lets you sync data from a CloudQuery source to an Apache Arrow Flight compatible service.
Table of Contents
MacOS Setup
Step 1. Install CloudQuery
brew install cloudquery/tap/cloudquery
Step 2. Log in to CloudQuery CLI
cloudquery login
Step 3. Configure Azure DevOps source plugin
You can find more information about the configuration in the plugin documentation
kind: source
# Common source-plugin configuration
spec:
name: azuredevops
path: cloudquery/azuredevops
registry: cloudquery
version: "v4.4.5"
tables: ["*"]
destinations: ["v1.0.5"]
# Azure DevOps specific configuration
spec:
personal_access_token: "${AZURE_DEVOPS_PERSONAL_ACCESS_TOKEN}"
organization_url: "${AZURE_DEVOPS_ORGANIZATION_URL}"
# Optional parameters
# concurrency: 10000
Step 4. Configure Apache Arrow Flight destination plugin
You can find more information about the configuration in the plugin documentation
kind: destination
spec:
name: "arrowflight"
path: "cloudquery/arrowflight"
registry: "cloudquery"
version: "VERSION_DESTINATION_ARROWFLIGHT"
spec:
addr: "localhost:9090"
# Optional parameters:
# handshake: ""
# token: ""
# close_timeout: 1s
# max_call_recv_msg_size: 10485760 # 10MB
# max_call_send_msg_size: 10485760 # 10MB
# tls_enabled: false
# tls_server_name: ""
# tls_insecure_skip_verify: false
Step 5. Run Sync
cloudquery sync azuredevops.yml arrowflight.yml