| Method and Description |
|---|
| com.netflix.eureka.AbstractInstanceRegistry.getApplicationDeltas()
use
AbstractInstanceRegistry.getApplicationDeltasFromMultipleRegions(String[]) instead. This method has a
flawed behavior of transparently falling back to a remote region if no instances for an app is available locally.
The new behavior is to explicitly specify if you need a remote region. |
| com.netflix.eureka.AbstractInstanceRegistry.getApplications(boolean)
Use
AbstractInstanceRegistry.getApplicationsFromMultipleRegions(String[]) instead. This method has a flawed behavior
of transparently falling back to a remote region if no instances for an app is available locally. The new
behavior is to explicitly specify if you need a remote region. |
| com.netflix.eureka.AbstractInstanceRegistry.getInstancesById(String)
Try
AbstractInstanceRegistry.getInstanceByAppAndId(String, String) instead.
Get all instances by ID, including automatically asking other regions if the ID is unknown. |
| com.netflix.eureka.AbstractInstanceRegistry.getInstancesById(String, boolean)
Try
AbstractInstanceRegistry.getInstanceByAppAndId(String, String, boolean) instead.
Get the list of instances by its unique id. |
| com.netflix.eureka.EurekaServerConfig.getRemoteRegionUrls() |
| com.netflix.eureka.AbstractInstanceRegistry.storeOverriddenStatusIfRequired(String, InstanceInfo.InstanceStatus)
this is expensive, try not to use. See if you can use
#storeOverriddenStatusIfRequired(String, String, InstanceStatus) instead.
Stores overridden status if it is not already there. This happens during
a reconciliation process during renewal requests. |