[JBoss JIRA] (ISPN-9104) Majority partition nodes can process minority topology updates after merge
by Dan Berindei (JIRA)
[ https://issues.jboss.org/browse/ISPN-9104?page=com.atlassian.jira.plugin.... ]
Dan Berindei updated ISPN-9104:
-------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/infinispan/infinispan/pull/5941
> Majority partition nodes can process minority topology updates after merge
> --------------------------------------------------------------------------
>
> Key: ISPN-9104
> URL: https://issues.jboss.org/browse/ISPN-9104
> Project: Infinispan
> Issue Type: Bug
> Components: Core
> Affects Versions: 9.2.1.Final, 9.3.0.Alpha1
> Reporter: Dan Berindei
> Assignee: Dan Berindei
> Labels: testsuite_stability
> Fix For: 9.3.0.Beta1
>
>
> After a merge, NAKACK2 resends some broadcast messages that were originally sent in a partition to the members of the merged cluster that weren't in that partition.
> We have a check in LocalTopologyManagerImpl to ignore topology updates from the wrong coordinator, but unfortunately that only happens after calling resetLocalTopologyBeforeRebalance(). If the topology id is higher than the current topology id, that can install a "reset" topology to prepare for rebalance.
> The reset topology has all the owners owned by the minority partition nodes, so the majority partition nodes installing this topology will invalidate all their entries before conflict resolution even starts.
> This causes random failures in the conflict resolution tests, e.g. {{MergePolicyPreferredAlwaysTest}}:
> {noformat}
> 19:19:28,448 DEBUG (testng-Test:[]) [GMS] Test-NodeA-50368: installing view MergeView::[Test-NodeA-50368|10] (5) [Test-NodeA-50368, Test-NodeB-27290, Test-NodeC-9368, Test-NodeD-49504, Test-NodeE-55304], 2 subgroups: [Test-NodeA-50368|8] (3) [Test-NodeA-50368, Test-NodeB-27290, Test-NodeC-9368], [Test-NodeD-49504|9] (2) [Test-NodeD-49504, Test-NodeE-55304]
> 19:19:28,740 TRACE (jgroups-10,Test-NodeA-50368:[]) [GlobalInboundInvocationHandler] Attempting to execute non-CacheRpcCommand: CacheTopologyControlCommand{cache=___defaultcache, type=CH_UPDATE, sender=Test-NodeD-49504, joinInfo=null, topologyId=21, rebalanceId=7, currentCH=ReplicatedConsistentHash{ns = 256, owners = (2)[Test-NodeD-49504: 132, Test-NodeE-55304: 124]}, pendingCH=ReplicatedConsistentHash{ns = 256, owners = (2)[Test-NodeD-49504: 134, Test-NodeE-55304: 122]}, availabilityMode=null, phase=READ_ALL_WRITE_ALL, actualMembers=[Test-NodeD-49504, Test-NodeE-55304], throwable=null, viewId=7} [sender=Test-NodeD-49504]
> 19:19:28,741 DEBUG (transport-thread-Test-NodeA-p66802-t6:[Topology-___defaultcache]) [LocalTopologyManagerImpl] Installing fake cache topology CacheTopology{id=20, phase=NO_REBALANCE, rebalanceId=6, currentCH=ReplicatedConsistentHash{ns = 256, owners = (2)[Test-NodeD-49504: 132, Test-NodeE-55304: 124]}, pendingCH=null, unionCH=null, actualMembers=[Test-NodeD-49504, Test-NodeE-55304], persistentUUIDs=[6f22a4be-bf94-42a7-9ea1-4128944351a2, 59c315d5-c7d2-4121-b939-01d62ba9af4f]} for cache ___defaultcache
> 19:19:28,742 TRACE (transport-thread-Test-NodeA-p66802-t6:[Topology-___defaultcache]) [StateConsumerImpl] On cache ___defaultcache we have: new segments: []; old segments: RangeSet(256)
> 19:19:28,744 TRACE (transport-thread-Test-NodeA-p66802-t6:[Topology-___defaultcache]) [StateConsumerImpl] On cache ___defaultcache we have: added segments: {}; removed segments: {0-255}
> 19:19:28,745 DEBUG (transport-thread-Test-NodeA-p66802-t6:[Topology-___defaultcache]) [StateConsumerImpl] Removing no longer owned entries for cache ___defaultcache
> 19:19:28,745 TRACE (transport-thread-Test-NodeA-p66802-t6:[Topology-___defaultcache]) [InvocationContextInterceptor] Invoked with command InvalidateCommand{keys=[MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}]} and InvocationContext [org.infinispan.context.impl.NonTxInvocationContext@48a2a9d5]
> 19:19:30,152 TRACE (stateTransferExecutor-thread-Test-NodeA-p66803-t4:[]) [JGroupsTransport] Test-NodeA-50368 sending request 232 to all: SingleRpcCommand{cacheName='___defaultcache', command=RemoveCommand{key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}, value=null, metadata=null, flags=[SKIP_REMOTE_LOOKUP, PUT_FOR_STATE_TRANSFER, IGNORE_RETURN_VALUES], commandInvocationId=CommandInvocation:Test-NodeA-50368:109014, valueMatcher=MATCH_ALWAYS, topologyId=24}}
> 19:19:28,748 TRACE (transport-thread-Test-NodeA-p66802-t6:[Topology-___defaultcache]) [DefaultDataContainer] Removed ImmortalCacheEntry{key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}, value=DURING SPLIT} from container
> 19:19:30,096 TRACE (stateTransferExecutor-thread-Test-NodeA-p66803-t4:[]) [DefaultConflictManager] Cache ___defaultcache conflict detected {Test-NodeA-50368=NullCacheEntry{}, Test-NodeE-55304=ImmortalCacheEntry{key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}, value=BEFORE SPLIT}, Test-NodeC-9368=NullCacheEntry{}, Test-NodeD-49504=ImmortalCacheEntry{key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}, value=BEFORE SPLIT}, Test-NodeB-27290=NullCacheEntry{}}
> 19:19:30,132 TRACE (stateTransferExecutor-thread-Test-NodeA-p66803-t4:[]) [DefaultConflictManager] Cache ___defaultcache applying EntryMergePolicy org.infinispan.conflict.MergePolicy to PreferredEntry NullCacheEntry{}, otherEntries [ImmortalCacheEntry{key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}, value=BEFORE SPLIT}, NullCacheEntry{}, ImmortalCacheEntry{key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}, value=BEFORE SPLIT}, NullCacheEntry{}]
> 19:19:30,132 TRACE (stateTransferExecutor-thread-Test-NodeA-p66803-t4:[]) [DefaultConflictManager] Cache ___defaultcache executing remove on conflict: key MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}
> 19:19:35,274 ERROR (testng-Test:[]) [TestSuiteProgress] Test failed: org.infinispan.conflict.impl.MergePolicyPreferredAlwaysTest.testPartitionMergePolicy[REPL_SYNC, 5N]
> java.lang.AssertionError: Key=MagicKey{1AD3/F92B3173/51@Test-NodeA-50368}. VersionMap: {Test-NodeA-50368=null, Test-NodeE-55304=null, Test-NodeC-9368=null, Test-NodeD-49504=null, Test-NodeB-27290=null}
> at org.testng.AssertJUnit.fail(AssertJUnit.java:59) ~[testng-6.9.9.jar:?]
> at org.testng.AssertJUnit.assertTrue(AssertJUnit.java:24) ~[testng-6.9.9.jar:?]
> at org.testng.AssertJUnit.assertNotNull(AssertJUnit.java:267) ~[testng-6.9.9.jar:?]
> at org.infinispan.conflict.impl.BaseMergePolicyTest.afterConflictResolutionAndMerge(BaseMergePolicyTest.java:113) ~[test-classes/:?]
> at org.infinispan.conflict.impl.BaseMergePolicyTest.testPartitionMergePolicy(BaseMergePolicyTest.java:138) ~[test-classes/:?]
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (ISPN-9096) XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9096?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant edited comment on ISPN-9096 at 4/26/18 2:38 AM:
----------------------------------------------------------------
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{./bin/standalone.sh -Dmaven.download.message=true}}
I get the attached log.
You therefore need to start your server with:
{{./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo}}
was (Author: nadirx):
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{monospaced ./bin/standalone.sh -Dmaven.download.message=true}}
I get the attached log.
You therefore need to start your server with:
{{monospaced ./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo}}
> XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
> ----------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9096
> URL: https://issues.jboss.org/browse/ISPN-9096
> Project: Infinispan
> Issue Type: Bug
> Environment: Name : redhat-release-server
> Version : 7.2
> Release : 9.el7
> Architecture: x86_64
> Install Date: Dom 02 Out 2016 21:02:35 EDT
> Group : System Environment/Base
> Size : 42562
> License : GPLv2
> Signature : RSA/SHA256, Ter 27 Out 2015 04:47:46 EDT, Key ID 199e2f91fd431d51
> Source RPM : redhat-release-server-7.2-9.el7.src.rpm
> Build Date : Sex 23 Out 2015 09:25:19 EDT
> Build Host : x86-030.build.eng.bos.redhat.com
> Relocations : (not relocatable)
> Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
> Vendor : Red Hat, Inc.
> Summary : Red Hat Enterprise Linux Server release file
> Description :
> Red Hat Enterprise Linux Server release files
> Reporter: Diego Lovison
> Attachments: infinispan-server-empty-repo.log
>
>
> Unable to start the standalone server.
> {noformat}
> 15:38:23,825 INFO [org.jboss.modules] (main) JBoss Modules version 1.7.0.Final
> 15:38:24,948 INFO [org.jboss.msc] (main) JBoss MSC version 1.3.2.Final
> 15:38:24,988 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.1.Final
> 15:38:25,254 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) starting
> 15:38:29,228 INFO [org.jboss.as.controller] (Controller Boot Thread) OPVDX002: Failed to pretty print validation error: null
> 15:38:29,233 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: org.jboss.as.controller.persistence.ConfigurationPersistenceException: WFLYCTL0085: Failed to parse configuration
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:143)
> at org.jboss.as.server.ServerService.boot(ServerService.java:377)
> at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:372)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module org.infinispan.extension
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:100)
> at org.jboss.as.server.parsing.StandaloneXml_6.readServerElement(StandaloneXml_6.java:240)
> at org.jboss.as.server.parsing.StandaloneXml_6.readElement(StandaloneXml_6.java:140)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:114)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:52)
> at org.jboss.staxmapper.XMLMapperImpl.processNested(XMLMapperImpl.java:122)
> at org.jboss.staxmapper.XMLMapperImpl.parseDocument(XMLMapperImpl.java:76)
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:126)
> ... 3 more
> Caused by: java.util.concurrent.ExecutionException: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at java.util.concurrent.FutureTask.report(FutureTask.java:122)
> at java.util.concurrent.FutureTask.get(FutureTask.java:192)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:92)
> ... 10 more
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:129)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.access$000(DeferredExtensionContext.java:44)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:74)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:71)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1349)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> Caused by: org.jboss.modules.ModuleLoadException: Error loading module from /home_local/workspace/tmp_diego/infinispan/server/integration/build/target/infinispan-server-9.3.0-SNAPSHOT/modules/system/layers/base/org/infinispan/extension/main/module.xml
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:304)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:260)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:221)
> at org.jboss.modules.LocalModuleFinder.parseModuleXmlFile(LocalModuleFinder.java:250)
> at org.jboss.modules.LocalModuleFinder.lambda$findModule$1(LocalModuleFinder.java:195)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.modules.LocalModuleFinder.findModule(LocalModuleFinder.java:195)
> at org.jboss.modules.ModuleLoader.findModule0(ModuleLoader.java:693)
> at org.jboss.modules.ModuleLoader.findModule(ModuleLoader.java:686)
> at org.jboss.modules.ModuleLoader.loadModuleLocal(ModuleLoader.java:496)
> at org.jboss.modules.ModuleLoader.preloadModule(ModuleLoader.java:399)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:292)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:280)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:111)
> ... 10 more
> Caused by: org.jboss.modules.xml.XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT' (position: END_TAG seen ...g.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT"/>... @8:91)
> at org.jboss.modules.xml.ModuleXmlParser.parseArtifact(ModuleXmlParser.java:981)
> at org.jboss.modules.xml.ModuleXmlParser.parseResources(ModuleXmlParser.java:869)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleContents(ModuleXmlParser.java:659)
> at org.jboss.modules.xml.ModuleXmlParser.parseDocument(ModuleXmlParser.java:426)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:302)
> ... 23 more
> 15:38:29,244 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
> 15:38:29,286 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) stopped in 25ms
> [hudson@edg-perf09 bin]$
> {noformat}
> I was not able to reproduce on my local machine. It is only occurring in the Jenkins servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (ISPN-9096) XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9096?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant closed ISPN-9096.
---------------------------------
Resolution: Explained
> XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
> ----------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9096
> URL: https://issues.jboss.org/browse/ISPN-9096
> Project: Infinispan
> Issue Type: Bug
> Environment: Name : redhat-release-server
> Version : 7.2
> Release : 9.el7
> Architecture: x86_64
> Install Date: Dom 02 Out 2016 21:02:35 EDT
> Group : System Environment/Base
> Size : 42562
> License : GPLv2
> Signature : RSA/SHA256, Ter 27 Out 2015 04:47:46 EDT, Key ID 199e2f91fd431d51
> Source RPM : redhat-release-server-7.2-9.el7.src.rpm
> Build Date : Sex 23 Out 2015 09:25:19 EDT
> Build Host : x86-030.build.eng.bos.redhat.com
> Relocations : (not relocatable)
> Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
> Vendor : Red Hat, Inc.
> Summary : Red Hat Enterprise Linux Server release file
> Description :
> Red Hat Enterprise Linux Server release files
> Reporter: Diego Lovison
> Attachments: infinispan-server-empty-repo.log
>
>
> Unable to start the standalone server.
> {noformat}
> 15:38:23,825 INFO [org.jboss.modules] (main) JBoss Modules version 1.7.0.Final
> 15:38:24,948 INFO [org.jboss.msc] (main) JBoss MSC version 1.3.2.Final
> 15:38:24,988 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.1.Final
> 15:38:25,254 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) starting
> 15:38:29,228 INFO [org.jboss.as.controller] (Controller Boot Thread) OPVDX002: Failed to pretty print validation error: null
> 15:38:29,233 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: org.jboss.as.controller.persistence.ConfigurationPersistenceException: WFLYCTL0085: Failed to parse configuration
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:143)
> at org.jboss.as.server.ServerService.boot(ServerService.java:377)
> at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:372)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module org.infinispan.extension
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:100)
> at org.jboss.as.server.parsing.StandaloneXml_6.readServerElement(StandaloneXml_6.java:240)
> at org.jboss.as.server.parsing.StandaloneXml_6.readElement(StandaloneXml_6.java:140)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:114)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:52)
> at org.jboss.staxmapper.XMLMapperImpl.processNested(XMLMapperImpl.java:122)
> at org.jboss.staxmapper.XMLMapperImpl.parseDocument(XMLMapperImpl.java:76)
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:126)
> ... 3 more
> Caused by: java.util.concurrent.ExecutionException: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at java.util.concurrent.FutureTask.report(FutureTask.java:122)
> at java.util.concurrent.FutureTask.get(FutureTask.java:192)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:92)
> ... 10 more
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:129)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.access$000(DeferredExtensionContext.java:44)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:74)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:71)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1349)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> Caused by: org.jboss.modules.ModuleLoadException: Error loading module from /home_local/workspace/tmp_diego/infinispan/server/integration/build/target/infinispan-server-9.3.0-SNAPSHOT/modules/system/layers/base/org/infinispan/extension/main/module.xml
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:304)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:260)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:221)
> at org.jboss.modules.LocalModuleFinder.parseModuleXmlFile(LocalModuleFinder.java:250)
> at org.jboss.modules.LocalModuleFinder.lambda$findModule$1(LocalModuleFinder.java:195)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.modules.LocalModuleFinder.findModule(LocalModuleFinder.java:195)
> at org.jboss.modules.ModuleLoader.findModule0(ModuleLoader.java:693)
> at org.jboss.modules.ModuleLoader.findModule(ModuleLoader.java:686)
> at org.jboss.modules.ModuleLoader.loadModuleLocal(ModuleLoader.java:496)
> at org.jboss.modules.ModuleLoader.preloadModule(ModuleLoader.java:399)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:292)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:280)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:111)
> ... 10 more
> Caused by: org.jboss.modules.xml.XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT' (position: END_TAG seen ...g.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT"/>... @8:91)
> at org.jboss.modules.xml.ModuleXmlParser.parseArtifact(ModuleXmlParser.java:981)
> at org.jboss.modules.xml.ModuleXmlParser.parseResources(ModuleXmlParser.java:869)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleContents(ModuleXmlParser.java:659)
> at org.jboss.modules.xml.ModuleXmlParser.parseDocument(ModuleXmlParser.java:426)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:302)
> ... 23 more
> 15:38:29,244 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
> 15:38:29,286 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) stopped in 25ms
> [hudson@edg-perf09 bin]$
> {noformat}
> I was not able to reproduce on my local machine. It is only occurring in the Jenkins servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (ISPN-9096) XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9096?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant edited comment on ISPN-9096 at 4/26/18 2:37 AM:
----------------------------------------------------------------
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{monospaced ./bin/standalone.sh -Dmaven.download.message=true
}}
I get the attached log.
You therefore need to start your server with:
{{monospaced ./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo}}
was (Author: nadirx):
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{monospaced text}}./bin/standalone.sh -Dmaven.download.message=true
I get the attached log.
You therefore need to start your server with:
{{monospaced text}}./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo
> XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
> ----------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9096
> URL: https://issues.jboss.org/browse/ISPN-9096
> Project: Infinispan
> Issue Type: Bug
> Environment: Name : redhat-release-server
> Version : 7.2
> Release : 9.el7
> Architecture: x86_64
> Install Date: Dom 02 Out 2016 21:02:35 EDT
> Group : System Environment/Base
> Size : 42562
> License : GPLv2
> Signature : RSA/SHA256, Ter 27 Out 2015 04:47:46 EDT, Key ID 199e2f91fd431d51
> Source RPM : redhat-release-server-7.2-9.el7.src.rpm
> Build Date : Sex 23 Out 2015 09:25:19 EDT
> Build Host : x86-030.build.eng.bos.redhat.com
> Relocations : (not relocatable)
> Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
> Vendor : Red Hat, Inc.
> Summary : Red Hat Enterprise Linux Server release file
> Description :
> Red Hat Enterprise Linux Server release files
> Reporter: Diego Lovison
> Attachments: infinispan-server-empty-repo.log
>
>
> Unable to start the standalone server.
> {noformat}
> 15:38:23,825 INFO [org.jboss.modules] (main) JBoss Modules version 1.7.0.Final
> 15:38:24,948 INFO [org.jboss.msc] (main) JBoss MSC version 1.3.2.Final
> 15:38:24,988 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.1.Final
> 15:38:25,254 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) starting
> 15:38:29,228 INFO [org.jboss.as.controller] (Controller Boot Thread) OPVDX002: Failed to pretty print validation error: null
> 15:38:29,233 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: org.jboss.as.controller.persistence.ConfigurationPersistenceException: WFLYCTL0085: Failed to parse configuration
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:143)
> at org.jboss.as.server.ServerService.boot(ServerService.java:377)
> at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:372)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module org.infinispan.extension
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:100)
> at org.jboss.as.server.parsing.StandaloneXml_6.readServerElement(StandaloneXml_6.java:240)
> at org.jboss.as.server.parsing.StandaloneXml_6.readElement(StandaloneXml_6.java:140)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:114)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:52)
> at org.jboss.staxmapper.XMLMapperImpl.processNested(XMLMapperImpl.java:122)
> at org.jboss.staxmapper.XMLMapperImpl.parseDocument(XMLMapperImpl.java:76)
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:126)
> ... 3 more
> Caused by: java.util.concurrent.ExecutionException: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at java.util.concurrent.FutureTask.report(FutureTask.java:122)
> at java.util.concurrent.FutureTask.get(FutureTask.java:192)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:92)
> ... 10 more
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:129)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.access$000(DeferredExtensionContext.java:44)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:74)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:71)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1349)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> Caused by: org.jboss.modules.ModuleLoadException: Error loading module from /home_local/workspace/tmp_diego/infinispan/server/integration/build/target/infinispan-server-9.3.0-SNAPSHOT/modules/system/layers/base/org/infinispan/extension/main/module.xml
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:304)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:260)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:221)
> at org.jboss.modules.LocalModuleFinder.parseModuleXmlFile(LocalModuleFinder.java:250)
> at org.jboss.modules.LocalModuleFinder.lambda$findModule$1(LocalModuleFinder.java:195)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.modules.LocalModuleFinder.findModule(LocalModuleFinder.java:195)
> at org.jboss.modules.ModuleLoader.findModule0(ModuleLoader.java:693)
> at org.jboss.modules.ModuleLoader.findModule(ModuleLoader.java:686)
> at org.jboss.modules.ModuleLoader.loadModuleLocal(ModuleLoader.java:496)
> at org.jboss.modules.ModuleLoader.preloadModule(ModuleLoader.java:399)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:292)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:280)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:111)
> ... 10 more
> Caused by: org.jboss.modules.xml.XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT' (position: END_TAG seen ...g.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT"/>... @8:91)
> at org.jboss.modules.xml.ModuleXmlParser.parseArtifact(ModuleXmlParser.java:981)
> at org.jboss.modules.xml.ModuleXmlParser.parseResources(ModuleXmlParser.java:869)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleContents(ModuleXmlParser.java:659)
> at org.jboss.modules.xml.ModuleXmlParser.parseDocument(ModuleXmlParser.java:426)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:302)
> ... 23 more
> 15:38:29,244 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
> 15:38:29,286 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) stopped in 25ms
> [hudson@edg-perf09 bin]$
> {noformat}
> I was not able to reproduce on my local machine. It is only occurring in the Jenkins servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (ISPN-9096) XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9096?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant edited comment on ISPN-9096 at 4/26/18 2:37 AM:
----------------------------------------------------------------
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{monospaced ./bin/standalone.sh -Dmaven.download.message=true}}
I get the attached log.
You therefore need to start your server with:
{{monospaced ./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo}}
was (Author: nadirx):
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{monospaced ./bin/standalone.sh -Dmaven.download.message=true
}}
I get the attached log.
You therefore need to start your server with:
{{monospaced ./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo}}
> XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
> ----------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9096
> URL: https://issues.jboss.org/browse/ISPN-9096
> Project: Infinispan
> Issue Type: Bug
> Environment: Name : redhat-release-server
> Version : 7.2
> Release : 9.el7
> Architecture: x86_64
> Install Date: Dom 02 Out 2016 21:02:35 EDT
> Group : System Environment/Base
> Size : 42562
> License : GPLv2
> Signature : RSA/SHA256, Ter 27 Out 2015 04:47:46 EDT, Key ID 199e2f91fd431d51
> Source RPM : redhat-release-server-7.2-9.el7.src.rpm
> Build Date : Sex 23 Out 2015 09:25:19 EDT
> Build Host : x86-030.build.eng.bos.redhat.com
> Relocations : (not relocatable)
> Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
> Vendor : Red Hat, Inc.
> Summary : Red Hat Enterprise Linux Server release file
> Description :
> Red Hat Enterprise Linux Server release files
> Reporter: Diego Lovison
> Attachments: infinispan-server-empty-repo.log
>
>
> Unable to start the standalone server.
> {noformat}
> 15:38:23,825 INFO [org.jboss.modules] (main) JBoss Modules version 1.7.0.Final
> 15:38:24,948 INFO [org.jboss.msc] (main) JBoss MSC version 1.3.2.Final
> 15:38:24,988 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.1.Final
> 15:38:25,254 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) starting
> 15:38:29,228 INFO [org.jboss.as.controller] (Controller Boot Thread) OPVDX002: Failed to pretty print validation error: null
> 15:38:29,233 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: org.jboss.as.controller.persistence.ConfigurationPersistenceException: WFLYCTL0085: Failed to parse configuration
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:143)
> at org.jboss.as.server.ServerService.boot(ServerService.java:377)
> at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:372)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module org.infinispan.extension
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:100)
> at org.jboss.as.server.parsing.StandaloneXml_6.readServerElement(StandaloneXml_6.java:240)
> at org.jboss.as.server.parsing.StandaloneXml_6.readElement(StandaloneXml_6.java:140)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:114)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:52)
> at org.jboss.staxmapper.XMLMapperImpl.processNested(XMLMapperImpl.java:122)
> at org.jboss.staxmapper.XMLMapperImpl.parseDocument(XMLMapperImpl.java:76)
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:126)
> ... 3 more
> Caused by: java.util.concurrent.ExecutionException: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at java.util.concurrent.FutureTask.report(FutureTask.java:122)
> at java.util.concurrent.FutureTask.get(FutureTask.java:192)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:92)
> ... 10 more
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:129)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.access$000(DeferredExtensionContext.java:44)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:74)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:71)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1349)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> Caused by: org.jboss.modules.ModuleLoadException: Error loading module from /home_local/workspace/tmp_diego/infinispan/server/integration/build/target/infinispan-server-9.3.0-SNAPSHOT/modules/system/layers/base/org/infinispan/extension/main/module.xml
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:304)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:260)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:221)
> at org.jboss.modules.LocalModuleFinder.parseModuleXmlFile(LocalModuleFinder.java:250)
> at org.jboss.modules.LocalModuleFinder.lambda$findModule$1(LocalModuleFinder.java:195)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.modules.LocalModuleFinder.findModule(LocalModuleFinder.java:195)
> at org.jboss.modules.ModuleLoader.findModule0(ModuleLoader.java:693)
> at org.jboss.modules.ModuleLoader.findModule(ModuleLoader.java:686)
> at org.jboss.modules.ModuleLoader.loadModuleLocal(ModuleLoader.java:496)
> at org.jboss.modules.ModuleLoader.preloadModule(ModuleLoader.java:399)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:292)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:280)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:111)
> ... 10 more
> Caused by: org.jboss.modules.xml.XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT' (position: END_TAG seen ...g.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT"/>... @8:91)
> at org.jboss.modules.xml.ModuleXmlParser.parseArtifact(ModuleXmlParser.java:981)
> at org.jboss.modules.xml.ModuleXmlParser.parseResources(ModuleXmlParser.java:869)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleContents(ModuleXmlParser.java:659)
> at org.jboss.modules.xml.ModuleXmlParser.parseDocument(ModuleXmlParser.java:426)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:302)
> ... 23 more
> 15:38:29,244 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
> 15:38:29,286 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) stopped in 25ms
> [hudson@edg-perf09 bin]$
> {noformat}
> I was not able to reproduce on my local machine. It is only occurring in the Jenkins servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (ISPN-9096) XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9096?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant commented on ISPN-9096:
---------------------------------------
The full server is no longer published to maven: we depend on JBoss Modules' capability of discovering artifacts in either the local repo ($HOME/.m2/repository) row download them from a remote repo:
https://github.com/jboss-modules/jboss-modules/blob/1.x/src/main/java/org...
As an example, I have deleted my local ~/.m2/repository/org/infinispan directory and starting the server as follows:
{{monospaced text}}./bin/standalone.sh -Dmaven.download.message=true
I get the attached log.
You therefore need to start your server with:
{{monospaced text}}./bin/standalone.sh -Dmaven.repo.local=/home_local/workspace/regression-build-infinispan/m2repo
> XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
> ----------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9096
> URL: https://issues.jboss.org/browse/ISPN-9096
> Project: Infinispan
> Issue Type: Bug
> Environment: Name : redhat-release-server
> Version : 7.2
> Release : 9.el7
> Architecture: x86_64
> Install Date: Dom 02 Out 2016 21:02:35 EDT
> Group : System Environment/Base
> Size : 42562
> License : GPLv2
> Signature : RSA/SHA256, Ter 27 Out 2015 04:47:46 EDT, Key ID 199e2f91fd431d51
> Source RPM : redhat-release-server-7.2-9.el7.src.rpm
> Build Date : Sex 23 Out 2015 09:25:19 EDT
> Build Host : x86-030.build.eng.bos.redhat.com
> Relocations : (not relocatable)
> Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
> Vendor : Red Hat, Inc.
> Summary : Red Hat Enterprise Linux Server release file
> Description :
> Red Hat Enterprise Linux Server release files
> Reporter: Diego Lovison
> Attachments: infinispan-server-empty-repo.log
>
>
> Unable to start the standalone server.
> {noformat}
> 15:38:23,825 INFO [org.jboss.modules] (main) JBoss Modules version 1.7.0.Final
> 15:38:24,948 INFO [org.jboss.msc] (main) JBoss MSC version 1.3.2.Final
> 15:38:24,988 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.1.Final
> 15:38:25,254 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) starting
> 15:38:29,228 INFO [org.jboss.as.controller] (Controller Boot Thread) OPVDX002: Failed to pretty print validation error: null
> 15:38:29,233 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: org.jboss.as.controller.persistence.ConfigurationPersistenceException: WFLYCTL0085: Failed to parse configuration
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:143)
> at org.jboss.as.server.ServerService.boot(ServerService.java:377)
> at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:372)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module org.infinispan.extension
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:100)
> at org.jboss.as.server.parsing.StandaloneXml_6.readServerElement(StandaloneXml_6.java:240)
> at org.jboss.as.server.parsing.StandaloneXml_6.readElement(StandaloneXml_6.java:140)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:114)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:52)
> at org.jboss.staxmapper.XMLMapperImpl.processNested(XMLMapperImpl.java:122)
> at org.jboss.staxmapper.XMLMapperImpl.parseDocument(XMLMapperImpl.java:76)
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:126)
> ... 3 more
> Caused by: java.util.concurrent.ExecutionException: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at java.util.concurrent.FutureTask.report(FutureTask.java:122)
> at java.util.concurrent.FutureTask.get(FutureTask.java:192)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:92)
> ... 10 more
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:129)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.access$000(DeferredExtensionContext.java:44)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:74)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:71)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1349)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> Caused by: org.jboss.modules.ModuleLoadException: Error loading module from /home_local/workspace/tmp_diego/infinispan/server/integration/build/target/infinispan-server-9.3.0-SNAPSHOT/modules/system/layers/base/org/infinispan/extension/main/module.xml
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:304)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:260)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:221)
> at org.jboss.modules.LocalModuleFinder.parseModuleXmlFile(LocalModuleFinder.java:250)
> at org.jboss.modules.LocalModuleFinder.lambda$findModule$1(LocalModuleFinder.java:195)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.modules.LocalModuleFinder.findModule(LocalModuleFinder.java:195)
> at org.jboss.modules.ModuleLoader.findModule0(ModuleLoader.java:693)
> at org.jboss.modules.ModuleLoader.findModule(ModuleLoader.java:686)
> at org.jboss.modules.ModuleLoader.loadModuleLocal(ModuleLoader.java:496)
> at org.jboss.modules.ModuleLoader.preloadModule(ModuleLoader.java:399)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:292)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:280)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:111)
> ... 10 more
> Caused by: org.jboss.modules.xml.XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT' (position: END_TAG seen ...g.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT"/>... @8:91)
> at org.jboss.modules.xml.ModuleXmlParser.parseArtifact(ModuleXmlParser.java:981)
> at org.jboss.modules.xml.ModuleXmlParser.parseResources(ModuleXmlParser.java:869)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleContents(ModuleXmlParser.java:659)
> at org.jboss.modules.xml.ModuleXmlParser.parseDocument(ModuleXmlParser.java:426)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:302)
> ... 23 more
> 15:38:29,244 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
> 15:38:29,286 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) stopped in 25ms
> [hudson@edg-perf09 bin]$
> {noformat}
> I was not able to reproduce on my local machine. It is only occurring in the Jenkins servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months
[JBoss JIRA] (ISPN-9096) XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-9096?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant updated ISPN-9096:
----------------------------------
Attachment: infinispan-server-empty-repo.log
> XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT'
> ----------------------------------------------------------------------------------------------------------------------
>
> Key: ISPN-9096
> URL: https://issues.jboss.org/browse/ISPN-9096
> Project: Infinispan
> Issue Type: Bug
> Environment: Name : redhat-release-server
> Version : 7.2
> Release : 9.el7
> Architecture: x86_64
> Install Date: Dom 02 Out 2016 21:02:35 EDT
> Group : System Environment/Base
> Size : 42562
> License : GPLv2
> Signature : RSA/SHA256, Ter 27 Out 2015 04:47:46 EDT, Key ID 199e2f91fd431d51
> Source RPM : redhat-release-server-7.2-9.el7.src.rpm
> Build Date : Sex 23 Out 2015 09:25:19 EDT
> Build Host : x86-030.build.eng.bos.redhat.com
> Relocations : (not relocatable)
> Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
> Vendor : Red Hat, Inc.
> Summary : Red Hat Enterprise Linux Server release file
> Description :
> Red Hat Enterprise Linux Server release files
> Reporter: Diego Lovison
> Attachments: infinispan-server-empty-repo.log
>
>
> Unable to start the standalone server.
> {noformat}
> 15:38:23,825 INFO [org.jboss.modules] (main) JBoss Modules version 1.7.0.Final
> 15:38:24,948 INFO [org.jboss.msc] (main) JBoss MSC version 1.3.2.Final
> 15:38:24,988 INFO [org.jboss.threads] (main) JBoss Threads version 2.3.1.Final
> 15:38:25,254 INFO [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) starting
> 15:38:29,228 INFO [org.jboss.as.controller] (Controller Boot Thread) OPVDX002: Failed to pretty print validation error: null
> 15:38:29,233 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: org.jboss.as.controller.persistence.ConfigurationPersistenceException: WFLYCTL0085: Failed to parse configuration
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:143)
> at org.jboss.as.server.ServerService.boot(ServerService.java:377)
> at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:372)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module org.infinispan.extension
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:100)
> at org.jboss.as.server.parsing.StandaloneXml_6.readServerElement(StandaloneXml_6.java:240)
> at org.jboss.as.server.parsing.StandaloneXml_6.readElement(StandaloneXml_6.java:140)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:114)
> at org.jboss.as.server.parsing.StandaloneXml.readElement(StandaloneXml.java:52)
> at org.jboss.staxmapper.XMLMapperImpl.processNested(XMLMapperImpl.java:122)
> at org.jboss.staxmapper.XMLMapperImpl.parseDocument(XMLMapperImpl.java:76)
> at org.jboss.as.controller.persistence.XmlConfigurationPersister.load(XmlConfigurationPersister.java:126)
> ... 3 more
> Caused by: java.util.concurrent.ExecutionException: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at java.util.concurrent.FutureTask.report(FutureTask.java:122)
> at java.util.concurrent.FutureTask.get(FutureTask.java:192)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.load(DeferredExtensionContext.java:92)
> ... 10 more
> Caused by: javax.xml.stream.XMLStreamException: WFLYCTL0083: Failed to load module
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:129)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.access$000(DeferredExtensionContext.java:44)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:74)
> at org.jboss.as.controller.parsing.DeferredExtensionContext$1.call(DeferredExtensionContext.java:71)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
> at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
> at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1349)
> at java.lang.Thread.run(Thread.java:748)
> at org.jboss.threads.JBossThread.run(JBossThread.java:485)
> Caused by: org.jboss.modules.ModuleLoadException: Error loading module from /home_local/workspace/tmp_diego/infinispan/server/integration/build/target/infinispan-server-9.3.0-SNAPSHOT/modules/system/layers/base/org/infinispan/extension/main/module.xml
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:304)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:260)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:221)
> at org.jboss.modules.LocalModuleFinder.parseModuleXmlFile(LocalModuleFinder.java:250)
> at org.jboss.modules.LocalModuleFinder.lambda$findModule$1(LocalModuleFinder.java:195)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.jboss.modules.LocalModuleFinder.findModule(LocalModuleFinder.java:195)
> at org.jboss.modules.ModuleLoader.findModule0(ModuleLoader.java:693)
> at org.jboss.modules.ModuleLoader.findModule(ModuleLoader.java:686)
> at org.jboss.modules.ModuleLoader.loadModuleLocal(ModuleLoader.java:496)
> at org.jboss.modules.ModuleLoader.preloadModule(ModuleLoader.java:399)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:292)
> at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:280)
> at org.jboss.as.controller.parsing.DeferredExtensionContext.loadModule(DeferredExtensionContext.java:111)
> ... 10 more
> Caused by: org.jboss.modules.xml.XmlPullParserException: Failed to resolve artifact 'org.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT' (position: END_TAG seen ...g.infinispan.server:infinispan-server-infinispan:9.3.0-SNAPSHOT"/>... @8:91)
> at org.jboss.modules.xml.ModuleXmlParser.parseArtifact(ModuleXmlParser.java:981)
> at org.jboss.modules.xml.ModuleXmlParser.parseResources(ModuleXmlParser.java:869)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleContents(ModuleXmlParser.java:659)
> at org.jboss.modules.xml.ModuleXmlParser.parseDocument(ModuleXmlParser.java:426)
> at org.jboss.modules.xml.ModuleXmlParser.parseModuleXml(ModuleXmlParser.java:302)
> ... 23 more
> 15:38:29,244 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
> 15:38:29,286 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: Infinispan Server 9.3.0-SNAPSHOT (WildFly Core 4.0.0.Final) stopped in 25ms
> [hudson@edg-perf09 bin]$
> {noformat}
> I was not able to reproduce on my local machine. It is only occurring in the Jenkins servers.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
7 years, 8 months