I'm working on a Google Compute Engine instance (through the Notebook instance in AI Platform).
I'm running a disk-intensive job (Neo4J on docker) and I've decided to both increase the root disk and attach another one.
When I run df -h
, this is what I see:
Filesystem Size Used Avail Use% Mounted on
udev 119G 0 119G 0% /dev
tmpfs 24G 8.7M 24G 1% /run
/dev/sda1 985G 13G 932G 2% /
tmpfs 119G 0 119G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 119G 0 119G 0% /sys/fs/cgroup
/dev/sda15 124M 5.7M 119M 5% /boot/efi
/dev/sdb 98G 62M 98G 1% /home/jupyter
And when I run sudo lsblk
, this is what I see:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 1000G 0 disk
├─sda1 8:1 0 999.9G 0 part /
├─sda14 8:14 0 3M 0 part
└─sda15 8:15 0 124M 0 part /boot/efi
sdb 8:16 0 1000G 0 disk /home/jupyter
As you can see I have 2 disks each of size 1000G. Anyway, even if sdb
has size 1000G, just 98G
seem available for use and this causes my job to crash.
Is there anyway I can increase that?
Thank you in advance