-
Task
-
Resolution: Done
-
Major
-
14.0.3.Final
-
None
When WildFly starts, Infinispan logs the following:
2022-10-26 10:09:52,275 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 22) ISPN000078: Starting JGroups channel `ejb`
2022-10-26 10:09:52,276 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 22) ISPN000094: Received new cluster view for channel ejb: [node-2|1] (2) [node-2, node-1]
2022-10-26 10:09:52,276 INFO [org.infinispan.CONTAINER] (ServerService Thread Pool – 41) ISPN000556: Starting user marshaller 'org.wildfly.clustering.infinispan.marshall.InfinispanProtoStreamMarshaller'
2022-10-26 10:09:52,277 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 41) ISPN000078: Starting JGroups channel `ejb`
2022-10-26 10:09:52,277 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 41) ISPN000094: Received new cluster view for channel ejb: [node-2|1] (2) [node-2, node-1]
2022-10-26 10:09:52,278 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 22) ISPN000079: Channel `ejb` local address is `node-1`, physical addresses are `[127.0.0.1:7600]`
2022-10-26 10:09:52,279 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 41) ISPN000079: Channel `ejb` local address is `node-1`, physical addresses are `[127.0.0.1:7600]`
2022-10-26 10:09:52,281 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 10) ISPN000078: Starting JGroups channel `ejb`
2022-10-26 10:09:52,281 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 86) ISPN000078: Starting JGroups channel `ejb`
2022-10-26 10:09:52,281 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 86) ISPN000094: Received new cluster view for channel ejb: [node-2|1] (2) [node-2, node-1]
2022-10-26 10:09:52,281 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 10) ISPN000094: Received new cluster view for channel ejb: [node-2|1] (2) [node-2, node-1]
2022-10-26 10:09:52,282 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 10) ISPN000079: Channel `ejb` local address is `node-1`, physical addresses are `[127.0.0.1:7600]`
2022-10-26 10:09:52,283 INFO [org.infinispan.CLUSTER] (ServerService Thread Pool – 86) ISPN000079: Channel `ejb` local address is `node-1`, physical addresses are `[127.0.0.1:7600]`
The reason for this apparent duplication is that WildFly configures the JGroupTransport for each cache manager to use a ForkChannel that shares a single JChannel. This results in a lot of superfluous log messages - and is a source of confusion for many users - especially since the log messages for each ForkChannel are indistinguishable (a ForkChannel shares the same cluster name as the parent JChannel).