So, my plan is to fill up the db with many (fake) images using -
for i in {1..1000} ;do i=$(uuidgen); mysql -uroot -ppassword glance -e "insert into images (id,name,size,status,is_public, created_at,deleted,min_disk,min_ram,protected,virtual_size) values ( \"$i\", 'yiossvol1', 1, 'active',1 ,now(),0,0 ,0,0,0);" ; done
Then, check 'nova image-list' time, before and after the suggested resolution above. I'll keep you posted..
So, my plan is to fill up the db with many (fake) images using -
for i in {1..1000} ;do i=$(uuidgen); mysql -uroot -ppassword glance -e "insert into images (id,name, size,status, is_public, created_ at,deleted, min_disk, min_ram, protected, virtual_ size) values ( \"$i\", 'yiossvol1', 1, 'active',1 ,now(),0,0 ,0,0,0);" ; done
Then, check 'nova image-list' time, before and after the suggested resolution above.
I'll keep you posted..