Re: Null Pointer Error in GridDhtPartitionsExchangeFuture

2020-02-21 Thread Ilya Kasnacheev
Hello! I have no idea, I recommend collecting a heap dump and analyzing it to locate any leaks. I think that something would indeed happen at the cluster in that time. Regards, -- Ilya Kasnacheev пт, 21 февр. 2020 г. в 06:07, wentat : > Hi Ilya, > > at the time of running the exper

Re: Long running query

2020-02-21 Thread Ilya Kasnacheev
Hello! Our current optimizer is not very smart. If you found an USE INDEX which allows your query to run sufficiently fast, my recommendation is to just use it. Regards, -- Ilya Kasnacheev пт, 21 февр. 2020 г. в 14:45, breathem : > Hello, > We have two tables LD (8 000 000 rows) and

Re: How to access IGFS file written one node from other node in cluster ??

2020-02-21 Thread Ilya Kasnacheev
Hello! We do not recommend developing new IGFS applications because we are removing this feature. Regards, -- Ilya Kasnacheev пт, 21 февр. 2020 г. в 09:28, Preeti Nidgunde : > I have written IGFS java application. I want to write shared file such > that > if I write file from one

Re: Is Apache ignite support tiering or it only support caching??

2020-02-21 Thread Ilya Kasnacheev
Hello! Ignite has optional on-heap tier and also optional disk tier (Native Persistence will offload data there as RAM is exhausted). I wonder if that's enough for your use case. Regards, -- Ilya Kasnacheev пт, 21 февр. 2020 г. в 15:21, Preet : > I want to different tier l

Re: C++ Node doesnot shut down

2020-02-21 Thread Ilya Kasnacheev
Hello! Can you collect stack traces (both JVM with jstack and C with gdb, if possible)? Regards, -- Ilya Kasnacheev пт, 21 февр. 2020 г. в 14:55, F.D. : > Hi igniters, > I'm using a client node in C++ to lanch several compute on a cluster, and > it's working quite well

Re: REST API requests hang with no response

2020-02-21 Thread Ilya Kasnacheev
r nodes and not itself. It is recommended that any node can discover itself and start a cluster as 1st node. Try adding [own ip address] Regards, -- Ilya Kasnacheev пт, 21 февр. 2020 г. в 14:52, Devin Anderson : > Hi Ilya, > > That certainly makes sense, but I'm not to

Re: ERROR: h2 Unsupported connection setting "MULTI_THREADED"

2020-02-21 Thread Ilya Kasnacheev
Hello! I've heard about issues with e.g. Spring Boot overriding h2 database version and breaking our runtime. I'm not sure who else does that. Regards, -- Ilya Kasnacheev чт, 20 февр. 2020 г. в 19:24, Andrew Munn : > Thanks. Adding

Re: REST API requests hang with no response

2020-02-21 Thread Ilya Kasnacheev
IgnitionEx.start(IgnitionEx.java:700) at org.apache.ignite.Ignition.start(Ignition.java:348) at org.apache.ignite.startup.cmdline.CommandLineStartup.main(CommandLineStartup.java:301) Until node is in topology, obviously it can't serve any requests. Regards, -- Ilya Kasnacheev пт, 21 февр. 2

Re: REST API requests hang with no response

2020-02-20 Thread Ilya Kasnacheev
Hello! Please collect thread dump (jstack) from affected node, share it with us. Regards, -- Ilya Kasnacheev чт, 20 февр. 2020 г. в 16:17, Devin Anderson : > Hi all, > > I'm seeing issues wherein the Apache Ignite REST API appears to accept > requests, but doesn't eve

Re: Loading cache from Oracle Table

2020-02-20 Thread Ilya Kasnacheev
Hello! 20 minutes for 40 mln entries seems in reasonable ballpark to me. What's the CPU usage on Ignite nodes at that time? Regards, -- Ilya Kasnacheev ср, 19 февр. 2020 г. в 19:43, Prasad Bhalerao : > Hi, > I am using partition aware loading to load big tables using 4-8 thread

Re: Issue with signed SSL CERT.

2020-02-20 Thread Ilya Kasnacheev
Hello! Can you please show me how it looks from your web browser? Please note that you will need a proper HTTPS certificate for correct domain for this to work. Regards, -- Ilya Kasnacheev чт, 20 февр. 2020 г. в 00:31, npopov : > Hi all. > Having issue with installing SSL certificat

Re: Ignite yarn resources keep on increasing

2020-02-20 Thread Ilya Kasnacheev
Hello! I still have trouble understanding where does your problem lie, in Ignite terms (as opposed to Yarn or ZooKeeper terms). Why did your negative scenario fail? What is the difference in procedure used? Regards, -- Ilya Kasnacheev чт, 20 февр. 2020 г. в 08:37, ChandanS : > Hi I

Re: Serialisation issue.

2020-02-20 Thread Ilya Kasnacheev
Hello! I, for one, do not recommend using new Collection() {{ }} in your configurations. It will create a non-static anonymous class, which may bind arbitrary amount of symbols from current lexical content, which will then need to be serialized to be sent to other nodes. Please use other ways

Re: Null Pointer Error in GridDhtPartitionsExchangeFuture

2020-02-20 Thread Ilya Kasnacheev
Hello! For example, you can do a SQL request with large result set, such as SELECT * without WHERE clause, which may cause server node to run out of memory. Regards, -- Ilya Kasnacheev чт, 20 февр. 2020 г. в 06:23, wentat : > Hi Ilya, > > Thank you for your response. I have checked

Re: Ignite yarn resources keep on increasing

2020-02-19 Thread Ilya Kasnacheev
Helo! I can see that clientMode is true, this means that it has to find some server nodes ot join. GridDiscoveryManager fails to start because you interrupt it. Ditto the Zk connection that you quote next. Regards, -- Ilya Kasnacheev ср, 19 февр. 2020 г. в 15:03, ChandanS : > Hi I

Re: Data Load from Oracle to Ignite is very slow

2020-02-19 Thread Ilya Kasnacheev
egment from its own thread, using shared data streamer instance. Regards, -- Ilya Kasnacheev вт, 18 февр. 2020 г. в 20:14, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Hi > > We are doing POC, as a result of which we are running it in local mode. > >

Re: Null Pointer Error in GridDhtPartitionsExchangeFuture

2020-02-19 Thread Ilya Kasnacheev
ce we are not using a lot of heap. I recommend collecting heap dumps, searching for leaks in your own code / use patterns. Regards, -- Ilya Kasnacheev ср, 19 февр. 2020 г. в 07:01, wentat : > Hi Ilya, > > Thank you for your reply. I have done this test a few times and I > consis

Re: visor mcompact command?

2020-02-19 Thread Ilya Kasnacheev
@n3 will be renamed to @n1. Also we may print changes in variables names or print all variables. Please note that I can't think of any reason to use m* commands from Visor CLI and very few reasons to use Visor CLI at all. Regards, -- Ilya Kasnacheev вт, 18 февр. 2020 г. в 23:33, Andrew

Re: Data Load from Oracle to Ignite is very slow

2020-02-18 Thread Ilya Kasnacheev
gards, -- Ilya Kasnacheev вт, 18 февр. 2020 г. в 17:53, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > I am having two nodes running on local machine. > > Following is the logic i implemented to load data using Data Steamer.Can > you > please check whether the

Re: Column name in lower case

2020-02-18 Thread Ilya Kasnacheev
| PUBLIC | *table* | TABLE | +++++ 0: jdbc:ignite:thin://localhost> Note the lower case (in bold). Can you show what you see on your s

Re: Column name in lower case

2020-02-18 Thread Ilya Kasnacheev
Hello! Have you tried using case-sensitive column names, such as CREATE TABLE "table" ("lowercaseid" INT PRIMARY KEY, "mixedCaseVal" VARCHAR); Maybe it will help with your use case. Regards, -- Ilya Kasnacheev вт, 18 февр. 2020 г. в 15:09, Igor Sapego : > T

Re: Data Load from Oracle to Ignite is very slow

2020-02-18 Thread Ilya Kasnacheev
threads, such as, "select * from table where id MOD ? = 0" parametrized with thread number; Regards, -- Ilya Kasnacheev вт, 18 февр. 2020 г. в 16:34, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Hi, > > I have multiple oracle tables with more than 1

Re: Load cache data into another POJO with SQL

2020-02-18 Thread Ilya Kasnacheev
s. It will only use with SqlFielsQuery but not with JDBC or other "thin" API. Please note that you will have to register this function with some schema in some cache confguration. Regards, -- Ilya Kasnacheev чт, 13 февр. 2020 г. в 22:32, Edward Chen : > Hello, > > I am usi

Re: Need help for Access Violation

2020-02-18 Thread Ilya Kasnacheev
Hello! Since it is Windows (build once, run everywhere no sh!t), maybe you can just share the compiled project with general public, or just the .exe? We could try running it, see if it fails. BTW, did you try to run it on a different box? Regards, -- Ilya Kasnacheev пт, 7 февр. 2020 г. в 00

Re: Ignite on yarn doesn't started

2020-02-18 Thread Ilya Kasnacheev
Hello! Can you please also file a ticket against Apache Ignite JIRA? https://issues.apache.org/jira/projects/IGNITE/issues I think it would not be a problem to merge it. Regards, -- Ilya Kasnacheev вт, 18 февр. 2020 г. в 11:04, v.shinkevich : > Hi, > > I found problem, but it i

Re: Null Pointer Error in GridDhtPartitionsExchangeFuture

2020-02-17 Thread Ilya Kasnacheev
to take a look at all logs from all nodes to understand why your grid was stalling. Regards, -- Ilya Kasnacheev чт, 13 февр. 2020 г. в 10:10, wentat : > Hi all, I am evaluating Ignite 2.7 failover scenarios. We are testing 3 > different scenarios: > 1. Swap rebalance - kill a node, the

Re: Ignite Logging and custom Log4j2 appender issue

2020-02-17 Thread Ilya Kasnacheev
Hello! Can you please prepare a reproducer project to demonstrate the issue? Somebody would surely check. Regards, -- Ilya Kasnacheev пт, 14 февр. 2020 г. в 22:00, Mitchell Rathbun (BLOOMBERG/ 731 LEX) < mrathb...@bloomberg.net>: > I have gotten this to work where the IGNITE ap

Re: socket streamer and SQL tables

2020-02-17 Thread Ilya Kasnacheev
Hello! Have you checked https://cwiki.apache.org/confluence/display/IGNITE/Streamers+Implementation+Guidelines Please note that writing your own streamers seems to be an advanced topic. Regards, -- Ilya Kasnacheev сб, 15 февр. 2020 г. в 04:19, narges saleh : > Hi All, > > How

Re: Issue with Ignite Logging and Log4j2

2020-02-17 Thread Ilya Kasnacheev
Hello! Do you actually have this IGNITE appender? Also, I think this config will lead to duplication of log lines instead of redirection. Better ask somewhere with log4j expertise. Regards, -- Ilya Kasnacheev пт, 14 февр. 2020 г. в 03:24, Mitchell Rathbun (BLOOMBERG/ 731 LEX) < mra

Re: Ignite yarn resources keep on increasing

2020-02-17 Thread Ilya Kasnacheev
Hello! It's hard to say what's going on. Maybe you forget to stop the node, but retry the same computation, and you have nodes piling up? Can you provide logs? Regards, -- Ilya Kasnacheev пт, 14 февр. 2020 г. в 22:29, ChandanS : > Hi Ilya, > > My submitted Ignite-yarn app

Re: Failed to send message

2020-02-17 Thread Ilya Kasnacheev
) ... 6 more Caused by: java.net.NoRouteToHostException: No route to host Why? Is this Docker address? If so, I recommend specifying "real" IP address as TcpCommunicationSpi.localAddress value. Regards, -- Ilya Kasnacheev пн, 17 февр. 2020 г. в 09:53, hulitao198758 : >

Re: Issue with BaselineTopology Branching History

2020-02-17 Thread Ilya Kasnacheev
Hello! I think this means you have started an empty cluster (node with no persistence) and then you join nodes with actual persistence and baseline to it. The correct way is to start nodes with persistence intact first, then add fresh nodes to their cluster. Regards, -- Ilya Kasnacheev вт

Re: REST API on top of ignite using node express

2020-02-14 Thread Ilya Kasnacheev
you using? Can you provide complete reproducer together with data? * To get field names in cursor, you first have to do query.setIncludeFieldNames(true). By default you are not getting them. Regards, -- Ilya Kasnacheev пн, 10 февр. 2020 г. в 22:59, nithin91 < nithinbharadwaj.govin

Re: Ignite Load Hangs at the end while using DataStreamer

2020-02-07 Thread Ilya Kasnacheev
ge to TcpCommunicationSpi: socketWriteTimeout 5000 usePairedConnections true connectionsPerNode 4. You may also like to assign localAddr to known good (reachable) IP address of the node, on each node. Regards, -- Ilya Kasnacheev пт, 7 февр. 2020 г. в 14:34, pg31 : > Thanks Ilya. > > I ha

Re: Getting lots of Accepted "incoming communication connection"

2020-02-06 Thread Ilya Kasnacheev
. Regards, -- Ilya Kasnacheev пт, 7 февр. 2020 г. в 00:32, John Smith : > Ok it happened for a few hours, 4 or so, and then it went back to normal. > Everything seems ok. But why for some many hours? > > On Thu., Feb. 6, 2020, 11:20 a.m. Ilya Kasnacheev, < > ilya.kasnach...@

Re: SqlQuery in CPP thin client

2020-02-06 Thread Ilya Kasnacheev
Hello! ODBC examples use JVM to run server node (which you obviously need), but ODBC driver does not have any Java dependency. Regards, -- Ilya Kasnacheev чт, 6 февр. 2020 г. в 19:48, Abhay Gupta : > Hi > > ODBC of ignite also used jvm as I saw in example and not thin client mod

Re: Ignite Load Hangs at the end while using DataStreamer

2020-02-06 Thread Ilya Kasnacheev
ty to 'true' for all your JVMs. I also think this is related to https://issues.apache.org/jira/browse/IGNITE-8343 which is regrettably not fixed. Regards, -- Ilya Kasnacheev чт, 6 февр. 2020 г. в 18:48, pg31 : > Hi > > I thought I was hitting: ( > https://issues.apache.or

Re: Ignite AtomicLong

2020-02-06 Thread Ilya Kasnacheev
Hello! Can you provide logs from all nodes in cluster? Regards, -- Ilya Kasnacheev чт, 6 февр. 2020 г. в 09:03, ashishb888 : > Yeah, it is hard to say anything on above. What else do you need? Will > provide you the information. > Just wanted to understand what happened her

Re: Getting lots of Accepted "incoming communication connection"

2020-02-06 Thread Ilya Kasnacheev
Hello! I suspect interference from different clusters, or too long timeouts on client preventing it from understanding that it's dropped from cluster already. Regards, -- Ilya Kasnacheev чт, 6 февр. 2020 г. в 00:44, John Smith : > Hi getting allot of these messages. It seems to b

Re: SqlQuery in CPP thin client

2020-02-06 Thread Ilya Kasnacheev
Hello! You should use ODBC to do SQL queries from C/C++ code when running Ignite node is not desired. Regards, -- Ilya Kasnacheev чт, 6 февр. 2020 г. в 16:16, Abhay : > Hi, > > I checked with Java JDBC and we have the option to run query and same is > true for dot net client as w

Re: Getting No space left on device exception when persistence is enabled

2020-02-05 Thread Ilya Kasnacheev
Hello! Are you sure it does not write to /tmp? Regards, -- Ilya Kasnacheev ср, 5 февр. 2020 г. в 10:15, Mikael : > Hi! > > Well, the message say no space left on device so you are sure the > persistence/WAL data is stored on the drive where you have 100GB free > space ? you

Re: Ignite AtomicLong

2020-02-05 Thread Ilya Kasnacheev
Hello! It's hard to say what happens here, AtomicLong definitely did not start your PESSIMISTIC, REPEATABLE_READ transaction. More information is needed to be able to understand what's going on here. Regards, -- Ilya Kasnacheev ср, 5 февр. 2020 г. в 08:58, ashishb888 : > Than

Re: Partition/Fault tolerance and availability of Apache Ignite

2020-02-04 Thread Ilya Kasnacheev
Hello! Can you please collect complete logs from all nodes, not just a screenful of logs? Regards, -- Ilya Kasnacheev вт, 4 февр. 2020 г. в 09:20, userx : > Fault_tolerance.zip > < > http://apache-ignite-users.70518.x6.nabble.com/file/t1165/Fault_tolerance.zip> > > >

Re: DataStreamer as a Service

2020-02-04 Thread Ilya Kasnacheev
Hello! Data Streamer can be used on server node all right, however, it is still a "client" operation, i.e., it will batch some data locally and only then send to server nodes, including itself. Regards, -- Ilya Kasnacheev вт, 4 февр. 2020 г. в 13:58, narges saleh : > Hi, >

Re: DataStreamer as a Service

2020-02-04 Thread Ilya Kasnacheev
Hello! In case of long-lived, low-intensity streaming, Data Streamer will not be able to utilize its client-side per-partition batching capabilities, instead being just a wrapper over cache update operations, which are available as part of Cache API. Regards, -- Ilya Kasnacheev вт, 4 февр

Re: DataStreamer as a Service

2020-02-03 Thread Ilya Kasnacheev
Hello! I think these benefits are imaginary. You will have to worry about service more, rather about data streamer which may be recreated at any time. Regards, -- Ilya Kasnacheev пн, 3 февр. 2020 г. в 16:58, narges saleh : > Thanks Ilya. > I have to listen to these burst of data

Re: JVM Crashing with SegFault on org.apache.ignite.internal.binary.BinaryFieldAccessor$DefaultFinalClassAccessor.write0

2020-02-03 Thread Ilya Kasnacheev
Hello! The only thing that stands off is that you have very deep object nesting, of level 12. Maybe it causes some very rare issue, I recommend trying to see if you will have this problem with flatter objects. This is a long shot, since we have not seen crashes like this one. Regards, -- Ilya

Re: Query execution is too long issue!

2020-02-03 Thread Ilya Kasnacheev
Hello! What happens if you do COUNT(*) instead? I think we have some specific optimizations for this case. Regards, -- Ilya Kasnacheev ср, 29 янв. 2020 г. в 12:28, rssah <77adity...@gmail.com>: > When querying via some java application and if the topology is in such a > wa

Re: Latest behaviour for write-behind cache on node crash

2020-02-03 Thread Ilya Kasnacheev
Hello! There is no failover for write-behind, it is lost if node is stopped abruptly. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 07:03, crypto_ricklee : > Dear all, > > I'm trying to get Ignite as a read-through/write-behind cache on top of > postgres. If I h

Re: exposing Ignite cluster health status in microservices

2020-02-03 Thread Ilya Kasnacheev
Hello! I think you can use either JMX beans or lifecycle listener. How to act on either one, depends on your use case. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 09:43, Kamlesh Joshi : > Hi Team, > > > > Is there any sophisticated way to check if Ignite cluster is U

Re: Ignite swap space

2020-02-03 Thread Ilya Kasnacheev
Hello! I recommend using native persistence in this case. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 09:07, ashishb888 : > Thank you Evgenii! > > I can understand that enabling swap may decrease the performance. > Keeping in that mind I wanted to see what actually h

Re: DataStreamer as a Service

2020-02-03 Thread Ilya Kasnacheev
erred to tune it than trying to use more than one streamer. Regards, -- Ilya Kasnacheev пн, 3 февр. 2020 г. в 16:11, narges saleh : > Hi Ilya > The data comes in huge batches of records (each burst can be up to 50-100 > MB, which I plan to spread across multiple streamers) so, the strea

Re: Ignite AtomicLong

2020-02-03 Thread Ilya Kasnacheev
Hello! It uses a cache under the hood. I don't think it will throw TransactionRollbackException since it operates on ATOMIC cache. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 10:37, ashishb888 : > How does AtomicLong work? > Does it throws TransactionRollbackExcept

Re: Failed to load bean in application context [beanName=dataSource] in ignite.Spring bean doesn't exist

2020-02-03 Thread Ilya Kasnacheev
Hello! You have to define your Oracle Data Source in XML files of all your instances (or at least all server nodes). There are other approaches, but this one is most straightforward. Regards, -- Ilya Kasnacheev вс, 2 февр. 2020 г. в 22:30, nithin91 < nithinbharadwaj.govin

Re: Table not found error while executing sql fields query API

2020-02-03 Thread Ilya Kasnacheev
Hello! Please show full configuration of your caches. It is possible that you have configured cache store but did not configure any indexing. Regards, -- Ilya Kasnacheev вс, 2 февр. 2020 г. в 22:48, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Hi , > >

Re: DataStreamer as a Service

2020-02-03 Thread Ilya Kasnacheev
r use Cache API. If you are worried that plain Cache API is slow, but also want failure resilience, there's catch-22. The only way to make something resilient is to put it into cache :) Regards, -- Ilya Kasnacheev пн, 3 февр. 2020 г. в 14:34, narges saleh : > Hi, > But services are by

Re: Exception when joining a data node

2020-02-03 Thread Ilya Kasnacheev
Hello! I think you should completely wipe persistence on "newly joining node" and re-join it. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 16:54, krkumar24061...@gmail.com < krkumar24061...@gmail.com>: > Sorry. I think I did not phrase the question properly. I stoppe

Re: Class loader

2020-02-03 Thread Ilya Kasnacheev
. Regards, -- Ilya Kasnacheev сб, 1 февр. 2020 г. в 14:49, Mikael : > Hi! > > Will the Ignite class loader find classes/jar files added to the lib > directory after it is started, or do all classes/jar files have to be > there at startup (running Ignite from ignite.sh) ? > >

Re: DataStreamer as a Service

2020-02-03 Thread Ilya Kasnacheev
Hello! It is not recommended to have long-lived data streamers, it's best to acquire it when it is needed. If you have to keep data streamer around, don't forget to flush() it. This way you don't have to worry about its queue. Regards, -- Ilya Kasnacheev пн, 3 февр. 2020 г.

Re: @SpringResource not injected

2020-02-03 Thread Ilya Kasnacheev
Hello! You have to specify Spring factory when starting Ignite node for injection to work. For that, you should start your node with IgniteSpring.start(cfg, ApplicationContext) methods. If that does not work, please provide a small reproducer project so that we could check. Regards, -- Ilya

Re: Partition/Fault tolerance and availability of Apache Ignite

2020-02-03 Thread Ilya Kasnacheev
Hello! Can you please show more logs/full stack trace? Data Streamer is not especially fault tolerant, but it should survive a server node leaving. How many backups do you have? What is partition loss policy? Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 11:02, userx : > Hi team, &g

Re: High CPU usage on sun.nio.ch.EPollArrayWrapper.epollWait when Node Failover

2020-01-31 Thread Ilya Kasnacheev
Hello! epollWait() is basically waiting on condition. It consumes no CPU - the thread is simply idle and yields to other processes. Please also node that not many expertise is left here for 1.x branch. Please consider upgrading. Regards, -- Ilya Kasnacheev ср, 29 янв. 2020 г. в 09:13, googy

Re: java.lang.NullPointerException while preloadEntry

2020-01-31 Thread Ilya Kasnacheev
Hello! I see nothing suspicious in the logs. I think it's just https://issues.apache.org/jira/browse/IGNITE-10242 Please try working around it or wait for 2.8 to be released. You can also try builds from 2.8 release branch. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 07:53,

Re: How to do wildcard search by key in ignite?

2020-01-31 Thread Ilya Kasnacheev
not distributed evenly between such partitions: some nodes will be virtually empty while other nodes will be quickly overwhelmed. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 10:28, Tunas : > Sorry, I have not provided full information or not able to understand your > answer as i am

Re: Web session httpSession issue.

2020-01-31 Thread Ilya Kasnacheev
Hello! Can you throw together a simple reproducer to this issue, put it on github? I would look. Regards, -- Ilya Kasnacheev пт, 31 янв. 2020 г. в 15:44, Rout, Biswajeet : > Hi, > > What I apparently noticed, my *JSESSION ID is changing* when my request > goes from spring control

Re: Ignite 2.7.6 : Discovery Threads reporting OOPS

2020-01-31 Thread Ilya Kasnacheev
Hello! This may be due to some rogue process connecting to Discovery port and writing unexpected input to it. Regards, -- Ilya Kasnacheev ср, 29 янв. 2020 г. в 05:47, Mahesh Renduchintala < mahesh.renduchint...@aline-consulting.com>: > Hi, > > We have Ignite data nodes r

Re: Cache.replace-K-V-V- performing slow

2020-01-31 Thread Ilya Kasnacheev
Hello! I'm not sure the benchmarking is relevant, since most of work happens on server nodes and you are not benchmarking their threads. Are you sure you're not doing more replace()s than necessary? Regards, -- Ilya Kasnacheev вт, 28 янв. 2020 г. в 15:27, tarunk : > Hi Al

Re: JVM crashed with SIGSEGV with stack trace to OptimizedObjectOutputStream.writeObject

2020-01-31 Thread Ilya Kasnacheev
Hello! I don't think I ever saw this issue happening with 2.7.0 users. Regards, -- Ilya Kasnacheev вт, 28 янв. 2020 г. в 15:10, tarunk : > Thanks Ilya, > > Sorry I missed to update on your response. We are using Ignite 2.7.0 with > openjdk 1.8 (RedHat distribution). Is t

Re: Error Connecting to Web Console

2020-01-31 Thread Ilya Kasnacheev
Hello! Maybe console.gridgain.com is closed by firewall? In this case you will have to deploy Web Console locally. Regards, -- Ilya Kasnacheev вт, 28 янв. 2020 г. в 13:50, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Hi , > > We are doing a P

Re: Server side cache configuration only

2020-01-31 Thread Ilya Kasnacheev
Hello! 2) Why? These classes will not be accessible by code running on Client. Regards, -- Ilya Kasnacheev пн, 27 янв. 2020 г. в 23:43, Sabar Banks : > Hello Ignite Community, > > My questions are: > > 1) Is it possible to only define cache configurations on the server side,

Re: Data Load to Ignite cache is very slow from Oracle Table

2020-01-27 Thread Ilya Kasnacheev
Hello! I can see that you only define data source locally. It needs to be defined on all server nodes participating in cache load. Please take a look at https://apacheignite-mix.readme.io/docs/examples Regards, -- Ilya Kasnacheev пн, 27 янв. 2020 г. в 17:45, nithin91

Re: How to terminate long running transactions in 2.4.0?

2020-01-27 Thread Ilya Kasnacheev
Hello! I think that killing originator nodes' of these transactions should eventually cause them to terminate, unless there's a hard VM-level deadlock. Regards, -- Ilya Kasnacheev сб, 25 янв. 2020 г. в 01:57, src : > Cluster details: 3 servers, 4 clients. > > Ignite versio

Re: created cache and tables are not showing on sqlline console as well as thin client doesn't returning result on querying on tables

2020-01-24 Thread Ilya Kasnacheev
gards, -- Ilya Kasnacheev пт, 24 янв. 2020 г. в 18:12, siva : > Hi, > I have .Net Core Thick Client and Server Ignite Application . > > Not working in System configuration > > window 10 > Jdk and JRE Home Environment 1.8.0_221 > IGNI

Re: Kafastreamer slow performance

2020-01-24 Thread Ilya Kasnacheev
Hello! Unfortunately, too few information to be able to answer something. Have you tried profiling? Where is the bottleneck? Please ignite fut.get() :) Regards, -- Ilya Kasnacheev пт, 24 янв. 2020 г. в 15:42, v-shaal : > I am working with kafka streamer , and the write speed is too low,

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-23 Thread Ilya Kasnacheev
sibly only use it for data structures, maybe other persistent needs. Then, you should also declare a non-persistent region and use it for non-persistent caches. This may be less convenient for you, but this seems to be the only way currently. Regards, -- Ilya Kasnacheev чт, 23 янв. 2020 г. в

Re: Custom IgniteConfiguration does not work

2020-01-23 Thread Ilya Kasnacheev
Hello! I don't think you are supposed to inherit from IgniteConfiguration. Why would you want to? If you want to pass some data around, you can try using e.g. IgniteConfiguration.setUserAttributes. Regards, -- Ilya Kasnacheev ср, 22 янв. 2020 г. в 22:30, Hemambara : > I am trying t

Re: Get Added CacheConfiguration template from .Net Client Ignite Node

2020-01-23 Thread Ilya Kasnacheev
Hello! I don't think Ignite actually supports key/value inheritance, it may not work as you assume it does. Other than that, can you produce a small reproducer project, upload it somewhere? Regards, -- Ilya Kasnacheev чт, 23 янв. 2020 г. в 08:13, siva : > Hi, > Actually

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-22 Thread Ilya Kasnacheev
te 2.3 has some known and unfixed persistence data loss issues. Regards, -- Ilya Kasnacheev ср, 22 янв. 2020 г. в 18:25, j_recuerda : > Hi, > > I uploaded the code I am using to this repo. Github:IgnitePlayground > <https://github.com/jrecuerda/IgnitePlayground> > > It

Re: Affinity key & data rebalancing

2020-01-22 Thread Ilya Kasnacheev
Hello! If you run out of data region, you will get IgniteOutOfMemoryException with probable data loss. You should make sure to not run out of data region. Regards, -- Ilya Kasnacheev ср, 22 янв. 2020 г. в 15:20, ashishb888 : > We have defined an affinity key e.g. someId for a cache. T

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-22 Thread Ilya Kasnacheev
Hello! Can you please share your test code for speed? I will check what happens there, but am afraid to miss some detail. Regards, -- Ilya Kasnacheev ср, 22 янв. 2020 г. в 10:56, j_recuerda : > Hi Ilya, > > I perform a single test: > - I run 3 nodes > - Create an AtomicSe

Re: Client Vs Server Configuration

2020-01-22 Thread Ilya Kasnacheev
Hello! I don't see why you can't use Data Streamer here. With allowOverwrite=false you don't even need 'get' checks. CacheLoader is pulling data from underlying database, not sure it is the right choice for push-style data loading. Regards, -- Ilya Kasnacheev вт

Re: Get Added CacheConfiguration template from .Net Client Ignite Node

2020-01-22 Thread Ilya Kasnacheev
Hello! Why would you have your cache parametrized with CacheStore as value type?? Regards, -- Ilya Kasnacheev ср, 22 янв. 2020 г. в 13:02, siva : > Hi, > I have .Net Core Application using Ignite V2.7.6. > > 1.#ICache.GetConfiguration() > unable to find,there is method that

Re: Query performance varying with LIMIT keyword

2020-01-21 Thread Ilya Kasnacheev
adding index for this use case. Regards, -- Ilya Kasnacheev вт, 21 янв. 2020 г. в 19:17, nunob : > Hello, > > Thanks for responding. > > Well, it takes 50ms to fetch the first line. > > What I don't get is why it takes 8 seconds to fetch the 50th line. > > In both

Re: Could not create .NET CacheStore

2020-01-21 Thread Ilya Kasnacheev
e they can access this cache. We are planning to change that in future releases, so that Cache Store is only started if it is needed. Also, cache configuration will be discarded if cache exists in cluster, this means, only the original cache settings will be used. Regards, -- Ilya Kasnacheev

Re: Effective Monitoring of Rebalancing

2020-01-21 Thread Ilya Kasnacheev
Hello! I believe you can invoke VisorNodeDataCollectorJob and its friends via REST's execute command, and it has rebalance status. It's used in Visor CLI as well as GridGain's Web Console. Regards, -- Ilya Kasnacheev пт, 17 янв. 2020 г. в 11:32, John Gardner : > I've

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-21 Thread Ilya Kasnacheev
m actually not sure that data structures support persistence properly, but underlying caches should be persistent. Regards, -- Ilya Kasnacheev вт, 21 янв. 2020 г. в 10:29, j_recuerda : > Hello, > > Thanks a lot, Ilya. According to this snippet, It should work when a > DefaultDataRe

Re: Client Vs Server Configuration

2020-01-21 Thread Ilya Kasnacheev
Hello! I think that CacheLoader will be executed on server nodes. If you need data loading to happen on client node, better use Data Streamer. Otherwise, sounds OK, location of cache configurations is not important once caches are started. Regards, -- Ilya Kasnacheev вт, 21 янв. 2020 г. в 02

Re: Query performance varying with LIMIT keyword

2020-01-21 Thread Ilya Kasnacheev
Hello! This would suggest that fetching a single row takes around 100 ms, in a slightly superlinear fashion. Why is it a problem? What indexes do you have? Can you provide EXPLAIN plans? Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 22:23, nunob : > Also if I fix the LIMIT and vary

Re: What is best approach, for kafkaStreamer/ dataStreamer to check if key exists and update

2020-01-21 Thread Ilya Kasnacheev
Hello! You can supply StreamReceiver to DataStreamer which will be used for resolving upsert conflicts. However, I have no idea about KafkaStreamer. Regards, -- Ilya Kasnacheev вт, 21 янв. 2020 г. в 12:14, v-shaal : > Hi > > I have a kafka streamer to load data into a cache. whil

Re: java.lang.NullPointerException while preloadEntry

2020-01-21 Thread Ilya Kasnacheev
Hello! I don't see why you can't upload large logs on e.g. Google Drive. I'm not sure about the last 500 lines because the root cause can be decoupled in time with the manifestation of problem. Regards, -- Ilya Kasnacheev вт, 21 янв. 2020 г. в 14:55, userx : > hi Ilya

Re: CacheKeyConfiguration

2020-01-21 Thread Ilya Kasnacheev
), but NOT with tables using affinity keys (city_id), (country_id) or (country_id, city_id). You will have to think around this limitation by choosing the most important criteria to collocate data on, and doing the rest via lookup tables or distributed joins. Regards, -- Ilya Kasnacheev пн, 20 янв

Re: JVM crashed with SIGSEGV with stack trace to OptimizedObjectOutputStream.writeObject

2020-01-21 Thread Ilya Kasnacheev
ch as client vs. server? Have you considered upgrading to Java 11? Regards, -- Ilya Kasnacheev вт, 21 янв. 2020 г. в 08:54, tarunk : > Thanks Ilya, > > The node is not same always where it comes, and it keep changing. > > We got all nodes hardware/OS checked by respective te

Re: Native Persistence & JDBC

2020-01-21 Thread Ilya Kasnacheev
Hello! Can you please provide complete error message, with stack traces if present? Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 21:03, narges saleh : > Hello Ilya > > I do have the PERSON2 cache. Here is the snippet for the cache > configuration. I don't have an

Re: manage the ignite nodes like start,stop,restart

2020-01-21 Thread Ilya Kasnacheev
, are these stand-alone nodes, or do they run inside an existing Java application? Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 06:14, Daniel Yu : > Hi : > I dont want to manage the ignite nodes by the kill -9 command, its Very > violent . > > we want to manage t

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-20 Thread Ilya Kasnacheev
Hello again! I guess that maybe you have to specify a default data region configuration here, and not just rely on default configuration for default data region. I also think this is a bug :) Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 20:16, Ilya Kasnacheev : > Hello! > >

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-20 Thread Ilya Kasnacheev
null) return false; for (DataRegionConfiguration regCfg : regCfgs) { if (regCfg.isPersistenceEnabled()) return true; } return false; } Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 19:54, j_recuerda : > Hi, Ilya, > > I am afraid I have tested it

Re: java.lang.NullPointerException while preloadEntry

2020-01-20 Thread Ilya Kasnacheev
Hello! Can you provide logs from all server nodes? I think there's something in them, besides this error. Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 20:03, userx : > Hi, > > Topology version is 67. Ignite version is 2.7.6. > > I went through the thread mentioned by

Re: Native Persistence & JDBC

2020-01-20 Thread Ilya Kasnacheev
Hello! Maybe you don't have PERSON2 cache? :) Regards, -- Ilya Kasnacheev пн, 20 янв. 2020 г. в 02:47, narges saleh : > Hi All > > I am using JDBC connection for inserting data into caches specified in my > config file (via query entities). If I don't enable native per

Re: CacheKeyConfiguration

2020-01-20 Thread Ilya Kasnacheev
Hello! I don't think we support multiple affinity fields yet. You will need to create a synthetic field, which you will keep populated with all affinity columns' values, and declare it as affinity field. Regards, -- Ilya Kasnacheev сб, 18 янв. 2020 г. в 15:28, narges saleh : >

Re: Use custom Data Region or custom Cache for IgniteAtomicReference - Ignite 2.3

2020-01-20 Thread Ilya Kasnacheev
Hello! I think that system region is persistent if *any* of the regions is persistent, not just the default one. Regards, -- Ilya Kasnacheev пт, 17 янв. 2020 г. в 21:52, Mikael : > Hi! > > If you set the default region persistent all services will be persistent > also, I guess t

<    4   5   6   7   8   9   10   11   12   13   >