[JBoss JIRA] (ISPN-3393) Cannot build server after upgrading jboss-marshalling
by Martin Gencur (JIRA)
Martin Gencur created ISPN-3393:
-----------------------------------
Summary: Cannot build server after upgrading jboss-marshalling
Key: ISPN-3393
URL: https://issues.jboss.org/browse/ISPN-3393
Project: Infinispan
Issue Type: Bug
Components: Server
Reporter: Martin Gencur
Assignee: Tristan Tarrant
Fix For: 6.0.0.Alpha2
The following error occurs when building the server distribution from snapshot:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.0:compile (default-compile) on project infinispan-server-infinispan: Compilation failure: Compilation failure:
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[29,29] cannot find symbol
[ERROR] symbol: class Creator
[ERROR] location: package org.jboss.marshalling
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[30,37] cannot find symbol
[ERROR] symbol: class ReflectiveCreator
[ERROR] location: package org.jboss.marshalling.reflect
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[39,26] cannot find symbol
[ERROR] symbol: class Creator
[ERROR] location: class org.jboss.as.clustering.infinispan.io.ExternalizableExternalizer<T>
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[29,29] cannot find symbol
[ERROR] symbol: class Creator
[ERROR] location: package org.jboss.marshalling
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[30,37] cannot find symbol
[ERROR] symbol: class ReflectiveCreator
[ERROR] location: package org.jboss.marshalling.reflect
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[39,26] cannot find symbol
[ERROR] symbol: class Creator
[ERROR] location: class org.jboss.as.clustering.infinispan.io.ExternalizableExternalizer<T>
[ERROR] /home/mgencur/infinispan/infinispan-server/infinispan/src/main/java/org/jboss/as/clustering/infinispan/io/ExternalizableExternalizer.java:[39,48] cannot find symbol
[ERROR] symbol: class ReflectiveCreator
[ERROR] location: class org.jboss.as.clustering.infinispan.io.ExternalizableExternalizer<T>
[ERROR] -> [Help 1]
E.g. the class Creator does not exist in jboss-marshalling 2.0.0.Beta1
--
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
11 years, 5 months
[JBoss JIRA] (ISPN-3366) Data loss when entry forwarding to primary owner and primary owner shutdown
by Radim Vansa (JIRA)
[ https://issues.jboss.org/browse/ISPN-3366?page=com.atlassian.jira.plugin.... ]
Radim Vansa commented on ISPN-3366:
-----------------------------------
Confirmed, with latest 5.2.x some entry is still lost.
> Data loss when entry forwarding to primary owner and primary owner shutdown
> ---------------------------------------------------------------------------
>
> Key: ISPN-3366
> URL: https://issues.jboss.org/browse/ISPN-3366
> Project: Infinispan
> Issue Type: Bug
> Components: Distributed Cache
> Affects Versions: 5.2.4.Final, 6.0.0.Alpha1
> Reporter: Takayoshi Kimura
> Assignee: Dan Berindei
> Priority: Critical
> Fix For: 5.2.8.Final, 6.0.0.Alpha2, 6.0.0.Final
>
> Attachments: ISPN-3366-full-logs-3rd.zip, ISPN-3366-logs.zip
>
>
> Looks like a problem in entry forwarding.
> Here is test scenario:
> * DIST numOwners=2, start with 4 nodes cluster then normal shutdown 1 node during load
> * HotRod putIfAbsent accesses from 40 threads (1 process, 1 remote cache instance), 40000 entries total
> After the test run, the numberOfEntries on each node are:
> * node1: 26608
> * node2: 26622
> * node3: 26746
> * node4: 0
> Total is 79976 and HotRod client received 11 errors, so 79976 + (11 * 2) = 79998. It means 1 entry is completely missing.
> Let's take a look at the missing entry, hash(thread16key59) = 574ff563.
> Current CH: owners(574ff563) are [node4, node1]
> The events sequence is:
> * hotrod -> node1
> * node1 forwarding it to primary owner node4
> * node4 doesn't process the forwarded entry, shutdown
> Result owners(7c29bccb) is [] empty. This entry is completely lost without any errors.
--
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
11 years, 5 months
[JBoss JIRA] (ISPN-3366) Data loss when entry forwarding to primary owner and primary owner shutdown
by Takayoshi Kimura (JIRA)
[ https://issues.jboss.org/browse/ISPN-3366?page=com.atlassian.jira.plugin.... ]
Takayoshi Kimura commented on ISPN-3366:
----------------------------------------
Looks like the problem symptom is different, it retries (this fixes the original problem) but doesn't commit the entry at the last try. There is no "About to commit entry" log. Probably we need to tweak EntryWrappingInterceptor as well?
> Data loss when entry forwarding to primary owner and primary owner shutdown
> ---------------------------------------------------------------------------
>
> Key: ISPN-3366
> URL: https://issues.jboss.org/browse/ISPN-3366
> Project: Infinispan
> Issue Type: Bug
> Components: Distributed Cache
> Affects Versions: 5.2.4.Final, 6.0.0.Alpha1
> Reporter: Takayoshi Kimura
> Assignee: Dan Berindei
> Priority: Critical
> Fix For: 5.2.8.Final, 6.0.0.Alpha2, 6.0.0.Final
>
> Attachments: ISPN-3366-full-logs-3rd.zip, ISPN-3366-logs.zip
>
>
> Looks like a problem in entry forwarding.
> Here is test scenario:
> * DIST numOwners=2, start with 4 nodes cluster then normal shutdown 1 node during load
> * HotRod putIfAbsent accesses from 40 threads (1 process, 1 remote cache instance), 40000 entries total
> After the test run, the numberOfEntries on each node are:
> * node1: 26608
> * node2: 26622
> * node3: 26746
> * node4: 0
> Total is 79976 and HotRod client received 11 errors, so 79976 + (11 * 2) = 79998. It means 1 entry is completely missing.
> Let's take a look at the missing entry, hash(thread16key59) = 574ff563.
> Current CH: owners(574ff563) are [node4, node1]
> The events sequence is:
> * hotrod -> node1
> * node1 forwarding it to primary owner node4
> * node4 doesn't process the forwarded entry, shutdown
> Result owners(7c29bccb) is [] empty. This entry is completely lost without any errors.
--
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
11 years, 5 months