[JBoss JIRA] (ISPN-2082) JdbcStringBasedCacheStore: ORA-24816 when storing BLOB values > 4000 bytes
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-2082?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant reassigned ISPN-2082:
-------------------------------------
Assignee: Ryan Emerson
> JdbcStringBasedCacheStore: ORA-24816 when storing BLOB values > 4000 bytes
> --------------------------------------------------------------------------
>
> Key: ISPN-2082
> URL: https://issues.jboss.org/browse/ISPN-2082
> Project: Infinispan
> Issue Type: Bug
> Components: Loaders and Stores
> Affects Versions: 5.1.5.FINAL
> Environment: OS X 10.7.4, JDK 1.7.0u4
> Reporter: Ryan Scharer
> Assignee: Ryan Emerson
>
> I've configured a JdbcStringBasedCacheStore with a VARCHAR(4000) key column and a BLOB value column. If I try to store a BLOB value of less than 4000 bytes, everything works fine. If the value is greater, the cache store fails with ORA-24816. This occurs because the BLOB column is not the last one in the PreparedStatement SQL as the Oracle driver requires. My current, sad workaround is to clone the JdbcStringBasedCacheStore implementation and write my own insert/update SQL in storeLockSafe(). This works fine, but obviously isn't ideal from an upgrade point of view. Simply overriding storeLockSafe() isn't an option due to all the private fields.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (ISPN-6788) Administration console - additional information in forms is not always displayed correctly
by Vladimir Blagojevic (JIRA)
[ https://issues.jboss.org/browse/ISPN-6788?page=com.atlassian.jira.plugin.... ]
Vladimir Blagojevic commented on ISPN-6788:
-------------------------------------------
Becomes obsolete with implementation and integration of ISPN-7353. Closing this issue
> Administration console - additional information in forms is not always displayed correctly
> ------------------------------------------------------------------------------------------
>
> Key: ISPN-6788
> URL: https://issues.jboss.org/browse/ISPN-6788
> Project: Infinispan
> Issue Type: Bug
> Components: JMX, reporting and management
> Reporter: Roman Macor
> Assignee: Vladimir Blagojevic
> Priority: Minor
> Fix For: 9.0.0.CR1
>
> Attachments: Screenshot-hovering-over-information.png
>
>
> Hovering over information icons in forms displays additional information, but if the text is too long, only part of it is visible. Please see the attached screenshot.
> Occurs in:
> Cache container -> Configuration -> Tasks -> Create new script -> hover over parameters information icon.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (ISPN-2007) Performance improvements for Infinispan servers
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-2007?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant closed ISPN-2007.
---------------------------------
Resolution: Out of Date
> Performance improvements for Infinispan servers
> -----------------------------------------------
>
> Key: ISPN-2007
> URL: https://issues.jboss.org/browse/ISPN-2007
> Project: Infinispan
> Issue Type: Enhancement
> Components: Remote Protocols
> Reporter: Galder Zamarreño
> Assignee: Galder Zamarreño
>
> Future improvements for Memcached/HotRod servers:
> - Get rid of tuples, they're costly. This would require parameters/header objects to be made mutable.
> - In Memcached, Get rid of any String construction and deal directly with byte[]. This would require converting adding validation to String-represented numbers, booleans...etc. This is by far biggest hotspot in our implementation.
> - Get rid of any collection (ListBuffer) for parameter parsing in Memcached.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (ISPN-6788) Administration console - additional information in forms is not always displayed correctly
by Vladimir Blagojevic (JIRA)
[ https://issues.jboss.org/browse/ISPN-6788?page=com.atlassian.jira.plugin.... ]
Vladimir Blagojevic updated ISPN-6788:
--------------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 9.0.0.CR1
Resolution: Done
> Administration console - additional information in forms is not always displayed correctly
> ------------------------------------------------------------------------------------------
>
> Key: ISPN-6788
> URL: https://issues.jboss.org/browse/ISPN-6788
> Project: Infinispan
> Issue Type: Bug
> Components: JMX, reporting and management
> Reporter: Roman Macor
> Assignee: Vladimir Blagojevic
> Priority: Minor
> Fix For: 9.0.0.CR1
>
> Attachments: Screenshot-hovering-over-information.png
>
>
> Hovering over information icons in forms displays additional information, but if the text is too long, only part of it is visible. Please see the attached screenshot.
> Occurs in:
> Cache container -> Configuration -> Tasks -> Create new script -> hover over parameters information icon.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (ISPN-1283) CloudCacheStore incorrectly handles JClouds' cloudServiceLocation "EU"
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-1283?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant closed ISPN-1283.
---------------------------------
Resolution: Out of Date
The CloudCacheStore has been completely revamped
> 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: 4.2.1.FINAL, 5.0.0.CR8
> Reporter: Gernot Bauer
> Priority: Minor
>
> 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 was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months