X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-persister-feature-adapter%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfigpusherfeature%2Finternal%2FFeatureConfigPusher.java;h=406739d1c752c05a49e21b66d35667a0881678af;hp=50757fb7b90961df577d1dc1d7675bbf56ea8bb5;hb=f5fcfe86c7baeea72b81886e01215840fbf1b91b;hpb=2b21b390c3417c98e48b93493fa77c248bbb1d60 diff --git a/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java b/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java index 50757fb7b9..406739d1c7 100644 --- a/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java +++ b/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java @@ -11,6 +11,7 @@ import com.google.common.base.Optional; import com.google.common.collect.LinkedHashMultimap; import java.util.ArrayList; import java.util.Arrays; +import java.util.ConcurrentModificationException; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; @@ -26,11 +27,15 @@ import org.slf4j.LoggerFactory; * Simple class to push configs to the config subsystem from Feature's configfiles */ public class FeatureConfigPusher { + private static final Logger LOG = LoggerFactory.getLogger(FeatureConfigPusher.class); - private static final int MAX_RETRIES=100; - private static final int RETRY_PAUSE_MILLIS=1; - private FeaturesService featuresService = null; - private ConfigPusher pusher = null; + + private static final int MAX_RETRIES = 10; + private static final int RETRY_PAUSE_MILLIS = 100; + + private final FeaturesService featuresService; + private final ConfigPusher pusher; + /* * A LinkedHashSet (to preserve order and insure uniqueness) of the pushedConfigs * This is used to prevent pushing duplicate configs if a Feature is in multiple dependency @@ -38,6 +43,7 @@ public class FeatureConfigPusher { * (which is handy for logging). */ Set pushedConfigs = new LinkedHashSet<>(); + /* * LinkedHashMultimap to track which configs we pushed for each Feature installation * For future use @@ -47,9 +53,9 @@ public class FeatureConfigPusher { /* * @param p - ConfigPusher to push ConfigSnapshotHolders */ - public FeatureConfigPusher(final ConfigPusher p, final FeaturesService f) { - pusher = p; - featuresService = f; + public FeatureConfigPusher(final ConfigPusher pusher, final FeaturesService featuresService) { + this.pusher = pusher; + this.featuresService = featuresService; } /* * Push config files from Features to config subsystem @@ -92,16 +98,24 @@ public class FeatureConfigPusher { } private boolean isInstalled(final Feature feature) { + Exception lastException = null; for (int retries = 0; retries < MAX_RETRIES; retries++) { try { List installedFeatures = Arrays.asList(featuresService.listInstalledFeatures()); - if(installedFeatures.contains(feature)) { + if (installedFeatures.contains(feature)) { return true; } else { - LOG.warn("Karaf featuresService.listInstalledFeatures() has not yet finished installing feature (retry {}) {} {}",retries,feature.getName(),feature.getVersion()); + LOG.warn("Karaf featuresService.listInstalledFeatures() has not yet finished installing feature (retry {}) {} {}", retries, feature.getName(), feature.getVersion()); } - } catch (Exception e) { - LOG.warn("Karaf featuresService.listInstalledFeatures() has thrown an exception, retry {}", retries, e); + // TODO This catch of ConcurrentModificationException may be able to simply be removed after + // we're fully on Karaf 4 only, as a comment in BUG-6787 indicates that (in Karaf 4) : + // "the 'installed' Map of FeaturesServiceImpl .. appears to be correctly synchronized/thread-safe". + // (Or, if it's still NOK, then it could be fixed properly upstream in Karaf once we're on recent.) + } catch (ConcurrentModificationException e) { + // BUG-6787 experience shows that a LOG.warn (or info) here is very confusing to end-users; + // as we have a retry loop anyway, there is no point informing (and confusing) users of this + // intermediate state of, so ... NOOP, do not log here. + lastException = e; } try { Thread.sleep(RETRY_PAUSE_MILLIS); @@ -109,7 +123,9 @@ public class FeatureConfigPusher { throw new IllegalStateException(e1); } } - LOG.error("Giving up (after {} retries) on Karaf featuresService.listInstalledFeatures() which has not yet finished installing feature {} {}",MAX_RETRIES,feature.getName(),feature.getVersion()); + LOG.error("Giving up (after {} retries) on Karaf featuresService.listInstalledFeatures() " + + "which has not yet finished installing feature {} {} (stack trace is last exception caught)", + MAX_RETRIES, feature.getName(), feature.getVersion(), lastException); return false; }