Re: Swap Problem

2016-11-02 Thread Level D
Thank you for your reply. Zhou

Re: Swap Problem

2016-11-02 Thread Level D
In additon, after all those operations have been done, will the 20 pieces of data be deleted from hard disk? -- Original -- From: "Level D";<724172...@qq.com>; Date: Wed, Nov 2, 2016 05:22 PM To: "user"; Subject: Swap Problem

Swap Problem

2016-11-02 Thread Level D
Hi all, Here's my case. The swapEnabled is true. I have 120 pieces of data that 100 pieces are stored in memory and the other 20 pieces in hard disk. Will the rest 10 pieces be moved to memory if I delete all data in memory and 10 pieces in hard disk? Regards, Zhou.

Which ports does ignite cluster need to run normally?

2016-09-30 Thread Level D
Hi all, There is an active firewall in my system, and these following ports will be added to exceptions list. time server port??31100~31200 TCP server port??11211 Remote Management ??com.sun.management.jmxremote.port49128 TcpDiscoverySpi??47500~47600 TcpCommunicationSpi??47100~47200 shared

Question about cron-based scheduler

2016-09-28 Thread Level D
Hi all, I find the minimal scheduling time unit this scheduler supported is 1 minute. But I need a scheduling time unit less than 1 minute . Is there a way to make it happen? Regards, Zhou.

Re: Cache Problems

2016-09-13 Thread Level D
I use lucense index. By the way, what do these two files mean? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Cache-Problems-tp7477p7697.html Sent from the Apache Ignite Users mailing list archive at Nabbl

Re: Cache Problems

2016-09-12 Thread Level D
Hi, I have about 17GB data needs to be loaded into ignite. Every time I destory the cache and create the cache with the same name, the memory increases 17GB. It seems the off-heap memory not released. I find ignite can release off-heap memory when grid stopped. I'd like to know if ignite can

How to optimize Ignite when running on a virtual machine

2016-09-08 Thread Level D
Hi all, I have read the article about jvm and system tuning (https://apacheignite.readme.io/docs/jvm-and-system-tuning#section-detailed-garbage-collection-stats). I found it mainly focus on physical machines. But I use virtual machines. Is there any optimization for the virtual machine?

Re: Cache Problems

2016-09-08 Thread Level D
Hi val, Thank you again for your kind reply. http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:p="http://www.springframework.org/schema/p"; xmlns:util="http://www.springframework.org/schema/util"; xmlns:context="http://www.sp

IgniteClientDisconnectedException

2016-09-06 Thread Level D
Hi all, I load data via DataStreamer. After a while, ignite disconnects. Attachment is errorlog. My configuration is Are there any properties need to be improved? Does ignite have a property to disable kicking off slow client? Regards, Zhou. 36B71B50@9249E77B.F886CF57.png Description:

Re: Cache Problems

2016-09-04 Thread Level D
Hi Val, Thanks a lot for your reply. For the third question, I have a case. I buckup a cache in non-heap memory with some updates eveyday. When it's finished, I destory the former cache. But system memory is used more and more. Here's a url. https://issues.apache.org/jira/browse/IGNITE-2833

Cache Problems

2016-09-02 Thread Level D
Hi all, I have several questions about ignite 1.6.0's cache. 1. When does ignite free the non-heap memory? I found a system.gc in source code, is it? 2. How can I check the data in non-heap memory with just ignite itself? 3. Are there any bugs about ignite cannot release non-heap memory cor

LoadCache

2016-07-07 Thread Level D
Hi all, I have a strange case. First, I use LoadCache to load 6,000,000 data into a cache named eqt, it takes about ten minutes. Second, continuously query eqt cache. Third, use LoadCache to load another 6,000,000 data into a cache named eqt_temp. Forth, continuously query eqt_temp cache an

Re: More nodes spend more time

2016-06-22 Thread Level D
I'm quite sure. All machines are in the same computer room. I run my only one client code on one of my servers. In addition, I use ignite 1.6 and execute sql query in filter. What does "JVM need a warm-up before the code will otimizirovan" exactly mean? What shoulde I do about the warm-up?

Re: More nodes spend more time

2016-06-22 Thread Level D
Thanks for asking. I'm trying to get faster reads. Write is good for now. Here's my read example. It's just testing environment. I have two caches, Cache1 and Cache2. And preload 45,000 tips in Cache1. Put 1,000,000 tips into Cache2 to trigger continuous query in Cache1. After the end, cons

More nodes spend more time

2016-06-22 Thread Level D
Hi, I demand both read and write operations, so I chose partitioned mode cache. When I increased my cluster by one node, I got slower reads. Is there any way to make it faster?

Re: Re?? NullPointerException When Use ReadThrough

2016-05-13 Thread Level D
Er... In my opinion, readthrough synchronizes data from hbase to ignite cache. Even though readthrough doesn't get any data from hbase, it also synchronizes data. As a result, nullpointerexception comes out. As I mentioned before, I use hbase without ignite to execute that line, console will

Re?? NullPointerException When Use ReadThrough

2016-05-13 Thread Level D
hbasetest.HbaseLoadCacheStore.load(HbaseLoadCacheStore.java:121), which is not an Ignite class. Is this your code? Can you check what is null in this class on line 121? D. On Thu, May 12, 2016 at 11:43 PM, Level D <724172...@qq.com> wrote: Console shows : [14:33:38,735][SEVERE][sys-

?????? NullPointerException When Use ReadThrough

2016-05-12 Thread Level D
er"; : Re: NullPointerException When Use ReadThrough Can you please provide the stack trace? On Thu, May 12, 2016 at 2:12 AM, Level D <724172...@qq.com> wrote: Hi, When I use readthrough to get a key neither existed in ignite cache nor in hbase, console shows nullpointerexception. Is it

NullPointerException When Use ReadThrough

2016-05-12 Thread Level D
Hi, When I use readthrough to get a key neither existed in ignite cache nor in hbase, console shows nullpointerexception. Is it nessary for hbase to have the record? In addition to this way,how can I avoid that exception?

Problems About Loadcache Streamer And Putall

2016-04-25 Thread Level D
Hi?? I've already read the development manul about these three methods. And it says that putall is inefficient when cluster loads a large nember of data. Here comes my problems. What are the advantages of localcache and streamer in big data? Are there any mesures to ensure data is not lost?

Re: How Does Ignite Create Lucene Index?

2016-04-11 Thread Level D
Thanks a lot for the answer. But here's a new question coming from it. What's ignite's mechanisms for executing distributed queries? Mechanisms for distributed queries used in local mode is clear to know, how about mechanisms used in partitioned mode and replicate mode? By the way, I use l

How Does Ignite Create Lucene Index?

2016-04-11 Thread Level D
Hi, I Would Like To Know How Ignite Creates Lucene Index When I Try Text Quary With Partitioned Mode In Detail. I don't think that the progress is just the same as solr cause ignite doesn't have something like a leader node. Is there anything similar? If every node in ignite cluster has two