Re: [DISCUSSION] IgniteFuture class future in Ignite-3.0.

2021-04-02 Thread Ivan Pavlukhin
Andrey, As you might know Java has it is own Reactive abstractions since 9 [1]. Moreover, an original Reactive Streams library has a bridge with Java [2]. Personally I do not love CompletableFuture because it's API seems questionable to me in various aspects, e.g. mentioned cancellation.

Re: [DISCUSS] Release performance-statistics-ext, spring-data-ext and spring-tx-ext Ignite extensions

2021-04-02 Thread Denis Magda
Is this the first time we're releasing spring data 2.2 as an ext? Can't find any version available for 2.10? What should I use if I need Spring Data integration now for Ignite 2.10? https://mvnrepository.com/artifact/org.apache.ignite/ignite-spring-data_2.2 - Denis On Fri, Mar 26, 2021 at 12:55

Re: [DISCUSSION] Java thin client: Continuous Queries public API

2021-04-02 Thread Pavel Tupitsyn
Alex, 1. Agree to deal with CacheEntryEvent as explained 2. ClientChannelDisconnectListener - can we have an overload with a parameter of this type? ClientCache#query(ContinuousQuery) - compatible with Thick API ClientCache#query(ContinuousQuery, ClientChannelDisconnectListener) - specific to

[jira] [Created] (IGNITE-14472) Performance drop on primitive operations.

2021-04-02 Thread Ivan Daschinskiy (Jira)
Ivan Daschinskiy created IGNITE-14472: - Summary: Performance drop on primitive operations. Key: IGNITE-14472 URL: https://issues.apache.org/jira/browse/IGNITE-14472 Project: Ignite Issue

[jira] [Created] (IGNITE-14471) JDBCv2: query cursors leak when node to execute queries is specified

2021-04-02 Thread Taras Ledkov (Jira)
Taras Ledkov created IGNITE-14471: - Summary: JDBCv2: query cursors leak when node to execute queries is specified Key: IGNITE-14471 URL: https://issues.apache.org/jira/browse/IGNITE-14471 Project:

[jira] [Created] (IGNITE-14470) Thin client application service

2021-04-02 Thread Anton Vinogradov (Jira)
Anton Vinogradov created IGNITE-14470: - Summary: Thin client application service Key: IGNITE-14470 URL: https://issues.apache.org/jira/browse/IGNITE-14470 Project: Ignite Issue Type:

Re: Azure Cloud IP Finder

2021-04-02 Thread Atri Sharma
Hello, Thank you for sharing. I was finally able to replicate the issue. However, I tried with other IPFinders and ran into the same problem (attached are the logs). Not sure what is causing this? Atri On Fri, Apr 2, 2021 at 2:29 PM Ilya Kasnacheev wrote: > > Hello! > > Please find attached

[jira] [Created] (IGNITE-14469) Adding a list of caches that will not be forced to rebuild indexes to the control.sh --cache indexes_force_rebuild

2021-04-02 Thread Kirill Tkalenko (Jira)
Kirill Tkalenko created IGNITE-14469: Summary: Adding a list of caches that will not be forced to rebuild indexes to the control.sh --cache indexes_force_rebuild Key: IGNITE-14469 URL:

[jira] [Created] (IGNITE-14468) Adding a list of caches that will not be forced to rebuild indexes to the control.sh --cache indexes_force_rebuild

2021-04-02 Thread Kirill Tkalenko (Jira)
Kirill Tkalenko created IGNITE-14468: Summary: Adding a list of caches that will not be forced to rebuild indexes to the control.sh --cache indexes_force_rebuild Key: IGNITE-14468 URL:

[jira] [Created] (IGNITE-14467) Ignite Compute service.

2021-04-02 Thread Andrey Mashenkov (Jira)
Andrey Mashenkov created IGNITE-14467: - Summary: Ignite Compute service. Key: IGNITE-14467 URL: https://issues.apache.org/jira/browse/IGNITE-14467 Project: Ignite Issue Type: New Feature

[jira] [Created] (IGNITE-14466) Changing cache configuration once cache is created confuses PME on node join

2021-04-02 Thread Ilya Kasnacheev (Jira)
Ilya Kasnacheev created IGNITE-14466: Summary: Changing cache configuration once cache is created confuses PME on node join Key: IGNITE-14466 URL: https://issues.apache.org/jira/browse/IGNITE-14466

Re: [DISCUSSION] Java thin client: Continuous Queries public API

2021-04-02 Thread Alex Plehanov
Hello, Atri 1. ClientChannelDisconnectListener is thin client specific. 2. Thick client API uses JCache interfaces, which cannot be modified. 2. We can't modify thick client public API either, due to backward compatibility. пт, 2 апр. 2021 г. в 11:51, Atri Sharma : > Personally, I would

Re: [DISCUSSION] IgniteFuture class future in Ignite-3.0.

2021-04-02 Thread Andrey Mashenkov
Ivan, thanks for the link. I think, now I've got what you mean. I don't think we want to have any framework as a dependency and rely on their lifecycle, roadmaps goals and bother about compatibility. JDK classes are well-known and reactive frameworks usually have converters to/from

Re: Azure Cloud IP Finder

2021-04-02 Thread Ilya Kasnacheev
Hello! Please find attached the log file of errors. This is yesterday's (Apr 1) build. Regards, -- Ilya Kasnacheev пт, 2 апр. 2021 г. в 11:52, Atri Sharma : > I was able to, but then, it might be that something is cached locally. > > What errors did you run into? (I am assuming you are

Re: Azure Cloud IP Finder

2021-04-02 Thread Atri Sharma
I was able to, but then, it might be that something is cached locally. What errors did you run into? (I am assuming you are trying with a build from the latest iteration of the PR). Atri On Fri, Apr 2, 2021 at 2:19 PM Ilya Kasnacheev wrote: > > Hello! > > But are you successful in running a

Re: [DISCUSSION] Java thin client: Continuous Queries public API

2021-04-02 Thread Atri Sharma
Personally, I would disagree with an interface implementation being dictated by the documentation rather than the method signature. How about having a generic interface (placeholder interface), have both the thick and thin clients expose methods using the interface as parameters, then let

Re: Azure Cloud IP Finder

2021-04-02 Thread Ilya Kasnacheev
Hello! But are you successful in running a node with Azure IP finder enabled in configuration, starting from that release directory? I amn't. Regards, -- Ilya Kasnacheev пт, 2 апр. 2021 г. в 07:42, Atri Sharma : > Hello, > > Thank you for taking a look. > > I am not sure what the confusion

[DISCUSSION] Java thin client: Continuous Queries public API

2021-04-02 Thread Alex Plehanov
Hello, Igniters! I'd like to discuss java thin client Continuous Queries public API. Currently, the thin client is not JCache compatible and without JCache compatible cache instance we can't use classes and API which already used by the thick client for cache entry events listening. In my first