Able to check the container details of running emr pod

2

I would like to know the way/step to inspect the running driver/executor pods in emr on eks cluster. Do not find any steps specific to this use case. Please help me out. Thanks in advance.

Mark
質問済み 7ヶ月前273ビュー
1回答
3
承認された回答

Hello,

If you are running pods in EMR on EKS, there are a couple of ways you can inspect the containers. Direct method, you can check,

kubectl describe pod <pod-name> -n <name-space>

To check the logs of specific container that referred from above command,

kubectl logs pod <pod-name> -n <name-space> -c <container-name> -f

On the other hand, if you would like to check the resources and inspect containers in more details, you can login into the k8s cluster node and run the docker commands, Make sure you have ssh key configured in the eks cluster,

Generate the key for the later use,

ssh-keygen

Create the eks cluster with self-managed nodes,

eksctl create cluster --name $clusterName \
--nodegroup-name group-m5-large \
--node-type m5.large
--nodes-min 2 \
--nodes-max 4 \
--ssh-access --ssh-public-key /home/ec2-user/.ssh/id_rsa.pub.

SSh into the cluster's node and perform the below commands,

To check the list of running containers,

docker ps

To get details for the container

docker inspect 27787df99aea7

To login the container

docker exec -it 27787df99aea7 /bin/bash

To check the running processes inside the container,

bash-4.2$ ps -auxwww

AWS
サポートエンジニア
回答済み 7ヶ月前
profile picture
エキスパート
レビュー済み 7ヶ月前
  • Thanks, this is helpful

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ