AWS가 ElasticBeanstalk에서 Docker 'thin pool'을 설정하는 방법과 채워지는 방법을 알 수 없습니다. 도커 씬 풀이 어떻게 든 채워져 디스크에 쓰려고 할 때 앱이 중단됩니다.
이것은 컨테이너 내부에서 온 것입니다.
>df -h
> /dev/xvda1 25G 1.4G 24G 6%
실제로 EBS에는 25GB 디스크가 할당되어 있습니다. 1.6 기가 du -sh /
반환됩니다.
EC2 외부에서, 그것은 무해하게 시작됩니다 ... (를 통해 lvs
)
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
docker-pool docker twi-aot--- 11.86g 37.50 14.65
그러나 파일 시스템은 곧 읽기 전용으로 다시 마운트됩니다. dmesg를 통해 :
[2077620.433382] Buffer I/O error on device dm-4, logical block 2501385
[2077620.437372] EXT4-fs warning (device dm-4): ext4_end_bio:329: I/O error -28 writing to inode 4988708 (offset 0 size 8388608 starting block 2501632)
[2077620.444394] EXT4-fs warning (device dm-4): ext4_end_bio:329: I/O error [2077620.473581] EXT4-fs warning (device dm-4): ext4_end_bio:329: I/O error -28 writing to inode 4988708 (offset 8388608 size 5840896 starting block 2502912)
[2077623.814437] Aborting journal on device dm-4-8.
[2077649.052965] EXT4-fs error (device dm-4): ext4_journal_check_start:56: Detected aborted journal
[2077649.058116] EXT4-fs (dm-4): Remounting filesystem read-only
EC2 인스턴스-땅에서 백업, 도커이보고 : (에서 docker info
)
Pool Name: docker-docker--pool
Pool Blocksize: 524.3 kB
Base Device Size: 107.4 GB
Backing Filesystem: ext4
Data file:
Metadata file:
Data Space Used: 12.73 GB
Data Space Total: 12.73 GB
Data Space Available: 0 B
Metadata Space Used: 3.015 MB
Metadata Space Total: 16.78 MB
Metadata Space Available: 13.76 MB
Thin Pool Minimum Free Space: 1.273 GB
LVS는이 정보를 덤프합니다 :
--- Logical volume ---
LV Name docker-pool
VG Name docker
LV UUID xxxxxxxxxxxxxxxxxxxxxxxxxxxx
LV Write Access read/write
LV Creation host, time ip-10-0-0-65, 2017-03-25 22:37:38 +0000
LV Pool metadata docker-pool_tmeta
LV Pool data docker-pool_tdata
LV Status available
# open 2
LV Size 11.86 GiB
Allocated pool data 100.00%
Allocated metadata 17.77%
Current LE 3036
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 253:2
이 얇은 수영장은 무엇이며 왜 채워졌으며 어떻게하지 못하게됩니까? 또한 / 볼륨의 컨테이너 내부에서 20GB 이상의 여유 공간이 있으면 왜 새 쓰기를 중지합니까? 내가 알 수있는 한 내 프로그램이 쓰는 파일에 연결되어 있지 않습니다.
감사합니다!