Re: C++ GetCompute() error

2019-02-12 Thread Igor Sapego
It's fine, I'm glad it helped you. Best Regards, Igor On Tue, Feb 12, 2019 at 6:23 PM F.D. wrote: > Yes Igor, you're right. It's a my fault. > > Thank you, >F. D. > > > Il giorno mar 12 feb 2019, 13:35 Igor Sapego ha > scritto: > >> Hi, >> >> This exception may happen when you try to

Re: Cluster freeze with SSL enabled and JDK 11

2019-02-12 Thread Ilya Kasnacheev
Hello! It seems that you have problems due not just one but two issues: 1) Java 11 has TLSv1.3 by default and Ignite does not support that - https://issues.apache.org/jira/browse/IGNITE-11298 why it worked for you on CentOS is a mystery. For some reason by Ubuntu has Java 10 in openjdk-11-jdk

Re: CacheStore and native persistence - mixed up

2019-02-12 Thread Karun Chand
Hi Laszlo, Going by the warning message you see - ”Both Ignite native persistence and CacheStore are configured for cache …”, what is probably happening is that you might have enabled native persistence and also provided a CacheConfiguration with a cache factory that can both read and write from

Re: C++ GetCompute() error

2019-02-12 Thread F.D.
Yes Igor, you're right. It's a my fault. Thank you, F. D. Il giorno mar 12 feb 2019, 13:35 Igor Sapego ha scritto: > Hi, > > This exception may happen when you try to register the same callback > several times. It should not happen when you call GetCompute(). > > Best Regards, > Igor > > >

Re: C++ GetCompute() error

2019-02-12 Thread Igor Sapego
Hi, This exception may happen when you try to register the same callback several times. It should not happen when you call GetCompute(). Best Regards, Igor On Tue, Feb 12, 2019 at 2:37 PM F.D. wrote: > Hi igniters, > > I'm trying to port my code from 2.6 to 2.7. And now when I try to get a >

local deployment of web-console-standalone

2019-02-12 Thread Alan Ward
I'm trying to get a local deployment of the web console working via docker. I have the latest 2.7.0 version of the web-console-standalone docker image, started with "docker run -d -p 8080:80 --name web-console-standalone -e DEBUG=* apacheignite/web-console-standalone The container starts up

DataStreamer not loading complete data.

2019-02-12 Thread Hemasundara Rao
Hi, While using DataStreamer (.net ) to load data , it is not loading complete data. For example if I am loading 1,000,000 records to Ignite only 990,000 or less getting loaded. Am I missing here any configuration? It is not giving any exception and loading less data. Please advise me if I am

Re: DataStreamer not loading complete data.

2019-02-12 Thread Павлухин Иван
Hi, Have you called "Close" after last item of data was fed to your streamer? If it is not the case could you please provide your code to check? вт, 12 февр. 2019 г. в 16:10, Hemasundara Rao < hemasundara@travelcentrictechnology.com>: > Hi, > While using DataStreamer (.net ) to load data ,

SQL table - calculating memory size?

2019-02-12 Thread joseheitor
Hi, The capacity-planning docs refer to object sizes in a single cache... how do I calculate the data size in one or more SQL tables, with multiple columns? Do I estimate and sum the data size in each column multiplied by the maximum estimated number of records? And sum these results for all

Re: Cluster freeze with SSL enabled and JDK 11

2019-02-12 Thread Loredana Radulescu Ivanoff
Thank you very much for the info, it was very helpful. I assume it worked on Linux because I specifically set TLS v1.2 as a JVM argument, by specifying -Djdk.tls.server.protocols="TLSv1.2" -Djdk.tls.client.protocols="TLSv1.2" Would you be able to provide a (very) loose estimate for the fix? Is

Re: Cannot connect to web console

2019-02-12 Thread the_palakkaran
Yes I am running on the same node for sure. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Capacity planning spreadsheet (RAM)

2019-02-12 Thread joseheitor
Hi, The capacity planning spreadsheet available for download from the Ignite website appears to be a very useful tool - Thanks. One question: The RAM value in the /Server Capacity (Adjusted)/ section seems to take the individual server RAM and subtract 12G (=E6-4-8). This appears to imply that

I have a question about Java scan ignite cache

2019-02-12 Thread chengpei
import org.apache.ignite.Ignite; import org.apache.ignite.IgniteCache; import org.apache.ignite.Ignition; import org.apache.ignite.cache.CacheAtomicityMode; import org.apache.ignite.cache.CacheMode; import org.apache.ignite.cache.CacheWriteSynchronizationMode; import

C++ GetCompute() error

2019-02-12 Thread F.D.
Hi igniters, I'm trying to port my code from 2.6 to 2.7. And now when I try to get a Compute (in C++) I got this error message: *Trying to register multiple PRC callbacks with the same ID. [type=4, id=94355077]* Can you help me, why I got this? Thanks, F.D.

Re: Cassandra writeBehind configuration

2019-02-12 Thread Pavel Vinokurov
Hi Chris, Please try set the cache configuration for IgniteConfiguration as showed below: CacheConfiguration cacheCfg = new CacheConfiguration<>(WRITEBEHIND).setCacheMode(CacheMode.PARTITIONED) .setExpiryPolicyFactory(TouchedExpiryPolicy.factoryOf(Duration.ONE_HOUR))

Ignite services (Node singleton)

2019-02-12 Thread ashishb888
In my case, -3 different servers -A node singleton service -18 Nodes (All Maven based) I start 17 nodes, and then last node (18th), which start the node singleton service on the cluster. I want service to use different files paths (depends on the servers) e.g. on server 1 use /server1/../.. etc

Re: Cassandra writeBehind configuration

2019-02-12 Thread Вячеслав Коптилин
Hello, It looks like a known issue https://issues.apache.org/jira/browse/IGNITE-8788. Unfortunately, it is not resolved yet. I would suggest the following workaround: 1. create your own CacheStoreFactory public class CustomCassandraCacheStoreFactory extends CassandraCacheStoreFactory {