[JBoss JIRA] Created: (ISPN-1283) CloudCacheStore incorrectly handles JClouds' cloudServiceLocation "EU"
by Gernot Bauer (JIRA)
CloudCacheStore incorrectly handles JClouds' cloudServiceLocation "EU"
----------------------------------------------------------------------
Key: ISPN-1283
URL: https://issues.jboss.org/browse/ISPN-1283
Project: Infinispan
Issue Type: Bug
Components: Loaders and Stores
Affects Versions: 5.0.0.CR8, 4.2.1.FINAL
Reporter: Gernot Bauer
Assignee: Manik Surtani
Infinispan's CloudCacheStore incorrectly handles the JClouds' cloudServiceLocation for Amazon S3 Ireland:
<property name="cloudServiceLocation" value="EU" />
"EU" is defined as uppercase in JClouds. This cannot be used with Infinispan because the parameter is converted to lower case in CloudCacheStore.java:183.
A possible fix that should not break existing code would be to change CloudCacheStore.java:180 from
return input.getId();
to
return input.getId().trim().toLowerCase();
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (ISPN-1267) IsMarshallableInterceptor causes unnecessary marshalling in remote access mode
by Michal Linhard (JIRA)
IsMarshallableInterceptor causes unnecessary marshalling in remote access mode
------------------------------------------------------------------------------
Key: ISPN-1267
URL: https://issues.jboss.org/browse/ISPN-1267
Project: Infinispan
Issue Type: Bug
Components: Marshalling
Affects Versions: 5.0.0.CR8
Reporter: Michal Linhard
Assignee: Manik Surtani
this is because by default GenericJBossMarshaller is used and
GenericJBossMarshaller.isMarshallable implementation marshalls objects to find whether they are marshallable.
this proves to be a very significant performance bottleneck, see details in JBPAPP-6865
in remote access storeAsBinary shouldn't have any performance impact, because the values that are received on serverside are already byte arrays.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months