Return-Path: X-Original-To: apmail-karaf-issues-archive@minotaur.apache.org Delivered-To: apmail-karaf-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8E671DA29 for ; Wed, 3 Oct 2012 19:20:08 +0000 (UTC) Received: (qmail 20894 invoked by uid 500); 3 Oct 2012 19:20:08 -0000 Delivered-To: apmail-karaf-issues-archive@karaf.apache.org Received: (qmail 20853 invoked by uid 500); 3 Oct 2012 19:20:08 -0000 Mailing-List: contact issues-help@karaf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@karaf.apache.org Delivered-To: mailing list issues@karaf.apache.org Received: (qmail 20679 invoked by uid 99); 3 Oct 2012 19:20:08 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Oct 2012 19:20:08 +0000 Date: Thu, 4 Oct 2012 06:20:08 +1100 (NCT) From: "Jason Montojo (JIRA)" To: issues@karaf.apache.org Message-ID: <887949704.160406.1349292008326.JavaMail.jiratomcat@arcas> In-Reply-To: <584452661.160376.1349291891769.JavaMail.jiratomcat@arcas> Subject: [jira] [Updated] (KARAF-1894) Framework's active start level is set to org.osgi.framework.startlevel.beginning too early when launching Karaf with empty bundle cache MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/KARAF-1894?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jason Montojo updated KARAF-1894: --------------------------------- Attachment: slbug.tar.gz Tarball containing overlay that reproduces described issue. Simply untar from within apache-karaf-2.2.9 folder. > Framework's active start level is set to org.osgi.framework.startlevel.beginning too early when launching Karaf with empty bundle cache > --------------------------------------------------------------------------------------------------------------------------------------- > > Key: KARAF-1894 > URL: https://issues.apache.org/jira/browse/KARAF-1894 > Project: Karaf > Issue Type: Bug > Affects Versions: 2.2.9 > Environment: Mac 10.8.2/Oracle JDK 1.6.0_35 > Reporter: Jason Montojo > Attachments: slbug.tar.gz > > > When launching Karaf 2.2.9 with an empty bundle cache, the framework's active start level is already set to org.osgi.framework.startlevel.beginning before all the boot features have been started. The impact is that bundles can be loaded in the wrong order, and File Install ends up scanning the deploy folder when it's not supposed to. > This is problematic because we're using boot features to load up our core infrastructure and the deploy folder to host plugins. If we prepackage any plugins with our product with an empty bundle cache, the plugins get installed and started before the core. > The attached tarball contains a set of 3 bundles that reproduce the symptoms. Simply untar within the apache-karaf-2.2.9 directory. > In the test tarball, there are 3 bundles that do the same thing. When start() is called, they print out their name and the framework's current start level, then wait for 1 second. > bundle1 (start-level=60) and bundle2 (start-level=80) are part of a boot feature. However, bundle2 is listed first in the XML. bundle3 is in the deploy directory. File Install is configured so that it doesn't scan until start level 81 (via felix.fileinstall.active.level). > I'm expecting that the bundles are loaded in this order: bundle1, bundle2, bundle3. > If I clear the bundle cache and start Karaf, I get the following output: > [bundle2] 100 > [bundle3] 100 > [bundle1] 100 > This indicates that when bundle2's start() is called, the framework's start level is already set to org.osgi.framework.startlevel.beginning (in this case, 100) before the boot features have started. > If I run Karaf again without clearing the bundle cache, I get the following: > [bundle1] 60 > [bundle2] 80 > [bundle3] 80 > This is better, but felix.fileinstall.active.level is set to 81, so bundle3 should not be starting at start level 80. This is probably a separate issue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira