[JBoss JIRA] (ISPN-2861) Integrate the CloudTM extended statistics in Infinispan
by Pedro Ruivo (JIRA)
[ https://issues.jboss.org/browse/ISPN-2861?page=com.atlassian.jira.plugin.... ]
Work on ISPN-2861 started by Pedro Ruivo.
> Integrate the CloudTM extended statistics in Infinispan
> --------------------------------------------------------
>
> Key: ISPN-2861
> URL: https://issues.jboss.org/browse/ISPN-2861
> Project: Infinispan
> Issue Type: Feature Request
> Components: JMX, reporting and management
> Reporter: Mircea Markus
> Assignee: Pedro Ruivo
> Fix For: 5.3.0.Final
>
>
> The extended statistics allows to profile Infinispan. It will be implemented a two separated modules:
> The first will give information like, for example, average transaction execution, message sizes, number of operations per transaction, etc.
> In addition, the second module will support the called top-key streaming. This technique allows to check which are the most accessed/locked/etc. keys in the application.
> I'll made the full list of the current implemented statistics soon.
--
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, 10 months
[JBoss JIRA] (ISPN-2928) XML Parser for JDBC Cachestore configuration sets wrong value for connection url
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-2928?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant reassigned ISPN-2928:
-------------------------------------
Assignee: Tristan Tarrant (was: Mircea Markus)
> XML Parser for JDBC Cachestore configuration sets wrong value for connection url
> --------------------------------------------------------------------------------
>
> Key: ISPN-2928
> URL: https://issues.jboss.org/browse/ISPN-2928
> Project: Infinispan
> Issue Type: Bug
> Components: Loaders and Stores
> Affects Versions: 5.2.1.Final, 5.2.3.Final
> Reporter: sarah a
> Assignee: Tristan Tarrant
> Attachments: 0001-ISPN-2928-XML-Parser-for-JDBC-Cachestore-configurati.patch
>
>
> The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) doesn't set the connection url. There is a cut and paste error in a switch block:
> {code}
> switch (attribute) {
> case CONNECTION_URL: {
> builder.driverClass(value);
> break;
> }
> case DRIVER_CLASS: {
> builder.driverClass(value);
> break;
> }
> {code}
> This parse error causes a connection not found error at runtime.
--
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, 10 months
[JBoss JIRA] (ISPN-2928) XML Parser for JDBC Cachestore configuration sets wrong value for connection url
by sarah a (JIRA)
[ https://issues.jboss.org/browse/ISPN-2928?page=com.atlassian.jira.plugin.... ]
sarah a updated ISPN-2928:
--------------------------
Description:
The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) doesn't set the connection url. There is a cut and paste error in a switch block:
{code}
switch (attribute) {
case CONNECTION_URL: {
builder.driverClass(value);
break;
}
case DRIVER_CLASS: {
builder.driverClass(value);
break;
}
{code}
This parse error causes a connection not found error at runtime.
was:
The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) doesn't set the connection url. There is a cut and paste error in a switch block:
switch (attribute) {
case CONNECTION_URL: {
builder.driverClass(value);
break;
}
case DRIVER_CLASS: {
builder.driverClass(value);
break;
}
This parse error causes a connection not found error at runtime.
> XML Parser for JDBC Cachestore configuration sets wrong value for connection url
> --------------------------------------------------------------------------------
>
> Key: ISPN-2928
> URL: https://issues.jboss.org/browse/ISPN-2928
> Project: Infinispan
> Issue Type: Bug
> Components: Loaders and Stores
> Affects Versions: 5.2.1.Final, 5.2.3.Final
> Reporter: sarah a
> Assignee: Mircea Markus
> Attachments: 0001-ISPN-2928-XML-Parser-for-JDBC-Cachestore-configurati.patch
>
>
> The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) doesn't set the connection url. There is a cut and paste error in a switch block:
> {code}
> switch (attribute) {
> case CONNECTION_URL: {
> builder.driverClass(value);
> break;
> }
> case DRIVER_CLASS: {
> builder.driverClass(value);
> break;
> }
> {code}
> This parse error causes a connection not found error at runtime.
--
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, 10 months
[JBoss JIRA] (ISPN-2928) XML Parser for JDBC Cachestore configuration sets wrong value for connection url
by sarah a (JIRA)
[ https://issues.jboss.org/browse/ISPN-2928?page=com.atlassian.jira.plugin.... ]
sarah a updated ISPN-2928:
--------------------------
Description:
The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) doesn't set the connection url. There is a cut and paste error in a switch block:
switch (attribute) {
case CONNECTION_URL: {
builder.driverClass(value);
break;
}
case DRIVER_CLASS: {
builder.driverClass(value);
break;
}
This parse error causes a connection not found error at runtime.
was:
The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) sets the JDBC cache store connection url to the driver class. This is a cut and paste error in a switch block.
This parse error causes a connection not found error at runtime.
> XML Parser for JDBC Cachestore configuration sets wrong value for connection url
> --------------------------------------------------------------------------------
>
> Key: ISPN-2928
> URL: https://issues.jboss.org/browse/ISPN-2928
> Project: Infinispan
> Issue Type: Bug
> Components: Loaders and Stores
> Affects Versions: 5.2.1.Final, 5.2.3.Final
> Reporter: sarah a
> Assignee: Mircea Markus
> Attachments: 0001-ISPN-2928-XML-Parser-for-JDBC-Cachestore-configurati.patch
>
>
> The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) doesn't set the connection url. There is a cut and paste error in a switch block:
> switch (attribute) {
> case CONNECTION_URL: {
> builder.driverClass(value);
> break;
> }
> case DRIVER_CLASS: {
> builder.driverClass(value);
> break;
> }
> This parse error causes a connection not found error at runtime.
--
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, 10 months
[JBoss JIRA] (ISPN-2928) XML Parser for JDBC Cachestore configuration sets wrong value for connection url
by sarah a (JIRA)
[ https://issues.jboss.org/browse/ISPN-2928?page=com.atlassian.jira.plugin.... ]
sarah a updated ISPN-2928:
--------------------------
Attachment: 0001-ISPN-2928-XML-Parser-for-JDBC-Cachestore-configurati.patch
Attaching junit test and patch fix
> XML Parser for JDBC Cachestore configuration sets wrong value for connection url
> --------------------------------------------------------------------------------
>
> Key: ISPN-2928
> URL: https://issues.jboss.org/browse/ISPN-2928
> Project: Infinispan
> Issue Type: Bug
> Components: Loaders and Stores
> Affects Versions: 5.2.1.Final, 5.2.3.Final
> Reporter: sarah a
> Assignee: Mircea Markus
> Attachments: 0001-ISPN-2928-XML-Parser-for-JDBC-Cachestore-configurati.patch
>
>
> The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) sets the JDBC cache store connection url to the driver class. This is a cut and paste error in a switch block.
> This parse error causes a connection not found error at runtime.
--
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, 10 months
[JBoss JIRA] (ISPN-2928) XML Parser for JDBC Cachestore configuration sets wrong value for connection url
by sarah a (JIRA)
sarah a created ISPN-2928:
-----------------------------
Summary: XML Parser for JDBC Cachestore configuration sets wrong value for connection url
Key: ISPN-2928
URL: https://issues.jboss.org/browse/ISPN-2928
Project: Infinispan
Issue Type: Bug
Components: Loaders and Stores
Affects Versions: 5.2.3.Final, 5.2.1.Final
Reporter: sarah a
Assignee: Mircea Markus
The new configuration parser for 5.2 (JdbcCacheStoreConfigurationParser52) sets the JDBC cache store connection url to the driver class. This is a cut and paste error in a switch block.
This parse error causes a connection not found error at runtime.
--
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, 10 months
[JBoss JIRA] (ISPN-2806) Add a more efficient FileCacheStore implementation
by Aleksandar Kostadinov (JIRA)
[ https://issues.jboss.org/browse/ISPN-2806?page=com.atlassian.jira.plugin.... ]
Aleksandar Kostadinov commented on ISPN-2806:
---------------------------------------------
I am wondering why invest energy in your own data store instead of using something dedicated? I see JDBM4/MapDB as a good candidate. There seem to be various initiatives around SQLite but most of them are JNI.
I am asking because I see a lot of potential in using local disk space as data store. In a very common cloud environment you have instances with a lot of ephemeral storage that is not generally usable for anything but cache. So this storage that can be terabytes in size and is just waiting for a fast and reliable file store implementation. Setting up a local RDBMS seems to me an overkill and only imposes operational and maintenance overheads.
> Add a more efficient FileCacheStore implementation
> --------------------------------------------------
>
> Key: ISPN-2806
> URL: https://issues.jboss.org/browse/ISPN-2806
> Project: Infinispan
> Issue Type: Feature Request
> Components: Loaders and Stores
> Reporter: Mircea Markus
> Assignee: Dan Berindei
> Priority: Critical
> Fix For: 5.3.0.Final
>
>
> Based on the feedback we got from community/users Infinispan needs a more efficient FileCacheStore implementation. See the [design document|https://community.jboss.org/wiki/FileCacheStoreRedesign] that contains several suggestion of implementing it. It would be nice to also have a benchmark written in order to evaluate the performance between various implementation suggestion.
--
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, 10 months