[JBoss JIRA] (ISPN-5034) Non blocking MassIndexing execution
by Gustavo Fernandes (JIRA)
Gustavo Fernandes created ISPN-5034:
---------------------------------------
Summary: Non blocking MassIndexing execution
Key: ISPN-5034
URL: https://issues.jboss.org/browse/ISPN-5034
Project: Infinispan
Issue Type: Enhancement
Reporter: Gustavo Fernandes
Currently the MassIndexer can only be run in a blocking way by calling {{MassIndexer.start()}}
Alternatively, it should be able to return a Future<?> that be can cancelled or waited for a custom period of time
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month
[JBoss JIRA] (ISPN-4991) Implement clustered cache statistics
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-4991?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant updated ISPN-4991:
----------------------------------
Status: Open (was: New)
> Implement clustered cache statistics
> ------------------------------------
>
> Key: ISPN-4991
> URL: https://issues.jboss.org/browse/ISPN-4991
> Project: Infinispan
> Issue Type: Sub-task
> Components: JMX, reporting and management
> Reporter: Vladimir Blagojevic
> Assignee: Vladimir Blagojevic
>
> As of 7.0.0 release we implement cache statistics on a per node cache level. For Infinispan admin console we need to implement aggregate statistics for each cache across all nodes in the cluster. The implementing class should be a registered MBean and should implement similar cache statistics currently implemented by org.infinispan.interceptors.CacheMgmtInterceptor
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month
[JBoss JIRA] (ISPN-5026) The Infinispan 7.0.2's GUI demo cannot be properly launched in Windows 7
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-5026?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant updated ISPN-5026:
----------------------------------
Assignee: Ion Savin (was: Tristan Tarrant)
> The Infinispan 7.0.2's GUI demo cannot be properly launched in Windows 7
> ------------------------------------------------------------------------
>
> Key: ISPN-5026
> URL: https://issues.jboss.org/browse/ISPN-5026
> Project: Infinispan
> Issue Type: Bug
> Components: Configuration, Demos and Tutorials
> Affects Versions: 7.0.2.Final
> Environment: OS: Windows 7 sp1 64bit
> CPU: Intel Core i5-4460
> JDK: Oracle JDK 1.7.0_60
> Reporter: Erich Meier
> Assignee: Ion Savin
> Priority: Minor
> Original Estimate: 2 minutes
> Remaining Estimate: 2 minutes
>
> When running the runGuiDemo.bat. I get the information below:
> Exception in thread "main" java.lang.NoClassDefFoundError: org/infinispan/util/logging/LogFactory
> at org.infinispan.demo.InfinispanDemo.<clinit>InfinispanDemo.java:51)
> Caused by: java.lang.ClassNotFoundException: org.infinispan.util.logging.LogFactory
> at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
> at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
> at java.security.AccessController.doPrivileged(Native Method)
> at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
> at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
> ... 1 more
> this problem is caused by the inproper java classpath configuration in runGuiDemo.bat
> I have fixed this bug by delete code section below:
> for %%i in (%ISPN_HOME%\*.jar) do (
> set CP=%CP%;%%i
> )
> and add three lines:
> set CP=%ISPN_HOME%\demos\gui\infinispan-embedded-7.0.2.Final.jar;%CP%
> set CP=%ISPN_HOME%\demos\gui\infinispan-embedded-query-7.0.2.Final.jar;%CP%
> set CP=%ISPN_HOME%\demos\gui\infinispan-remote-7.0.2.Final.jar;%CP%
> after: set CP=%ISPN_HOME%\demos\gui\infinispan-gui-demo.jar;%CP%
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month
[JBoss JIRA] (ISPN-5026) The Infinispan 7.0.2's GUI demo cannot be properly launched in Windows 7
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-5026?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant updated ISPN-5026:
----------------------------------
Fix Version/s: 7.1.0.Final
7.0.3.Final
> The Infinispan 7.0.2's GUI demo cannot be properly launched in Windows 7
> ------------------------------------------------------------------------
>
> Key: ISPN-5026
> URL: https://issues.jboss.org/browse/ISPN-5026
> Project: Infinispan
> Issue Type: Bug
> Components: Configuration, Demos and Tutorials
> Affects Versions: 7.0.2.Final
> Environment: OS: Windows 7 sp1 64bit
> CPU: Intel Core i5-4460
> JDK: Oracle JDK 1.7.0_60
> Reporter: Erich Meier
> Assignee: Ion Savin
> Priority: Minor
> Fix For: 7.1.0.Final, 7.0.3.Final
>
> Original Estimate: 2 minutes
> Remaining Estimate: 2 minutes
>
> When running the runGuiDemo.bat. I get the information below:
> Exception in thread "main" java.lang.NoClassDefFoundError: org/infinispan/util/logging/LogFactory
> at org.infinispan.demo.InfinispanDemo.<clinit>InfinispanDemo.java:51)
> Caused by: java.lang.ClassNotFoundException: org.infinispan.util.logging.LogFactory
> at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
> at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
> at java.security.AccessController.doPrivileged(Native Method)
> at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
> at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
> ... 1 more
> this problem is caused by the inproper java classpath configuration in runGuiDemo.bat
> I have fixed this bug by delete code section below:
> for %%i in (%ISPN_HOME%\*.jar) do (
> set CP=%CP%;%%i
> )
> and add three lines:
> set CP=%ISPN_HOME%\demos\gui\infinispan-embedded-7.0.2.Final.jar;%CP%
> set CP=%ISPN_HOME%\demos\gui\infinispan-embedded-query-7.0.2.Final.jar;%CP%
> set CP=%ISPN_HOME%\demos\gui\infinispan-remote-7.0.2.Final.jar;%CP%
> after: set CP=%ISPN_HOME%\demos\gui\infinispan-gui-demo.jar;%CP%
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month
[JBoss JIRA] (ISPN-5013) Server-side scripting using JSR-223 (javax.script)
by Tristan Tarrant (JIRA)
[ https://issues.jboss.org/browse/ISPN-5013?page=com.atlassian.jira.plugin.... ]
Tristan Tarrant updated ISPN-5013:
----------------------------------
Status: Open (was: New)
> Server-side scripting using JSR-223 (javax.script)
> --------------------------------------------------
>
> Key: ISPN-5013
> URL: https://issues.jboss.org/browse/ISPN-5013
> Project: Infinispan
> Issue Type: Feature Request
> Components: Core, Server
> Affects Versions: 7.0.2.Final
> Reporter: Tristan Tarrant
> Assignee: Tristan Tarrant
> Fix For: 7.1.0.Final
>
>
> Implement a scripting manager which stores custom scripts in a dedicated cache. These scripts will be invoked with a user-specified binding (i.e. a set of named parameters).
> This component should support all known "code" extension points: simple, tasks, distexec, map/reduce, listeners, etc.
> The script type should be supported by the available JSR-223 scripting engines
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month