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

2020-02-20 Thread Preeti Nidgunde
I have written IGFS java application. I want to write shared file such that if I write file from one node then it is accessible to all other node in cluster. How to do that ?? I referred stack overflow and configured discovery spi to shared file system but then also it is not working. The program

Re: Connection reset by peer

2020-02-20 Thread hulitao198758
Detailed error message: Established outgoing communication connection [locAddr=/10.122.64.129:40870, rmtAddr=/10.122.64.128:48339] [01:01:59,775][SEVERE][grid-nio-worker-tcp-comm-1-#48%SubScriptionCluster%][TcpCommunicationSpi] Failed to process selector key [ses=GridSelectorNioSessionImpl [worker

Re: Null Pointer Error in GridDhtPartitionsExchangeFuture

2020-02-20 Thread wentat
Hi Ilya, at the time of running the experiments in the logs, there was no queries running in the background. Just 30 servers and no clients. What could have caused such high heap usage? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Connection reset by peer

2020-02-20 Thread hulitao198758
^-- System thread pool [active=0, idle=6, qSize=0] [16:57:36,455][SEVERE][grid-nio-worker-tcp-comm-3-#50%SubScriptionCluster%][TcpCommunicationSpi] Failed to process selector key [ses=GridSelectorNioSessionImpl [worker=DirectNioClientWorker [super=AbstractNioClientWorker [idx=3, bytesRcvd=48784

Re: REST API requests hang with no response

2020-02-20 Thread Devin Anderson
Hi Ilya, I'm attaching the `jstack` dump to this message.  When I took the dump, there were ten requests that had been made to the Apache Ignite REST API using POST data of the form:     cmd=add&key=[key]&value=[value] ... where [key] and [value] were proper URI encoded data. Thanks in adva

Re: How to configure primary data in memory and backup data on disk?

2020-02-20 Thread Mikhail
You can not do this, Apache Ignite even can use the same memory page to store primary records and backup records, however, don't worry, Ignite will keep in memory the most recently used memory pages: https://cwiki.apache.org/confluence/display/IGNITE/Ignite+Durable+Memory+-+under+the+hood#IgniteDur

Re: Data Load from Oracle to Ignite is very slow

2020-02-20 Thread nithin91
Hi When i executed on the server , Data is getting loaded very fast.Thanks for the inputs. With respect to Data Steamer, it would be really helpful if you can share any sample code other than the one provided in documentation. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Getting error while extracting Date Fields from ignite cache using node express

2020-02-20 Thread nithin91
Hi, We have an Oracle Table for which a corresponding cache/table is created in ignite and loaded using Cache JDBC POJO Store. On top of this cache a Rest API is built using node express. We are fetching the data from the cache using sql fields query and the programming language used is node js.

Re: tailing Ignite cache for events?

2020-02-20 Thread Evgenii Zhuravlev
No, it's not possible to do in Visor. You can use a client node to start this Continuous Query. For this purpose you can also register listeners for events: https://apacheignite.readme.io/docs/events. It can be done for one of the Lifecycle events. Evgenii ср, 19 февр. 2020 г. в 17:40, Andrew Mun

Re: Offheap memory consumption + enabled persistence

2020-02-20 Thread ezhuravlev
>But I am still confused. Did I understood properly that each node should have enough memory to store full data set? No, it's not the case. It's just preallocating this memory with internal structures and shows it in the metrics. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

How to configure primary data in memory and backup data on disk?

2020-02-20 Thread joseheitor
How do I configure Primary data in RAM and backup copies to disk? The goal is to store backup copies on disk, leaving max RAM available for primary partitions only. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: ERROR: h2 Unsupported connection setting "MULTI_THREADED"

2020-02-20 Thread Andrew Munn
Thanks. Adding this runtime dependency to build.gradle fixed it: dependencies { runtime("com.h2database:h2:1.4.197") ... compile group: 'org.apache.ignite', name: 'ignite-spring', version: '2.7.6' compile group: 'org.apache.ignite', name: 'ignite-core', version: '2.7.6' } But I s

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 ever reply. This doesn't al

REST API requests hang with no response

2020-02-20 Thread Devin Anderson
Hi all, I'm seeing issues wherein the Apache Ignite REST API appears to accept requests, but doesn't ever reply.  This doesn't always happen; for example, if I make a request that I expect the API to reject, I get back a response: -- # curl -v -X GET 'http://127.0.0.1:8080/ignite' *

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 threads on > each nod

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 certificate with Jet

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 Ilya, > > Y

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 my client

Re: ERROR: h2 Unsupported connection setting "MULTI_THREADED"

2020-02-20 Thread Taras Ledkov
Hi, Ignite uses H2 version 1.4.197 (see [1]). [1]. https://github.com/apache/ignite/blob/master/parent/pom.xml#L74 On 20.02.2020 4:36, Andrew Munn wrote: I'm building/running my client app w/Gradle and I'm seeing this error.  Am I overloading the Ingite H2 fork with the real H2 or something?