Re: Deploying Ignite Code

2020-05-25 Thread Ilya Kasnacheev
Hello! It is usually enough to include just the POJO files and their direct dependencies. Regards, -- Ilya Kasnacheev вс, 24 мая 2020 г. в 22:11, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Can anyone please help me with your inputs > > > > -- > Sent from:

Re: join question

2020-05-25 Thread Ilya Kasnacheev
Hello! Can you please share a runnable reproducer project exposing this issue? Regards, -- Ilya Kasnacheev пт, 22 мая 2020 г. в 19:54, narges saleh : > Sorry for the late reply. > I have defined the affinity via cacheKeyConfiguration in ignite config > file and it is working fine, if I use

RE: Unable to deploy Ignite Web Console in local

2020-05-25 Thread BEELA GAYATRI
Hi Evgenii, Issue has been resolved ..Thank you for your suggetions Sent from Mail for Windows 10 From: Evgenii Zhuravlev Sent: Thursday, May 21, 2020 7:12:11 PM To: user Subject: Re: Unable to deploy Ignite

Re: Ignite SystemViews with java thin client

2020-05-25 Thread Alex Plehanov
Hello, You can't get server-side JMX metrics by thin client, but you can query views by SQL. Here [1] is an example of querying system views using thin client (currently system schema was renamed, so you should use setSchema("SYS") instead of setSchema("IGNITE")) The full list of system views

Ignite SystemViews with java thin client

2020-05-25 Thread kay
Hello, I have 4 remote nodes and I use java thin client for put/get data. I should get Node, Data Region, Cache information(Name, Size, Cache Mode Data Eviction Mode and so on..) cause have to make Ignite admin pages. I figured out JMX beans and System Views. But I don't know how to use

Re: Scheduling Cache Refresh

2020-05-25 Thread Ilya Kasnacheev
Hello! You will need to write your own code for that and expose it via compute tasks or service. Then you can invoke these via REST. Regards, -- Ilya Kasnacheev вт, 19 мая 2020 г. в 20:52, nithin91 < nithinbharadwaj.govindar...@franklintempleton.com>: > Hi > > Thanks For the inputs. > > To

How to close/cancel a running tasks?

2020-05-25 Thread marble.zh...@coinflex.com
Hi Experts, Say I have a while (true) task, which help monitoring/handling the MQ messages. Once I need change the logic, how I redeploy the task? how I cancel this task and let the cluster using the new logic jar? Do I need restart all cluster nodes? But my cluster nodes have other tasks

Ignite cluster node count restriction

2020-05-25 Thread debdatta.bhattacharjee
Hello Team, We have been using Apache Ignite 2.4.0 currently in one of our customer's production environment, which performs fine as expected. However, due to the business needs, we want to expand the cluster size by adding more nodes, and the probable node count would be around 45 in the

Re: Near Cache Support For Thin Clients

2020-05-25 Thread Pavel Tupitsyn
Marty, Continuous queries are certainly planned for thin clients, and that is the best way to get cache update notifications. On Fri, May 22, 2020 at 8:32 PM Marty Jones wrote: > Has there been a request for event listeners for the thin clients? I am > happy to roll my own implementation of

Re: Scheduling Cache Refresh

2020-05-25 Thread nithin91
Thanks for the inputs.It is really helpful. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: [DISCUSS] Apache Ignite mascot

2020-05-25 Thread Saikat Maitra
Thank you Denis, that would be great. Regards, Saikat On Thu, May 21, 2020 at 11:02 AM Denis Magda wrote: > Folks, thanks for sharing ideas. > > Let me find a designer who can turn the ideas into pictures. Then we can > compare and adjust. > > - > Denis > > > On Sun, May 17, 2020 at 5:50 AM

Re: Deploying Ignite Code

2020-05-25 Thread nithin91
Thanks for the inputs.It is really helpful. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Near Cache Support For Thin Clients

2020-05-25 Thread Igor Sapego
I personally think that this feature should be implemented in Ignite, though maybe we should first start from Continuous Queries for thin clients. Best Regards, Igor On Mon, May 25, 2020 at 6:15 PM Pavel Tupitsyn wrote: > Marty, > > Continuous queries are certainly planned for thin clients, >

Re: Ignite SystemViews with java thin client

2020-05-25 Thread kay
Thank you so much, I'll see -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

ClientCacheConfiguration with java thin client

2020-05-25 Thread kay
Hello, I got ClientCacheConfiguration in my application with java thin client like ClientCache cache = igniteClient.cache("CACHE_NAME"); ClientCacheConfiguration test = cache.getConfiguration(); There is ExpiryPolicy in 'CACHE_NAME'. but I got null for test.getExpiryPolicy() I found