열정/연구 일지

[Docker container 에러 해결] RuntimeError: DataLoader worker is killed by signal: Bus error.

lime9 2024. 8. 23. 14:01

발생 오류

RuntimeError: DataLoader worker (pid 293) is killed by signal: Bus error. It is possible that dataloader's workers are out of shared memory. Please try to raise your shared memory limit.

 

해결 방법

Docker container 실행 환경 내에서, 도커로 컨테이너를 생성하게 되면 호스트와 컨테이너는 공유하는 메모리 공간이 생기게 되는데 이 공간에 여유가 없어서 발생하는 에러이다.

 

해결 방법은 크게 두 가지가 있다.

1. Docker container 실행 시, "--shm-size" 옵션 추가로 충분히 넉넉한 메모리 공유

2. "ipc=host"로 설정