[JBoss JIRA] (ISPN-6912) clustered-indexing.xml example configuration file in server is an endpoint
by Martin Gencur (JIRA)
[ https://issues.jboss.org/browse/ISPN-6912?page=com.atlassian.jira.plugin.... ]
Martin Gencur updated ISPN-6912:
--------------------------------
Description:
The file located at $SERVER/docs/examples/configs/clustered-indexing.xml is missing the endpoint subsystem for HotRod and related socket binding (hotrod).
The server is mainly accessed remotely so the endpoint should be available there by default.
was:
The file located at $SERVER/docs/examples/configs/clustered-indexing.xml is missing the endpoint subsystem and related socket bindings (for hotrod, rest, memcached).
The server is mainly accessed remotely so the endpoint should be available there by default.
> clustered-indexing.xml example configuration file in server is an endpoint
> --------------------------------------------------------------------------
>
> Key: ISPN-6912
> URL: https://issues.jboss.org/browse/ISPN-6912
> Project: Infinispan
> Issue Type: Bug
> Affects Versions: 9.0.0.Alpha3
> Reporter: Martin Gencur
> Assignee: Martin Gencur
>
> The file located at $SERVER/docs/examples/configs/clustered-indexing.xml is missing the endpoint subsystem for HotRod and related socket binding (hotrod).
> The server is mainly accessed remotely so the endpoint should be available there by default.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6912) clustered-indexing.xml example configuration file in server is an endpoint
by Martin Gencur (JIRA)
[ https://issues.jboss.org/browse/ISPN-6912?page=com.atlassian.jira.plugin.... ]
Martin Gencur updated ISPN-6912:
--------------------------------
Summary: clustered-indexing.xml example configuration file in server is an endpoint (was: clustered-indexing.xml example configuration file in server is missing endpoints)
> clustered-indexing.xml example configuration file in server is an endpoint
> --------------------------------------------------------------------------
>
> Key: ISPN-6912
> URL: https://issues.jboss.org/browse/ISPN-6912
> Project: Infinispan
> Issue Type: Bug
> Affects Versions: 9.0.0.Alpha3
> Reporter: Martin Gencur
> Assignee: Martin Gencur
>
> The file located at $SERVER/docs/examples/configs/clustered-indexing.xml is missing the endpoint subsystem and related socket bindings (for hotrod, rest, memcached).
> The server is mainly accessed remotely so the endpoint should be available there by default.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6882) Scala warning during REST server compilation
by Galder Zamarreño (JIRA)
[ https://issues.jboss.org/browse/ISPN-6882?page=com.atlassian.jira.plugin.... ]
Galder Zamarreño updated ISPN-6882:
-----------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 9.0.0.Alpha4
Resolution: Done
> Scala warning during REST server compilation
> --------------------------------------------
>
> Key: ISPN-6882
> URL: https://issues.jboss.org/browse/ISPN-6882
> Project: Infinispan
> Issue Type: Bug
> Components: Server
> Affects Versions: 9.0.0.Alpha3
> Reporter: Vojtech Juranek
> Assignee: Vojtech Juranek
> Priority: Trivial
> Fix For: 9.0.0.Alpha4
>
>
> During REST server compilation, Scala compiler produces couple of warngings:
> {noformat}
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/RestCacheManager.scala:59: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => ice
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/RestCacheManager.scala:61: warning: abstract type V in type pattern org.infinispan.container.entries.MVCCEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case mvcc: MVCCEntry[String, V] => cache.getCacheEntry(key) // FIXME: horrible re-get to be fixed by ISPN-3460
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:101: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:312: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:360: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:445: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] 6 warnings found
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6882) Scala warning during REST server compilation
by Galder Zamarreño (JIRA)
[ https://issues.jboss.org/browse/ISPN-6882?page=com.atlassian.jira.plugin.... ]
Galder Zamarreño updated ISPN-6882:
-----------------------------------
Status: Open (was: New)
> Scala warning during REST server compilation
> --------------------------------------------
>
> Key: ISPN-6882
> URL: https://issues.jboss.org/browse/ISPN-6882
> Project: Infinispan
> Issue Type: Bug
> Components: Server
> Affects Versions: 9.0.0.Alpha3
> Reporter: Vojtech Juranek
> Assignee: Vojtech Juranek
> Priority: Trivial
>
> During REST server compilation, Scala compiler produces couple of warngings:
> {noformat}
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/RestCacheManager.scala:59: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => ice
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/RestCacheManager.scala:61: warning: abstract type V in type pattern org.infinispan.container.entries.MVCCEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case mvcc: MVCCEntry[String, V] => cache.getCacheEntry(key) // FIXME: horrible re-get to be fixed by ISPN-3460
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:101: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:312: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:360: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:445: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] 6 warnings found
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6882) Scala warning during REST server compilation
by Galder Zamarreño (JIRA)
[ https://issues.jboss.org/browse/ISPN-6882?page=com.atlassian.jira.plugin.... ]
Galder Zamarreño updated ISPN-6882:
-----------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request: https://github.com/infinispan/infinispan/pull/4465
> Scala warning during REST server compilation
> --------------------------------------------
>
> Key: ISPN-6882
> URL: https://issues.jboss.org/browse/ISPN-6882
> Project: Infinispan
> Issue Type: Bug
> Components: Server
> Affects Versions: 9.0.0.Alpha3
> Reporter: Vojtech Juranek
> Assignee: Vojtech Juranek
> Priority: Trivial
>
> During REST server compilation, Scala compiler produces couple of warngings:
> {noformat}
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/RestCacheManager.scala:59: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => ice
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/RestCacheManager.scala:61: warning: abstract type V in type pattern org.infinispan.container.entries.MVCCEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case mvcc: MVCCEntry[String, V] => cache.getCacheEntry(key) // FIXME: horrible re-get to be fixed by ISPN-3460
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:101: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:312: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:360: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] /home/vjuranek/ws-idea/infinispan/server/rest/src/main/scala/org/infinispan/rest/Server.scala:445: warning: abstract type V in type pattern org.infinispan.container.entries.InternalCacheEntry[String,V] is unchecked since it is eliminated by erasure
> [INFO] case ice: InternalCacheEntry[String, V] => {
> [INFO] ^
> [WARNING] 6 warnings found
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6919) Improve non-tx writes (triangle)
by Pedro Ruivo (JIRA)
[ https://issues.jboss.org/browse/ISPN-6919?page=com.atlassian.jira.plugin.... ]
Pedro Ruivo updated ISPN-6919:
------------------------------
Description:
The current algorithm has 4 messages in the network (worst case) happended sequentially:
1: originator => primary owner
2: primary owner => backups
3: backups => primary owner (ack)
4: primary owner => originator (reply)
The algorithm can be improved to the following:
1: originator => primary owner
2: primary owner => backups & primary owner => originator (parallel)
3: backups => originator & backups => primary owners (acks)
The main flow would be: originator => primary => backups => originator (<= there is the triangle :) )
> Improve non-tx writes (triangle)
> --------------------------------
>
> Key: ISPN-6919
> URL: https://issues.jboss.org/browse/ISPN-6919
> Project: Infinispan
> Issue Type: Feature Request
> Components: Core
> Reporter: Pedro Ruivo
> Assignee: Pedro Ruivo
>
> The current algorithm has 4 messages in the network (worst case) happended sequentially:
> 1: originator => primary owner
> 2: primary owner => backups
> 3: backups => primary owner (ack)
> 4: primary owner => originator (reply)
> The algorithm can be improved to the following:
> 1: originator => primary owner
> 2: primary owner => backups & primary owner => originator (parallel)
> 3: backups => originator & backups => primary owners (acks)
> The main flow would be: originator => primary => backups => originator (<= there is the triangle :) )
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months
[JBoss JIRA] (ISPN-6711) Shared stores should only be purged from coordinator
by Ryan Emerson (JIRA)
[ https://issues.jboss.org/browse/ISPN-6711?page=com.atlassian.jira.plugin.... ]
Ryan Emerson updated ISPN-6711:
-------------------------------
Component/s: Loaders and Stores
> Shared stores should only be purged from coordinator
> ----------------------------------------------------
>
> Key: ISPN-6711
> URL: https://issues.jboss.org/browse/ISPN-6711
> Project: Infinispan
> Issue Type: Enhancement
> Components: Loaders and Stores
> Reporter: William Burns
> Assignee: Ryan Emerson
> Fix For: 9.0.0.Alpha4
>
>
> A shared store's data is accessible from all nodes. Therefore we should only have to purge from 1 node instead of all. Thus we should only purge shared stores if the node is the coordinator. This will reduce possible load on the stores by an amount equal to the number of nodes in worst case, which could be huge.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
8 years, 5 months