From derby-dev-return-63503-apmail-db-derby-dev-archive=db.apache.org@db.apache.org Thu Oct 02 12:02:06 2008 Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 11750 invoked from network); 2 Oct 2008 12:02:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Oct 2008 12:02:05 -0000 Received: (qmail 66300 invoked by uid 500); 2 Oct 2008 12:02:04 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 66268 invoked by uid 500); 2 Oct 2008 12:02:04 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 66257 invoked by uid 99); 2 Oct 2008 12:02:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Oct 2008 05:02:04 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Oct 2008 12:01:09 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A2654234C211 for ; Thu, 2 Oct 2008 05:01:44 -0700 (PDT) Message-ID: <859879055.1222948904663.JavaMail.jira@brutus> Date: Thu, 2 Oct 2008 05:01:44 -0700 (PDT) From: "Knut Anders Hatlen (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-3896) Assert failure in LogicalUndoOperation.doMe() when starting slave with uncommitted transactions on the master In-Reply-To: <567093294.1222947106570.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-3896?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Knut Anders Hatlen updated DERBY-3896: -------------------------------------- Affects Version/s: 10.4.1.3 I get the same failure on 10.4. Things appear to work when I build insane jars. > Assert failure in LogicalUndoOperation.doMe() when starting slave with uncommitted transactions on the master > ------------------------------------------------------------------------------------------------------------- > > Key: DERBY-3896 > URL: https://issues.apache.org/jira/browse/DERBY-3896 > Project: Derby > Issue Type: Bug > Components: Replication > Affects Versions: 10.4.1.3, 10.5.0.0 > Environment: Solaris Express Community Edition snv_99 X86 > Derby trunk, svn revision 701061, sane build > java version "1.6.0_07" > Java(TM) Platform, Standard Edition for Business (build 1.6.0_07-b06) > Java HotSpot(TM) Server VM (build 10.0-b23, mixed mode) > Reporter: Knut Anders Hatlen > > I created and froze the master database like this: > /tmp/master % java -jar /code/derby/trunk1/jars/sane/derbyrun.jar ij > ij version 10.5 > ij> connect 'jdbc:derby:db;create=true'; > ij> autocommit off; > ij> create table t1(x int); > 0 rows inserted/updated/deleted > ij> insert into t1 values 1,2,3,4; > 4 rows inserted/updated/deleted > ij> connect 'jdbc:derby:db'; > ij(CONNECTION1)> call syscs_util.syscs_freeze_database(); > 0 rows inserted/updated/deleted > ij(CONNECTION1)> > Then in another terminal window I copied the database with "cp -rp" and booted the copy as a slave: > /tmp/slave % java -jar /code/derby/trunk1/jars/sane/derbyrun.jar ij > ij version 10.5 > ij> connect 'jdbc:derby:db;startSlave=true'; > org.apache.derby.shared.common.sanity.AssertFailure: ASSERT FAILED > at org.apache.derby.shared.common.sanity.SanityManager.ASSERT(SanityManager.java:98) > at org.apache.derby.impl.store.raw.data.LogicalUndoOperation.doMe(LogicalUndoOperation.java:174) > at org.apache.derby.impl.store.raw.log.FileLogger.logAndUndo(FileLogger.java:533) > at org.apache.derby.impl.store.raw.xact.Xact.logAndUndo(Xact.java:374) > at org.apache.derby.impl.store.raw.log.FileLogger.undo(FileLogger.java:1015) > at org.apache.derby.impl.store.raw.xact.Xact.abort(Xact.java:949) > at org.apache.derby.impl.store.raw.xact.XactFactory.rollbackAllTransactions(XactFactory.java:529) > at org.apache.derby.impl.store.raw.log.LogToFile.recover(LogToFile.java:1213) > at org.apache.derby.impl.store.raw.RawStore.boot(RawStore.java:334) > at org.apache.derby.impl.services.monitor.BaseMonitor.boot(BaseMonitor.java:2019) > at org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:291) > at org.apache.derby.impl.services.monitor.BaseMonitor.startModule(BaseMonitor.java:573) > at org.apache.derby.iapi.services.monitor.Monitor.bootServiceModule(Monitor.java:427) > at org.apache.derby.impl.store.access.RAMAccessManager.boot(RAMAccessManager.java:1019) > at org.apache.derby.impl.services.monitor.BaseMonitor.boot(BaseMonitor.java:2019) > at org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:291) > at org.apache.derby.impl.services.monitor.BaseMonitor.startModule(BaseMonitor.java:573) > at org.apache.derby.iapi.services.monitor.Monitor.bootServiceModule(Monitor.java:427) > at org.apache.derby.impl.db.BasicDatabase.bootStore(BasicDatabase.java:780) > at org.apache.derby.impl.db.BasicDatabase.boot(BasicDatabase.java:196) > at org.apache.derby.impl.services.monitor.BaseMonitor.boot(BaseMonitor.java:2019) > at org.apache.derby.impl.services.monitor.TopService.bootModule(TopService.java:291) > at org.apache.derby.impl.services.monitor.BaseMonitor.bootService(BaseMonitor.java:1856) > at org.apache.derby.impl.services.monitor.BaseMonitor.startProviderService(BaseMonitor.java:1722) > at org.apache.derby.impl.services.monitor.BaseMonitor.findProviderAndStartService(BaseMonitor.java:1602) > at org.apache.derby.impl.services.monitor.BaseMonitor.startPersistentService(BaseMonitor.java:1021) > at org.apache.derby.iapi.services.monitor.Monitor.startPersistentService(Monitor.java:550) > at org.apache.derby.impl.jdbc.EmbedConnection.bootDatabase(EmbedConnection.java:2572) > at org.apache.derby.impl.jdbc.EmbedConnection.(EmbedConnection.java:365) > at org.apache.derby.impl.jdbc.EmbedConnection30.(EmbedConnection30.java:73) > at org.apache.derby.impl.jdbc.EmbedConnection40.(EmbedConnection40.java:54) > at org.apache.derby.jdbc.Driver40.getNewEmbedConnection(Driver40.java:68) > at org.apache.derby.jdbc.InternalDriver.connect(InternalDriver.java:238) > at org.apache.derby.jdbc.AutoloadedDriver.connect(AutoloadedDriver.java:119) > at java.sql.DriverManager.getConnection(DriverManager.java:582) > at java.sql.DriverManager.getConnection(DriverManager.java:154) > at org.apache.derby.impl.tools.ij.ij.dynamicConnection(ij.java:1243) > at org.apache.derby.impl.tools.ij.ij.ConnectStatement(ij.java:1093) > at org.apache.derby.impl.tools.ij.ij.ijStatement(ij.java:921) > at org.apache.derby.impl.tools.ij.utilMain.runScriptGuts(utilMain.java:328) > at org.apache.derby.impl.tools.ij.utilMain.go(utilMain.java:248) > at org.apache.derby.impl.tools.ij.Main.go(Main.java:215) > at org.apache.derby.impl.tools.ij.Main.mainCore(Main.java:181) > at org.apache.derby.impl.tools.ij.Main.main(Main.java:73) > at org.apache.derby.tools.ij.main(ij.java:59) > at org.apache.derby.iapi.tools.run.main(run.java:53) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.