An Azure service for ingesting, preparing, and transforming data at scale.
Hi @zmsoft
To copy data from Google SecOps (Chronicle) into Azure Data Factory (ADF), there is currently no native Google SecOps connector available in ADF.
The recommended approach depends on how the SecOps data is exposed.
If the Google SecOps data is exported to Google Cloud Storage (GCS), Azure Data Factory can ingest the data using the Google Cloud Storage connector.
Prerequisite: Ensure that Google SecOps is configured to export data to a customer-managed GCS bucket (for example using Google SecOps Data Export APIs). Without exporting the data first, ADF cannot directly access Google SecOps data.
Steps:
- Prepare GCS access
- Enable interoperability access for the GCS bucket
- Create a service account with appropriate storage permissions
- Generate HMAC credentials (Access Key ID and Secret Access Key)
- Create Linked Service in ADF
- Create a Google Cloud Storage linked service
- Configure:
- Service URL:
https://storage.googleapis.com- HMAC credentials
- Integration Runtime (Azure IR or Self-hosted IR if required)
- Validate the connection
- HMAC credentials
- Service URL:
- Create Dataset
- Configure the bucket and folder/file path
- Use wildcard patterns if required
- Create Copy Pipeline
- Source: Google Cloud Storage dataset
- Sink: Azure Blob Storage / ADLS Gen2 / Azure SQL / Synapse
- Configure mappings and transformations if needed
- Execute and Monitor
- Trigger the pipeline
- Monitor execution and performance in ADF
Alternative Approach: If GCS export is not available, ADF can use REST connector integration with Google SecOps APIs. This approach requires handling authentication, pagination, and API limitations and is generally less suitable for large-scale ingestion scenarios.
Recommendation: For production scenarios, exporting Google SecOps data to GCS and ingesting through ADF is typically the most scalable and operationally manageable approach.
Reference:
https://learn.microsoft.com/en-us/azure/data-factory/connector-google-cloud-storage?tabs=data-factory
https://learn.microsoft.com/en-us/azure/data-factory/copy-activity-overview
https://learn.microsoft.com/en-us/azure/data-factory/connector-overview
Please let us know if you have any questions or concerns.