yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #28457
[Bug 1421471] [NEW] os-simple-tenant-usage performs poorly with many instances
Public bug reported:
The SQL underlying the os-simple-tenant-usage API call results in very
slow operations when the database has many (20,000+) instances. In
testing, the objects.InstanceList.get_active_by_window_joined call in
nova/api/openstack/compute/contrib/simple_tenant_usage.py:SimpleTenantUsageController._tenant_usages_for_period
takes 24 seconds to run.
Some basic timing analysis has shown that the initial query in
nova/db/sqlalchemy/api.py:instance_get_active_by_window_joined runs in
*reasonable* time (though still 5-6 seconds) and the bulk of the time is
spent in the subsequent _instances_fill_metadata call which pulls in
system_metadata info by using a SELECT with an IN clause containing the
20,000 uuids listed, resulting in execution times over 15 seconds.
** Affects: nova
Importance: Undecided
Status: Confirmed
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1421471
Title:
os-simple-tenant-usage performs poorly with many instances
Status in OpenStack Compute (Nova):
Confirmed
Bug description:
The SQL underlying the os-simple-tenant-usage API call results in very
slow operations when the database has many (20,000+) instances. In
testing, the objects.InstanceList.get_active_by_window_joined call in
nova/api/openstack/compute/contrib/simple_tenant_usage.py:SimpleTenantUsageController._tenant_usages_for_period
takes 24 seconds to run.
Some basic timing analysis has shown that the initial query in
nova/db/sqlalchemy/api.py:instance_get_active_by_window_joined runs in
*reasonable* time (though still 5-6 seconds) and the bulk of the time
is spent in the subsequent _instances_fill_metadata call which pulls
in system_metadata info by using a SELECT with an IN clause containing
the 20,000 uuids listed, resulting in execution times over 15 seconds.
To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1421471/+subscriptions
Follow ups
References