appform-io / ranger

Service Discovery for Java
Apache License 2.0
7 stars 12 forks source link

Bug Fix : When the Collection of Services is empty the monitor should gracefully return #27

Closed koushikr closed 1 year ago

koushikr commented 1 year ago

The ServiceFinderHub updateRegistry has the following problem...

When we use a dynamic dataSource, http or zk, and when there are call failures - and the dynamicDataSources returns a list of empty services, in the above case newFinders will be empty and matchingServices.size will never match with the knownServiceFinders.size, thereby resetting the entire serviceFinders. Hence the serviceFinders end up returning empty data in case of an outage.

The fix is to gracefully ignore the empty service list and to retain the older service list.

P.S: There is another way of tackling as well. Change the contract of the ServiceDataSource to an optional collection (informing the ones extending that it could be empty) and instead of doing an isEmpty check here, do a null check instead

Or, throw an exception from the service data sources and let the exception handling path take care of it in case of exceptions instead of doing the emptyList and checking on it. With this, true emptyLists will be preserved. But an emptyList from a service dataSource is rare and usually because of something else going on, imo! So preserving the finders in that case made more sense. (Also it isn’t styled like this in other data sinks and sources)

Can do either anyway depending on how you want it styled.