Reputation: 2334
I am trying to understand on Azure Databricks Architecture based on the this link. I could understand what is the purpose of control plane and data plane in Azure Databricks architecture.But I could't understand on the following questions .
How control plane and data plane will be communicating?
How control plane and data plane would be authenticate ?
Upvotes: 3
Views: 1009
Reputation: 1
There might also be a difference between the serverless and the "traditional" data plane, the communication between the serverless data plane and the control plane will be via the cloud provider's backbone.
A good architecture overview is provided here: https://github.com/WowdyCloudy/wowdycloudy/blob/main/dbx/architecture.md#databricks-architecture
Upvotes: 0
Reputation: 87259
There are two ways of communication between control plane & data plane:
Regarding authentication - it's internal detail, but it provides a way of ensuring that VMs that are communicating with control plane are really that VMs that form a cluster.
Upvotes: 1