Re: How many Caches/Tables we can create/query in parallel?

2020-05-15 Thread Stephen Darlington
For maximum throughput you might want to consider IgniteDataStreamer rather than SQL. If you create your cache in Java or XML you could also avoid indexes entirely. There are lots of options here depending on your use case. In any case, I would urge you to measure the performance before (and

Re: Restarting the Main node when it goes down

2020-05-15 Thread nithin91
Actually in the node A , bean file no IP address is specified for the property "addresses" corresponding to class "org.apache.ignite.spi.discovery.tcp.ipfinder.multicast.TcpDiscoveryMulticastIpFinder" but in the node B IP address of A is specified. Is it because Node A bean file does not have any

Re: Scheduling Cache Refresh

2020-05-15 Thread nithin91
Please find below the log info . ___ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' || .__|_| |_|_| |_\__, | / / / / =|_|==|___/=/_/_/_/ :: Spring Boot

Re: Scheduling Cache Refresh

2020-05-15 Thread akorensh
org.apache.ignite.IgniteException: Spring application context resource is not injected. at org.apache.ignite.cache.store.jdbc.CacheJdbcPojoStoreFactory.create(CacheJdbcPojoStoreFactory.java:171) Take a look at the source:

Re: Restarting the Main node when it goes down

2020-05-15 Thread nithin91
Also what should the address property have in bean file corresponding to Client Node.Should it have the list of all server nodes IP address?Also Can you please explain what happens if list of all server nodes IP address is specified. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Restarting the Main node when it goes down

2020-05-15 Thread nithin91
Thanks this information is helpful -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite.cache.loadcache.Does this method do Increamental Load?

2020-05-15 Thread nithin91
Then what is the best way to do perform incremental load. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How many Caches/Tables we can create/query in parallel?

2020-05-15 Thread adipro
I thought it's obvious that, SQL table return in O(log n) with n being number of elements in BTree. Our task being write intensive, If all the threads are inserting data to same tree then rebalancing and accessing time would be affected right? So for this sake, if we divide each thread's SQL data

Re: Critical System error Detected

2020-05-15 Thread akorensh
This looks like a network issue Critical system error detected. Will be handled accordingly to configured handler [hnd=StopNodeOrHaltFailureHandler [tryStop=false, timeout=0, super=AbstractFailureHandler [ignoredFailureTypes=[SYSTEM_WORKER_BLOCKED, SYSTEM_CRITICAL_OPERATION_TIMEOUT]]],

Re: Critical System error Detected

2020-05-15 Thread nithin91
Yes I am able to ping the IP address from my local machine and yes, i am specifying* only the IP address corresponding to a particular server node in the Client node bean file*.Is it better to have all the server node IP address in the Client nodes under the following section of the bean file.

Re: Critical System error Detected

2020-05-15 Thread Manu
Try this, you just need the multicast group (must be the same on clients and servers within same cluster): PIE

Re: Critical System error Detected

2020-05-15 Thread akorensh
Yes it is best to put all server addresses into this section:

Re: How can I delete entries from a table using pyignite?

2020-05-15 Thread Jueverhard
I don't know how could I verify if my query gets to run, but I came up with a work around to simulate entries deletions ... Clearly not the best way to deal with this, but at least it does the job :') Thanks for helping ! Regards. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Restarting the Main node when it goes down

2020-05-15 Thread akorensh
Ignite will try to connect to each address specified in the addresses section and establish a connection. In the case of a multicast ip finder, it will use a multicast group to scan for nodes. In general one node needs to discover another and establish a socket connection on a specified

Re: How much heap to allocate

2020-05-15 Thread Ilya Kasnacheev
Hello! Yes, Ignite server node will send batches of data to client. Regards, -- Ilya Kasnacheev ср, 19 сент. 2018 г. в 08:17, Ray : > Hi Mikhail, > > Can you explain how is lazy loading working when I use this sql "select * > from table" to query a big table which don't fit in on heap

Re: Help with possible advanced Ignite questions during a meetup

2020-05-15 Thread Kseniya Romanova
Hi Zaar! Sounds cool! Please meet Denis (in CC). He is ready to help you with questions. пт, 15 мая 2020 г. в 10:17, Zaar Hai : > Hi there Ignite gurus, > > I started to work with Ignite lately, mainly from DevOps perspective and > this project looks so interesting that I decided to give a talk

Re: Scheduling Cache Refresh

2020-05-15 Thread nithin91
Hi Issue got resolved after doing the following changes. Attached you the updated code,client.xml(will be in src/resources folder) and pom.xml file. srcandpomupdated.zip 1. Removed the following

Help with possible advanced Ignite questions during a meetup

2020-05-15 Thread Zaar Hai
Hi there Ignite gurus, I started to work with Ignite lately, mainly from DevOps perspective and this project looks so interesting that I decided to give a talk to share my findings so far. Since my knowledge on Ignite is still limited I thought to ask: maybe someone who's more experienced can

Re: Can Apache Superset connect with Apache Ignite ?

2020-05-15 Thread Stephen Darlington
Sadly not currently. We’d need to create a SqlAlchemy dialect for Ignite for it to work. > On 15 May 2020, at 06:54, lan wrote: > > as the topic , if yes, please share the approximate method,thanks. > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/

How many Caches/Tables we can create/query in parallel?

2020-05-15 Thread adipro
We created a task which crawls website. We have an SQL table, where the application writes data while crawling website. But the application has several threads running in parallel, each thread working on a certain website. The amount of data that is being generated on that SQL table is huge and we

Re: How many Caches/Tables we can create/query in parallel?

2020-05-15 Thread Stephen Darlington
I’m not sure that your assumption that separate tables/caches will improve performance is true. Have you benchmarked it? To directly answer the question: there’s not really a limit, but you might want to consider using Cache Groups to minimise the overhead of hundreds of tables. > On 15 May

Critical System error Detected

2020-05-15 Thread nithin91
Hi I two ignite nodes running on Linux and the bean file that consists of cache configuration is deployed on both the nodes.I am trying to run a simple stand alone Java Program and i am getting the following error. Can any help me why i am getting this error. Attaching the Java program i am

Re: Critical System error Detected

2020-05-15 Thread nithin91
Also i am not getting this error when i am connecting with node js thin Client. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/