Este conteúdo não está disponível no idioma selecionado.
Chapter 6. Known Issues
6.1. Known Issues Copiar o linkLink copiado para a área de transferência!
Copiar o linkLink copiado para a área de transferência!
- JDG-435 - JDBC store configuration is not copied when creating new template from basic configuration
- When creating a new template the JDBC cache store configuration is not copied over, and must instead be manually entered.This is a known issue in JBoss Data Grid 7.0.0, and no workaround exists at this time.
- JDG-436 - JMX operation ClusterCacheStats.resetStatistics() not working
- When executing the JMX operation
ClusterCacheStats.resetStatistics()
none of the cluster statistics are reset.This is a known issue in JBoss Data Grid 7.0.0, and to workaround this issue executeStatistics.resetStatistics()
on each server individually. - JDG-474 - CLI - container and cache commands don't work in domain mode
- When executing
container
orcache
based commands through the CLI in domain mode the following message is displayed:Container does not exists
Container does not exists
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This is a known issue in JBoss Data Grid 7.0.0, and no workaround exists at this time. - JDG-477 - The C# client does not have asynchronous versions of cache operations
- Unlike the C++ and Java Hot Rod clients, the C# client does not include asynchronous versions of cache operations at this time.This is a known issue in JBoss Data Grid 7.0.0, and a workaround exists by using the Task API to wrap the cache operation. For instance, the following example demonstrates performing an asynchronous
Put(key, value)
:await Task.Run(() => cache.Put(k,v))
await Task.Run(() => cache.Put(k,v))
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - JDG-244 - Spark connector fails with CCE when compatibility mode is enabled
- When attempting to insert values into a cache using the Spark connector while compatibility mode is enabled the request will fail with a
ClassCastException
.This is a known issue in JBoss Data Grid 7.0.0, and to workaround this issue disable compatibility mode. - JDG-333 - NotSerializableException while executing streams via JavaScript in a cluster in DIST mode
- It is not possible to use scripts that create a
Stream
in JavaScript when the cluster is inDIST
mode. Any attempts to execute these scripts will result in aNotSerializableException
, as the lambdas fail when attempting to be serialized.This is a known issue in JBoss Data Grid 7.0.0, and to workaround this issue it is recommended to manually iterator over data using anIterator
, or to execute lambdas after the data has been transferred from the script to the originator node. - JDG-96 - Cache events are incompatible with CDI 1.1 in JDG 7
- When using CDI annotations with the CDI 1.1 API, such as the version found within JBoss EAP 7, a java.lang.RuntimeException is thrown; this exception is thrown as the cache events used by JBoss Data Grid 7.0 include content that has been removed by CDI 1.1.This is a known issue in JBoss Data Grid 7.0.0. This issue is resolved in the CDI 1.2 API; to workaround this issue attach the listeners manually, as outlined in the following steps:
- Remove CDI annotations from the listener bean, including removing all
@Observes
annotations from methods. - Add Listener annotations on desired methods; for example,
@CacheStarted
. - Manually register listeners using
AdvancedCache#addListener
.
- JDG-447 - Changing transport configuration results in restarting wrong cluster
- When updating one server group's transport configuration through the Administration Console and accepting the prompt to restart the server group remains running. Instead, a second server group is restarted in its place.This is a known issue in JBoss Data Grid 7.0.0, and no workaround exists at this time.
- JDG-448 - Endpoints column on cache container page shows wrong ports
- When examining the port for containers in the Administration Console the
port-offset
is not considered, causing multiple containers to show at the same port.This is a known issue in JBoss Data Grid 7.0.0, and no workaround exists at this time. - JGRP-2088 - ArrayIndexOutOfBoundsException on ClassConfigurator.get()
- When attempting to use the JGroups
ENCRYPT
protocol aArrayIndexOutOfBoundsException
is thrown.This is a known issue in JBoss Data Grid 7.0.0, and to workaround this issue use theSYM_ENCRYPT
orASYM_ENCRYPT
protocols, as described in the JBoss Data Grid Administration and Configuration Guide.