Re: Remote debugging

2019-01-03 Thread Lokesh Sharma
Hi Denis That solved the problem. I'm using DBeaver and it is working fine. Thank you. On Thu, Jan 3, 2019 at 6:03 AM Denis Magda wrote: > Check the following pages: > >- Ignite tooling: https://apacheignite-sql.readme.io/docs/sql-tooling >- Performance and debugging: >https://apach

Re: Full GC happening during rebalancing

2019-01-03 Thread userx
Hi, I have not been able to get the heap dump after oom (it is not opening from mat or jhat) but I am repeating my experiment and just took the heap dump when one of the ignite servers is at 2 gb out of 5 gb. This is what the mat extract tells me 80 instances of "org.apache.ignite.internal.util.

TcpCommunicationSpi failed to establish connect to node node will be dropped from cluster.

2019-01-03 Thread sehii
I have a question. our company system uses Ignite1.9 version. we made the topology with 8 nodes.(01-08) In our business logic, every one minute all nodes have to check other nodes status each other by Ignite ping . when 02_node sent ignite ping to the 06_node, the exception was occured. Excep

Ignite SparkSQL need to pre-load data?

2019-01-03 Thread anthonycwmak
I want to find how to speed up SparkSQL using Ignite (in particular I am wondering if it can be a replacement for Presto and my files are parquet format in S3). Question: Reading from the links in https://ignite.apache.org/use-cases/spark/sql-queries.html, is it true (in my case) I need to pre-lo

Do elements with EternalExpiryPolicy in cache ever get evicted?

2019-01-03 Thread rick_tem
Hi, I am on Ignite version 2.5, not using Ignite persistence, and I have some data in a cache which I want to keep around in memory so I've set up an EternalExpiryPolicy on the particular cache. Will this stay in memory then so my cache queries will work (provided I have enough memory)? I really

Re: Ignite .NET in docker (linux)?

2019-01-03 Thread F.D.
I've done some further steps. now the docker file is: FROM microsoft/dotnet:2.1-sdk ENV http_proxy='http://10.0.75.1:3128' ENV https_proxy='https://10.0.75.1:3128' WORKDIR /app RUN apt update && apt install default-jdk -y --no-install-recommends COPY *.csproj ./ COPY nuget.config ./ RUN dotne

SQL performance very slow compared to KV in pure-in-memory cache?

2019-01-03 Thread summasumma
Hi, I was trying to benchmark ignite for with YCSB in both KV and SQL model. Ignite is 2 node cluster with 4CPU and 24GB ram and capable 10Gig n/w cards. Persistance=false(disabled) and backup=1 With this setup, when i ran ycsb for insert and read operations i get following: 1) 100% insert perf

Getting javax.cache.CacheException after upgrading to Ignite 2.7

2019-01-03 Thread Prasad Bhalerao
Hi After upgrading to 2.7 version I am getting following exception. I am executing a SELECT sql inside optimistic transaction with serialization isolation level. 1) Has anything changed from 2.6 to 2.7 version? This work fine prior to 2.7 version. After changing it to Pessimistic and isolation

Partitions stuck in MOVING state after upgrade to 2.7

2019-01-03 Thread Dmitry Lazurkin
Hello. Partitions on Ignite cluster stuck forever in MOVING state after restart. Cluster version is 2.7.0#20181130-sha1:256ae401. I don't see any errors in logs about moving partitions and and I don't understand why Ignite try to move partitions. May be I can enable some additional logs for troubl

Full GC happening during rebalancing

2019-01-03 Thread userx
Hi I am running Ignite data grid in persistent mode with following configuration. 20 clients 3 ignite servers (S1,S2,S3) of Xmx 5G started with 2.6.0 I have set WAL and WALArchiving to the same path so that the WAL Archiving is disabled. For TcpCommunicationSpi After 15-20 minutes of run (by t

Full GC happening during rebalancing

2019-01-03 Thread userx
Hi I am running Ignite data grid in persistent mode with following configuration. 20 clients 3 ignite servers (S1,S2,S3) of Xmx 5G started with 2.6.0 I have set WAL and WALArchiving to the same path so that the WAL Archiving is disabled. For TcpCommunicationSpi After 15-20 minutes of run (by t

Iterating through native persistence entries before joining the cluster

2019-01-03 Thread Lukas Polacek
Hi, in our use case we need to run some C++ code (via JNI) whenever something is pushed into the local Ignite cache. In other words, we need to have Ignite in sync with C++ memory. We have a local listener that listens to EVT_CACHE_OBJECT_PUT events and executes the C++ code, so everything is fine

Re: Ignite .NET in docker (linux)?

2019-01-03 Thread F.D.
Ok, so your idea is to build an image starting from Microsoft .NET image. Then you add the java jdk, and make a c# project that launch the ignite node, is it right? Can you clarify to me these lines: ... RUN dotnet restore ... ENTRYPOINT ["dotnet", "run"] thanks, F.D. On Fri, Dec 21, 2018