Bug 974967 - jvmRoute in standalone.xml can create org.infinispan.marshall.NotSerializableException
Summary: jvmRoute in standalone.xml can create org.infinispan.marshall.NotSerializable...
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss Enterprise Application Platform 6
Classification: JBoss
Component: Clustering
Version: 6.1.0
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ER1
: EAP 6.2.0
Assignee: Emmanuel Hugonnet (ehsavoie)
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-06-17 09:30 UTC by Lucas Ponce
Modified: 2014-05-27 01:30 UTC (History)
4 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2013-12-15 16:55:45 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)
test case (14.93 KB, application/zip)
2013-06-17 09:34 UTC, Lucas Ponce
no flags Details
Test case 2 (17.49 KB, application/zip)
2013-06-17 09:39 UTC, Lucas Ponce
no flags Details


Links
System ID Private Priority Status Summary Last Updated
Red Hat Bugzilla 974433 0 unspecified CLOSED Running JPP in Domain mode throws an exception when jvmRoute or instance-id is used for profile full which is non cluste... 2025-02-10 03:27:56 UTC

Internal Links: 974433

Description Lucas Ponce 2013-06-17 09:30:51 UTC
Description of problem:

Adding a "jvmRoute" in standalone.xml profile produces errors in <distributable /> applications.

Version-Release number of selected component (if applicable):

JBoss EAP 6.1.0.GA (AS 7.2.0.Final-redhat-8)


How reproducible:

Add a "jvmRoute" property in standalone.xml and deploy a <distributable /> application.

Steps to Reproduce:
1. Unzip EAP 6.1.
2. Add a "jvmRoute" system property with value "test".
3. Deploy attachment application.

Actual results:

10:48:27,861 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (ServerService Thread Pool -- 52) ISPN000136: Execution error: org.infinispan.marshall.NotSerializableException: org.jboss.as.clustering.registry.RegistryService$1                                                                                                                                                                                     
Caused by: an exception which occurred:                                                                                                                                                                            


Expected results:

Application deployed without errors.

Additional info:

This scenario can be valid:
- Customer wants a farming architecture, where a mod_jk is used to load balance request but not clustering needed.
- Customer can have a third party application with <distributable /> in their web.xml.
- A possible workaround can be to remove <distributable /> but ideal fix should be that if jvmRoute is present EAP 6.1 should detect if infinispan is configure in distributable/clustering instead of local.

Comment 1 Lucas Ponce 2013-06-17 09:34:05 UTC
Created attachment 761971 [details]
test case

Comment 2 Lucas Ponce 2013-06-17 09:39:06 UTC
Created attachment 761972 [details]
Test case 2

Same error with Serializable objects in session

Comment 4 Emmanuel Hugonnet (ehsavoie) 2013-08-08 11:31:33 UTC
https://github.com/jbossas/jboss-eap/pull/273
Fixing the bug by making the transport address in RegistryService serializable.

Comment 5 Jitka Kozana 2013-09-23 06:41:15 UTC
Verified.

Comment 10 Emmanuel Hugonnet (ehsavoie) 2013-12-02 07:22:15 UTC
There should be no change in behaviour (except the missing exception).
The fix was :
The LOCAL_ADDRESS of the RegistryService which is serialized to be shared in the cluster was initialized to its default value because of the missing clustering configuration. This default initialisation was not serializable which provoked this exception.
Thus initialising the LOCAL_ADDRESS with a default value serializable fixed the issue.


Note You need to log in before you can comment on or make changes to this bug.