nova/nova/tests/unit/scheduler
Matt Riedemann 5af632e9ca Use long_rpc_timeout in select_destinations RPC call
Conductor RPC calls the scheduler to get hosts during
server create, which in a multi-create request with a
lot of servers and the default rpc_response_timeout, can
trigger a MessagingTimeout. Due to the old
retry_select_destinations decorator, conductor will retry
the select_destinations RPC call up to max_attempts times,
so thrice by default. This can clobber the scheduler and
placement while the initial scheduler worker is still
trying to process the beefy request and allocate resources
in placement.

This has been recreated in a devstack test patch [1] and
shown to fail with 1000 instances in a single request with
the default rpc_response_timeout of 60 seconds. Changing the
rpc_response_timeout to 300 avoids the MessagingTimeout and
retry loop.

Since Rocky we have the long_rpc_timeout config option which
defaults to 1800 seconds. The RPC client can thus be changed
to heartbeat the scheduler service during the RPC call every
$rpc_response_timeout seconds with a hard timeout of
$long_rpc_timeout. That change is made here.

As a result, the problematic retry_select_destinations
decorator is also no longer necessary and removed here. That
decorator was added in I2b891bf6d0a3d8f45fd98ca54a665ae78eab78b3
and was a hack for scheduler high availability where a
MessagingTimeout was assumed to be a result of the scheduler
service dying so retrying the request was reasonable to hit
another scheduler worker, but is clearly not sufficient
in the large multi-create case, and long_rpc_timeout is a
better fit for that HA type scenario to heartbeat the scheduler
service.

[1] https://review.openstack.org/507918/

Change-Id: I87d89967bbc5fbf59cf44d9a63eb6e9d477ac1f3
Closes-Bug: #1795992
2018-11-20 09:03:53 -05:00
..
client Merge "Allow resource_provider_association_refresh=0" 2018-11-07 22:31:28 +00:00
filters Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
weights Change deprecated policies to policy 2018-07-27 02:20:30 +00:00
__init__.py move all tests to nova/tests/unit 2014-11-12 15:31:08 -05:00
fakes.py Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
ironic_fakes.py Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
test_client.py Use long_rpc_timeout in select_destinations RPC call 2018-11-20 09:03:53 -05:00
test_filter_scheduler.py Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
test_filters.py Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
test_host_filters.py Modify left filters for RequestSpec 2015-12-11 12:27:20 +01:00
test_host_manager.py Merge "Refactor scatter-gather utility to return exception objects" 2018-11-03 01:08:18 +00:00
test_request_filter.py Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
test_rpcapi.py Use long_rpc_timeout in select_destinations RPC call 2018-11-20 09:03:53 -05:00
test_scheduler.py Remove the CachingScheduler 2018-10-18 17:55:36 -04:00
test_scheduler_utils.py Use uuidsentinel from oslo.utils 2018-09-05 09:08:54 -05:00
test_utils.py Merge "[Trivial Fix] Correct spelling error of "should" and "resource"" 2018-11-07 06:09:44 +00:00