Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Bryan is executing an init script which is required to run a bootstrap script during the Databricks Spark driver or worker node startup.
Home
DP 203 Azure
Bryan is executing an init script which is required to run a bootstrap script during the Databricks...
0
votes
asked
Jun 11, 2023
in
DP 203 Azure
by
SakshiSharma
Bryan is executing an init script which is required to run a bootstrap script during the Databricks Spark driver or worker node startup.
Which kind of init script can he choose?
A. Global
B. Job
C. Cluster-scoped
D. None of the above
dp203
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 11, 2023
by
SakshiSharma
Correct Answer: C
Reason:-
Option A is incorrect because the global type of init script can’t execute on model serving clusters, and it only works on clusters on the same workspace.
Option B is incorrect because there’s no init script type as Job in Databricks.
Option C is correct because the Cluster-scoped init script type works for every Databricks cluster configured.
Reference:
https://docs.microsoft.com/en-us/azure/databricks/clusters/init-scripts
...