Google Cloud SQL
Load event data into Google Cloud SQL for fully managed relational database storage on Google Cloud.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
connection_name | string | Yes | The instance connection name, e.g. project:region:instance. |
database | string | Yes | The target database name. |
table_name | string | Yes | The target table name to insert rows into. |
username | string | Yes | The database username for authentication. |
password | secret | Yes | The database password for authentication. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Google Cloud SQL or filter by Cloud Storage.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/google_cloud_sql/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Google Cloud SQL",
"variant": "default",
"config": {
"connection_name": "my-project:us-central1:my-instance",
"database": "analytics",
"table_name": "events",
"username": "datafly"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Google Cloud SQL. No client-side scripts are loaded for this integration.
Visit Google Cloud SQL documentation for full API documentation and credential setup instructions.