Re: Query execution is too long

2021-01-15 Thread siva
Hi Alexandr Shapkin, After seen documentation i am quite not understanding with performance tuning in term of above query. could you please if possible suggest me in above query where i am lagging in query.And what is the other way or possibility i should try that. Any help is very appreciate. Tha

Re: Query execution is too long

2021-01-14 Thread Alexandr Shapkin
Hi Siva, Have you checked the SQL tuning documentation? https://www.gridgain.com/docs/latest/perf-troubleshooting-guide/sql-tuning - Alex Shapkin -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Query execution is too long

2021-01-05 Thread siva
x27;All' OR Tenant IS NULL)) *Ignite console Warnings:* [10:20:21,728][WARNING][long-qry-#40%ServerNode%][LongRunningQueryManager] Query execution is too long [duration=48294ms, type=MAP, distributedJoin=false, enforceJoinOrder=false, lazy=false, schema=PUBLIC, sql='SELECT __Z0.SCHEM

Re: Query execution is too long issue!

2020-02-03 Thread Ilya Kasnacheev
y > that two clients connect to one server node, then some times we are getting > an exception saying query execution is too long. > > > > This is the SQL schema for table > > > > stmt.executeUpdate("CREATE TABLE DOCIDS (" + > " id LONG PRIMARY KEY, url V

Re: Query execution is too long issue!

2020-01-29 Thread Denis Magda
rver node, then some times we are getting > an exception saying query execution is too long. > > > > This is the SQL schema for table > > > > stmt.executeUpdate("CREATE TABLE DOCIDS (" + > " id LONG PRIMARY KEY, url VARCHAR, sco

Query execution is too long issue!

2020-01-29 Thread rssah
When querying via some java application and if the topology is in such a way that two clients connect to one server node, then some times we are getting an exception saying query execution is too long. This is the SQL schema for table stmt.executeUpdate("CREATE TABLE DOCIDS (" +

Re: [WARNING][query-#491%ServerNode%][IgniteH2Indexing] Query execution is too long

2019-07-03 Thread Denis Magda
Please get to know best practices for performance optimizations: https://apacheignite-sql.readme.io/docs/performance-and-debugging As Ilya suggested, your queries just need extra optimization steps. - Denis On Tue, Jul 2, 2019 at 6:49 AM siva wrote: > Hi, > I am using Apache Ignite v2.7.5 as

Re: [WARNING][query-#491%ServerNode%][IgniteH2Indexing] Query execution is too long

2019-07-02 Thread Ilya Kasnacheev
Hello! I can see that you are selecting whole table. It is recommended to use LIMIT clause or use lazy=true (available as JDBC connection parameter and as SqlFieldsQuery setter). Regards, -- Ilya Kasnacheev вт, 2 июл. 2019 г. в 16:49, siva : > Hi, > I am using Apache Ignite v2.7.5 as thincli

[WARNING][query-#491%ServerNode%][IgniteH2Indexing] Query execution is too long

2019-07-02 Thread siva
Hi, I am using Apache Ignite v2.7.5 as thinclient and server in .net core and running in window vm. After getting long running query warning, server getting down. Server log: -- ignite-15e6d7d4.log

Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-27 Thread Andrey Mashenkov
y. Could you let us know how to what could be the issue > here. > > 02:51:52.591 [http-/172.30.8.97:8443-27] WARN > org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query > execution is too long [time=3098 ms, sql='SELECT > PGE__Z1.APPLICATION_DATE __C1_0, >

Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-26 Thread abhijitprusty
NESS_PG_CACHE_NAME + "\".CRDecisionBusinessPGEntity as pge " + filterString; Appreciate all your help -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/org-apache-ignite-internal-processors-query-h2-IgniteH2Indexing-Query-execution-is-too-long-tp12182p12281.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-26 Thread Andrey Mashenkov
> -XX:MinMetaspaceFreeRatio=20 > > -XX:NumberOfGCLogFiles=5 > > -Xloggc:/usr/share/jbossas/standalone/log/gc.log > > -Xms8g > > -Xmx12g > > -verbose:gc > > > > *From:* Abhijit Prusty [mailto:abhijitpru...@fico.com] > *Sent:* Monday, April 24, 2

RE: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-24 Thread Abhijit Prusty
From: Abhijit Prusty [mailto:abhijitpru...@fico.com] Sent: Monday, April 24, 2017 4:09 PM To: user@ignite.apache.org Subject: RE: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long Hi , These are the query we use for the cache, could you please help to

RE: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-24 Thread Abhijit Prusty
user@ignite.apache.org Subject: Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long Hi Abhijit, Yes, three is a limitation: all PARTITIONED caches participating in same query should have same queryParallelismLevel. You can set it viaCacheConfiguration.setQ

Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-24 Thread Andrey Mashenkov
] > *Sent:* Monday, April 24, 2017 3:17 PM > *To:* user@ignite.apache.org > *Subject:* Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing > - Query execution is too long > > > > Hi, > > > > Looks like your query use unapropriate index " >

RE: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-24 Thread Abhijit Prusty
: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long Hi, Looks like your query use unapropriate index "CustomIgniteCacheConsumer"."SUPPRESSION_FLAG_idx": You can try to add index with better selectivity. It is possible you already have it and issue i

Re: org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-24 Thread Andrey Mashenkov
ateCache(consumerConfig); > ****** > > 09:06:33.371 [http-/172.30.72.8:8443-30] WARN > org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query > execution is too long [time=3239 ms, sql='SELECT > __Z0.INCOMING_CRID __C0_0,

org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long

2017-04-24 Thread abhijitprusty
/172.30.72.8:8443-30] WARN org.apache.ignite.internal.processors.query.h2.IgniteH2Indexing - Query execution is too long [time=3239 ms, sql='SELECT __Z0.INCOMING_CRID __C0_0, __Z0.ORIGINAL_CRID __C0_1, __Z0.SSN_ENCRYPT __C0_2, __Z0.FIRST_NAME __C0_3, __Z0.LAST_NAME __C0_4, __Z0.ADDRESS_LINE1 __C0_5, __Z0.CITY

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-28 Thread ronyjohn
Great result. When I changed thread count to *8* as per your suggestion, 'long running' warning messages disappeared. Thank you so much for your promt support. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Query-execution-is-too-long-warning-whi

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-28 Thread Nikolai Tikhonov
-1-back >> up], >> hostName=] >> --Description: sql-query-1-backup >> >> Also I did same way as you did to execute script. >> >> For you information, my machine is windows 7 with i5 4 core machine >> 3.20Ghz >> and 16 GB RAM. >> >> >> >> -- >> View this message in context: http://apache-ignite-users.705 >> 18.x6.nabble.com/Query-execution-is-too-long-warning-while- >> running-Yardstick-ignite-tp11348p11484.html >> Sent from the Apache Ignite Users mailing list archive at Nabble.com. >> > >

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-28 Thread Nikolai Tikhonov
; errorWriter=java.io.PrintStream@6d5f7b86, descriptions=[sql-query-1- > backup], > hostName=] > --Description: sql-query-1-backup > > Also I did same way as you did to execute script. > > For you information, my machine is windows 7 with i5 4 core machine 3.20Ghz > and 16 G

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-27 Thread ronyjohn
iew this message in context: http://apache-ignite-users.70518.x6.nabble.com/Query-execution-is-too-long-warning-while-running-Yardstick-ignite-tp11348p11484.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-27 Thread Nikolai Tikhonov
Benchmark -sn IgniteNode -ds > sql-query-1-backup^ > > Only change I did from default settings is '--client' to '--server'. > > During the run I got '302' times this 'WARNING: Query execution is too > long' > message in log. > >

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-23 Thread ronyjohn
-sn IgniteNode -ds sql-query-1-backup^ Only change I did from default settings is '--client' to '--server'. During the run I got '302' times this 'WARNING: Query execution is too long' message in log. Wondering why this happened on indexed query fields.

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-23 Thread Nikolai Tikhonov
value="java.lang.String"/> > > > > > > > > > > -- > View this message in context: http://apache-ignite-users. > 70518.x6.nabble.com/Query-execution-is-too-long-warning- > while-running-Yardstick-ignite-tp11348p11375.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. >

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-22 Thread ronyjohn
in context: http://apache-ignite-users.70518.x6.nabble.com/Query-execution-is-too-long-warning-while-running-Yardstick-ignite-tp11348p11375.html Sent from the Apache Ignite Users

Re: Query execution is too long warning while running Yardstick-ignite

2017-03-22 Thread Nikolai Tikhonov
is slow here. > machine configurations is 4 core CPU with 16 GB ram. > Topology snapshot [ver=1, servers=1, clients=0, CPUs=4, heap=3.5GB] > > > > WARNING: Query execution is too long [time=4659 ms, sql='SELECT > "query".PERSON._KEY __C0, > "query".PERS

Query execution is too long warning while running Yardstick-ignite

2017-03-21 Thread ronyjohn
uot;query".PERSON /* "query"."salary_idx": SALARY >= ?1 AND SALARY <= ?2 */ WHERE (SALARY >= ?1) AND (SALARY <= ?2) , parameters=[1.343909556640499E8, 1.343919556640499E8]] Any suggestions? -- View this message in context: http://apache