
Ultimate access to all questions.
A data engineering team is working on ETL pipelines using a shared Databricks cluster and needs to utilize a third-party Python library, etl_utils, in their notebooks. What is the best method to ensure this library is accessible to all team members?_
A
Modify the cluster to utilize the Databricks Runtime for Data Engineering.
B
Execute %pip install etl_utils in any notebook connected to the cluster._
C
Adjust the PYTHONPATH variable in the cluster settings to include the path to etl_utils._
D
Incorporate the dbutils.library.installPyPI('etl_utils') command into the cluster's initialization script._
E
It's impossible to make the etl_utils library available on a cluster._