Back to plugin list
Official
Premium
Render
The CloudQuery Render plugin extracts information from your Render API and loads it into any supported CloudQuery destination
Publisher
cloudquery
Latest version
v1.8.0
Type
Source
Platforms
Date Published
Price per 1M rows
Starting from $15
monthly free quota
1M rows
Set up process #
brew install cloudquery/tap/cloudquery
1. Download CLI and login
2. Create source and destination configs
Plugin configurationOverview #
The CloudQuery Render plugin extracts information from your Render API and loads it into any supported CloudQuery destination (e.g. PostgreSQL, BigQuery, Snowflake, and more).
Authentication #
You must have a Render account and an API key.
Configuration #
kind: source
# Common source-plugin configuration
spec:
name: render
path: cloudquery/render
registry: cloudquery
version: "v1.8.0"
tables: ["*"]
destinations: ["postgresql"]
# Plugin specific configuration
# Learn more about the configuration options at https://cql.ink/render_source
spec:
token: ${API_KEY} # required
Render Spec #
This is the (nested) spec used by this plugin:
token
(string
) (required)This is the API token needed to authenticate with your account. More info available hereconcurrency
(integer
, optional, default:1000
) A best effort maximum number of Go routines to use. Lower this number to reduce memory usage.scheduler
(string
, optional, default:dfs
) The scheduler to use when determining the priority of resources to sync. Supported values aredfs
(depth-first search),round-robin
,shuffle
andshuffle-queue
.For more information about this, see performance tuning.