本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
使用互動端點指定自訂 Pod 範本
您可以建立互動端點,在其中指定驅動程式和執行程式的自訂 Pod 範本。Pod 範本是決定如何執行每個 Pod 的規範。可以使用 Pod 範本檔案來定義 Spark 組態不支援的驅動程式或執行程式 Pod 的組態。Amazon 6.3.0 版及更高EMR版本目前支援 Pod 範本。
如需 Pod 範本的詳細資訊,請參閱 Amazon EMR on EKS Development Guide 中的使用 Pod 範本。
以下範例會示範如何使用 Pod 範本建立互動端點:
aws emr-containers create-managed-endpoint \ --type JUPYTER_ENTERPRISE_GATEWAY \ --virtual-cluster-id
virtual-cluster-id
\ --nameexample-endpoint-name
\ --execution-role-arn arn:aws:iam::aws-account-id
:role/EKSClusterRole
\ --release-labelemr-6.9.0-latest
\ --configuration-overrides '{ "applicationConfiguration": [ { "classification": "spark-defaults", "properties": { "spark.kubernetes.driver.podTemplateFile": "path/to/driver/template.yaml
", "spark.kubernetes.executor.podTemplateFile": "path/to/executor/template.yaml
" } }] }'