Questions tagged [redhat-datagrid]

For development issues encountered while using Red Hat JBoss Data Grid

Red Hat JBoss Data Grid is an in-memory data grid to accelerate performance that is fast, distributed, scalable, and independent from the data tier.

Click here for free development subscription which allows you to download Red Hat JBoss Data Grid for development use https://developers.redhat.com/downloads/

10 questions
1
vote
0 answers

ISPN005003: Exception reported java.lang.SecurityException: ISPN006017: Operation 'EXEC' requires authentication

** Current Situation : ** Trying to deploy java application using JBOSS EAP(7.4.2) and RED HAT DATAGRID(8.3.1), having both container in same network.But when EAP tries to put data into Datagrid, ISPN006017: Operation 'EXEC' requires authentication…
1
vote
1 answer

How to implement protostream with AutoProtoSchemaBuilder for Data Grid Red Hat remote cache

I have a java application managed from maven. I have implemented Data Grid cache with org.infinispan.client.hotrod.RemoteCacheManager version 8.2 to connect the application to distribuited remote cache service. Followed the link page Red Hat…
Stefano
  • 1,439
  • 4
  • 23
  • 38
0
votes
1 answer

Infinispan 11 - Cannot retrieve the keyset of a cache (ISPN000287)

Unfortunately I cannot retrieve the keyset from a cache because I get the following error: ISPN000287: Unauthorized access: subject 'null' lacks 'ADMIN' permission It's quite strange; because in this example code I am able to create a cache if it's…
flatlopa
  • 111
  • 10
0
votes
2 answers

Infinispan java.lang.SecurityException: ISPN006017: Unauthorized 'PUT' operation

I am trying to put a value in Infinispan cache using Hotrod nodeJS client. The code runs fine if the server is installed locally. However, when I run the same code with Infinispan server hosted on docker container I get the following…
0
votes
1 answer

Infinispan server installation strategy for non-prod test environments

We are currently evaluating infinispan server as a cache server for our application running in JBOSS. We are planning to use hotrod endpoints to access infinispan cache from our application nodes. We have around 300+ test environments, what would be…
0
votes
2 answers

Standalone/Domain Model not available in Infinispan server 10 and 11 version

We are planning to setup infinispan server cluster setup in domain mode for infinispan server 10 or 11 version. Standalone/Domain Model was available in Infinispan server until version 9. Infinispan server 10/11 setup guide does not discuss anything…
0
votes
0 answers

Integration RedHat DataGrid with Spring Boot (throw SocketTimeoutException)

I create an application with spring boot that use the data grid redHat (Infinispan 'Estrella Galicia' 9.3.6.Final in standalone) to management of java bean in memory chache. When i get the cache configured on datagrid, i show the following…
giosefer
  • 31
  • 3
0
votes
1 answer

jboss data grid for clustered enterprise application - what is the efficient way

we are having a clustered enterprise application using JTA transaction and hibernate for database operations deployed on JBoss EAP. To increase system performance we are planning to use Jboss data grid. This is how I plan to use jboss data grid: I…
priyam
  • 74
  • 7
0
votes
1 answer

Problems admin'ing my cluster on windows

I’m having problems admin’ing my cluster. I can run ‘standalone -c clustered.xml’ on Windows and everything looks ok. However, if I run ‘domain.bat’ I can’t see how to configure the domain.xml file so that it can see anything else on my local…
user2879327
-1
votes
1 answer

Infinispan how to select an embedded entity

I am using RedHat DataGrid (it is like Infinispan). I have this class Execution which has a collection of Workflow type. I need to execute the following query: select e.workflow from Execution e where e.workflo.id in (1, 2) It is possible? I tried…