De Qcow na Wikipédia:
% bl0ck_qu0te%Portanto, o tamanho do arquivo é de 13MB, mas pode crescer até 20GB quando os dados são gravados nele. Exemplo:
$ qemu-img create -f qcow2 test.img 2G
Formatting 'test.img', fmt=qcow2 size=2147483648 encryption=off cluster_size=65536 lazy_refcounts=off
$ ls -l test.img
-rw-r--r-- 1 carvalho carvalho 197120 Jul 18 09:30 test.img
$ file test.img
test.img: QEMU QCOW Image (v2), 2147483648 bytes
Um arquivo qcow2 vazio foi criado. Ele pode conter um sistema de arquivos de 2GB, mas por enquanto ele ocupa apenas 197KB no disco.
De link :
% bl0ck_qu0te%Na% man_de% manpage:
% bl0ck_qu0te%Exemplo:
$ qemu-img create -f qcow2 -o backing_file=test.img test01.img
Formatting 'test01.img', fmt=qcow2 size=2147483648 backing_file='test.img' encryption=off cluster_size=65536 lazy_refcounts=off
$ file test01.img
test01.img: QEMU QCOW Image (v2), has backing file (path test.img), 2147483648 bytes
No seu caso / var / lib / nova / instances / _base / 035db99541e92b5cca93bf18a997d626f512b73d é o arquivo de apoio. Eu não sei qual é o comportamento esperado se você tentar usar seu arquivo qcow sem o arquivo de apoio.
Sobre o qemu-img
na documentação do OpenStack :