Re: I want to contribute

2025-04-10 Thread Alex Plehanov
Hello, Didar! I've added you to the "contributors" role. Now you can assign tickets to yourself. чт, 10 апр. 2025 г. в 22:39, Didar Shayarov : > > Hello Ignite! > > Finally, I’ve got ASF JIRA account with username ‘superdidar’ > > Please, help me to start contributing with this email and username

Re: sql in clause conversion from H2 to Calcite

2025-03-31 Thread Alex Plehanov
Hello, Calcite engine in Ignite 2.16 can't expand the array parameter to table. It can be done with the UNNEST operator, but it's planned for 2.18 Ignite release. пн, 17 мар. 2025 г. в 15:49, MJ <6733...@qq.com>: > Ignite 2.16 > > Thanks, > MJ > > Original > -- > From

Re: [VOTE] Release Apache Ignite 2.17.0 RC2

2025-02-10 Thread Alex Plehanov
+1 Built from sources. Checked several queries on the Calcite-based SQL engine. вс, 9 февр. 2025 г. в 21:05, Nikita Amelchev : > > Dear Community, > > The release candidate is ready. > > I have uploaded release candidate to > https://dist.apache.org/repos/dist/dev/ignite/2.17.0-rc2 > https://dist

Re: [VOTE] Release Apache Ignite 2.17.0 RC1

2025-02-07 Thread Alex Plehanov
+1 Built from sources. Checked several queries on the Calcite-based SQL engine. Found that one more dependency is missing in ignite-calcite module: commons-lang3. It affects 5 built-in functions: EXTRACTVALUE, EXTRACT, XMLTRANSFORM, COMPRESS, TRANSLATE. The same problem was in previous releases an

Re: I want to contribute to Apache ignite

2024-11-27 Thread Alex Plehanov
Hello, Ravil I've added you to the contributors list. Now you can assign tickets to yourself. ср, 27 нояб. 2024 г. в 19:47, Равиль Закиров : > > Hello, Everyone! > My name is Ravil Zakirov. I want to contribute to Ignite. I would like to > start from IGNITE-23794. Please, help me to start contri

Re: How to use ClusterNodeAttributeAffinityBackupFilter to have atleast one replica in second zone

2024-09-19 Thread Alex Plehanov
Hello Amit, You can use ClusterNodeAttributeAffinityBackupFilter and introduce some virtual zones. For example, if you have 5 nodes in zone 1 and 5 nodes in zone 2, you can assign 'zone1' attribute value to 3 nodes from zone 1, assign 'zone2' attribute value to 3 nodes from zone 2, and assign 'zon

Re: Ignite H2 to Calcite issues

2024-08-16 Thread Alex Plehanov
Amit, Can you please show the output of "EXPLAIN PLAN FOR "? I've found the bug in index scan on binary object field (ticket [1]), but I can't reproduce it with select without "order by", or without forcing index scan. [1]: https://issues.apache.org/jira/browse/IGNITE-23004 ср, 14 авг. 2024 г. в

Re: Ignite H2 to Calcite issues

2024-08-13 Thread Alex Plehanov
Hello, Please provide the query you are using. Such a stack can't be caused by just "select * from table" (at least sorting is used). Perhaps you are using "ORDER BY" for fields which can't be compared in SQL (complex _key or _val for example). вт, 13 авг. 2024 г. в 17:17, Amit Jolly : > > Hi, >

Re: [VOTE] Move Ignite 2.x sources to JDK11

2024-07-16 Thread Alex Plehanov
+1 вт, 16 июл. 2024 г. в 14:14, Вячеслав Коптилин : > > +1 > > Thanks, > S. > > вт, 16 июл. 2024 г. в 09:46, Maksim Timonin : > > > Hi Igniters, > > > > I'd like to start a voting process about moving Ignite 2.x sources to > > JDK11. Discussion of the proposal is here [1]. > > > > The plan is as f

Ignite Extensions compilation on jdk < 17

2024-07-11 Thread Alex Plehanov
Andrey Novikov, Nusrat Shakarov, Guys, we are still supporting java 8, this means that the project should be compiled without errors on jdk 8 and jdk 11 (not only on jdk 17). You've already broken the compilation for jdk 8/jdk 11 twice during the same activity ([1], [2]). I've mentioned you in ti

Re: Ignite Cluster with Thin Java Clients give same node id

2024-07-06 Thread Alex Plehanov
Hello, 1. Client sends requests to random known server node for load balancing. 2. Client uses the provided address as entry point and gets information about other nodes from the server. If you don't need such functionality, you can set property ClientConfiguration.ClusterDiscoveryEnabled to false

Re: [DISCUSSION] IEP-122 Thin client invoke/invokeAll cache operations

2024-05-07 Thread Alex Plehanov
else (e.g. Compute). > > Full stack trace should be present in the server logs, or sent back to the > > client when sendServerExceptionStackTraceToClient is enabled, so we have > > all the means to find the root cause, right? > > > > On Tue, May 7, 2024 at 9:32 PM Al

Re: [DISCUSSION] IEP-122 Thin client invoke/invokeAll cache operations

2024-05-07 Thread Alex Plehanov
general > client/server exceptions. > > I don't think we do this anywhere else (e.g. Compute). > Full stack trace should be present in the server logs, or sent back to the > client when sendServerExceptionStackTraceToClient is enabled, so we have > all the means to find the

[DISCUSSION] IEP-122 Thin client invoke/invokeAll cache operations

2024-05-07 Thread Alex Plehanov
Hi Igniters! I've prepared a proposal about implementation of invoke/invokeAll cache operations for thin clients. All proposed changes to the protocol and client API (currently for java thin client only) are described in IEP-122 [1] Please have a look and share your thoughts. [1] https://cwiki.

Re: Identifying Coordinator node

2024-02-01 Thread Alex Plehanov
Hello, 1. Coordinator is the oldest server node. So you can use something like: ignite.cluster().forServers().forOldest().node() 2. Why can't you upgrade to the new Ignite version? Perhaps this problem is already fixed. But if not, you can provide details for the actual Ignite version and this wil

Re: [VOTE] Release Apache Ignite ML Extension 1.0.0 RC1

2024-01-26 Thread Alex Plehanov
+1 Checked sha512, signature. Built from sources. Checked examples. чт, 25 янв. 2024 г. в 20:56, Nikita Amelchev : > > +1 (binding) > > Checked compilation, tests and some examples. > > вт, 23 янв. 2024 г. в 16:57, Ivan Daschinsky : > > > > Sorry for my mistake, this vote will be open till Jan 2

Re: [PROPOSAL] Change approach to store checkpoint recovery data

2023-12-07 Thread Alex Plehanov
lude this feature as experimental and disabled by default for at least one release. [1]: https://cwiki.apache.org/confluence/display/IGNITE/IEP-113+Change+approach+to+store+checkpoint+recovery+data чт, 9 нояб. 2023 г. в 20:05, Anton Vinogradov : > > Alex, agree to the proposal. > > On Thu, Nov

Re: [PROPOSAL] Change approach to store checkpoint recovery data

2023-11-09 Thread Alex Plehanov
t; And, then implement an async physical logging as an alternative solution? > > On Thu, Nov 9, 2023 at 12:52 PM Alex Plehanov > wrote: > > > Anton, > > > > My concern is not only about compatibility. The new recovery data > > storing approach is not a silve

Re: [PROPOSAL] Change approach to store checkpoint recovery data

2023-11-09 Thread Alex Plehanov
oving the code complexity. > > On Thu, Nov 2, 2023 at 4:55 PM Alex Plehanov > wrote: > > > Hello, Igniters! > > > > I'd like to discuss the way of storing checkpoint recovery data. > > Now, we are writing extra data to WAL files to protect from failures

[PROPOSAL] Change approach to store checkpoint recovery data

2023-11-02 Thread Alex Plehanov
Hello, Igniters! I'd like to discuss the way of storing checkpoint recovery data. Now, we are writing extra data to WAL files to protect from failures during checkpoints. Later, we read and write WAL files with this extra data a couple of times, causing excessive disk load, which can lead to perfo

Re: graalvm native images work on recent 2.16.0-SNAPSHOT builds with jdk21

2023-10-09 Thread Alex Plehanov
Hello Scott, What kind of issues do you have with jdk17? I've tested graalvm native images with Ignite 2.15 some time ago (right after 2.15 was released) on jdk11 and jdk17 and it works on my examples. пн, 9 окт. 2023 г. в 11:24, Stephen Darlington : > > That's great news, thanks for sharing! > >

Re: Removal of ignite ml module (or moving it to extensions)

2023-08-09 Thread Alex Plehanov
Pavel, do you know anyone who uses it? Looks like it isn't used at all (no questions on mail lists, no tickets), but we spend developers time to build module with every Ignite rebuild, we spend users traffic to download module (ML with dependencies takes about 1/4 of our binary release package siz

Re: Possible WAL corruption on running system during K8s update

2023-07-18 Thread Alex Plehanov
Hello, Which Ignite version do you use? Please share exception details after "Exception during start processors, node will be stopped and close connections" (there should be a reason in the log, why the page delta can't be applied). вт, 18 июл. 2023 г. в 05:05, Raymond Wilson : > Hi, > > We run

Re: Re: SetLoacl is not work for Calcite

2023-06-30 Thread Alex Plehanov
Hitesh, To unsubscribe, send a message to user-unsubscr...@ignite.apache.org (not to user@ignite.apache.org). пт, 30 июн. 2023 г. в 13:50, Hitesh Nandwana : > > Why It is not subscribing? > > On Fri, 30 Jun, 2023, 14:17 Alex Plehanov, wrote: >> >> Hello, >> >>

Re: Re: SetLoacl is not work for Calcite

2023-06-30 Thread Alex Plehanov
s inefficient. That's why i need > setLocal. What should I do if without setLocal? > > > > Yours, > Hu Tiany > 2023/6/30 > > > At 2023-06-05 19:21:13, "Alex Plehanov" wrote: > >Hello, > > > >The Calcite-based SQL engine currently doesn&

Re: SetLoacl is not work for Calcite

2023-06-05 Thread Alex Plehanov
Hello, The Calcite-based SQL engine currently doesn't analyze any properties of SqlFieldsQuery except "Sql", "Schema", "Args" and "QueryInitiatorId". Some of the rest properties are useless for the Calcite-based engine at all (for example, "DistributedJoins", since all joins in the Calcite-based e

Re: Ignite thin client continuous query listener cannot listen to all events

2023-05-25 Thread Alex Plehanov
Hello, Looks like the bug is related to server-side continuous queries functionality. I've tried to reproduce it using thick-client and got the same results, in rare cases events are lost. чт, 25 мая 2023 г. в 06:48, Pavel Tupitsyn : > > Thank you for the bug report, I will have a look. > > On Th

[jira] [Updated] (IGNITE-11020) Document edge-chasing deadlock detection

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11020?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11020: --- Fix Version/s: 2.16 (was: 2.15) > Document edge-chasing deadl

[jira] [Updated] (IGNITE-11060) Add documentation about CacheInterceptor.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11060?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11060: --- Fix Version/s: 2.16 (was: 2.15) > Add documentation ab

[jira] [Updated] (IGNITE-11064) Add documentation for enabling cache statistics only on appropriate nodes.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11064?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11064: --- Fix Version/s: 2.16 (was: 2.15) > Add documentation for enabl

[jira] [Updated] (IGNITE-10979) Add documentation for control.sh idle_verify --check-crc

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10979?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10979: --- Fix Version/s: 2.16 (was: 2.15) > Add documentation for control

[jira] [Updated] (IGNITE-10845) Ignite Production Readiness Section Enhancement

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10845?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10845: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Production Readin

[jira] [Updated] (IGNITE-6526) Ignite 2.x capacity planning guide

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-6526?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-6526: -- Fix Version/s: 2.16 (was: 2.15) > Ignite 2.x capacity planning gu

[jira] [Updated] (IGNITE-11252) Docs: Index corruption recovery procedure

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11252?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11252: --- Fix Version/s: 2.16 (was: 2.15) > Docs: Index corruption recov

[jira] [Updated] (IGNITE-11965) Pyton client: Expiration policies are missed

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11965?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11965: --- Fix Version/s: 2.16 (was: 2.15) > Pyton client: Expiration polic

[jira] [Updated] (IGNITE-10741) MVCC: Document disabled page evictions for in-memory MVCC caches.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10741?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10741: --- Fix Version/s: 2.16 (was: 2.15) > MVCC: Document disabled p

[jira] [Updated] (IGNITE-10649) Add documentation for control.sh about SSL

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10649: --- Fix Version/s: 2.16 (was: 2.15) > Add documentation for control

[jira] [Updated] (IGNITE-10699) Update documentation for control.sh

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10699?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10699: --- Fix Version/s: 2.16 (was: 2.15) > Update documentation

[jira] [Updated] (IGNITE-9406) Improve SQL "Performance and Debugging" page

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9406: -- Fix Version/s: 2.16 (was: 2.15) > Improve SQL "Perform

[jira] [Updated] (IGNITE-10947) CPP: Fix documentation on how to build Ignite C++ on Linux

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10947?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10947: --- Fix Version/s: 2.16 (was: 2.15) > CPP: Fix documentation on how

[jira] [Updated] (IGNITE-13525) Ignite Docs: detect and fix broken cross-links

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13525?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13525: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: detect and

[jira] [Updated] (IGNITE-10895) MVCC: Document several modes of pessimistic transactions are allowed for MVCC caches.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10895: --- Fix Version/s: 2.16 (was: 2.15) > MVCC: Document several modes

[jira] [Updated] (IGNITE-11187) Additional documentation for re-balancing is canceled if client node joins.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11187?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11187: --- Fix Version/s: 2.16 (was: 2.15) > Additional documentation for

[jira] [Updated] (IGNITE-12368) .NET: Make sure units are specified in documentation where applicable

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-12368?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-12368: --- Fix Version/s: 2.16 (was: 2.15) > .NET: Make sure units

[jira] [Updated] (IGNITE-4221) Document ComputeJobMasterLeaveAware interface usage

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-4221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-4221: -- Fix Version/s: 2.16 (was: 2.15) > Document ComputeJobMasterLeaveAw

[jira] [Updated] (IGNITE-11427) Document custom node fail functional.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11427?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11427: --- Fix Version/s: 2.16 (was: 2.15) > Document custom node f

[jira] [Updated] (IGNITE-10710) Document new REST API for baseline topology command.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10710?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10710: --- Fix Version/s: 2.16 (was: 2.15) > Document new REST API

[jira] [Updated] (IGNITE-9758) Document data injection via the REST API

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9758?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9758: -- Fix Version/s: 2.16 (was: 2.15) > Document data injection via the R

[jira] [Updated] (IGNITE-9716) Document partition distribution and reset lost partitions commands of control script

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9716?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9716: -- Fix Version/s: 2.16 (was: 2.15) > Document partition distribution

[jira] [Updated] (IGNITE-10977) Document unsupported clear() call for MVCC caches

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10977?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10977: --- Fix Version/s: 2.16 (was: 2.15) > Document unsupported clear() c

[jira] [Updated] (IGNITE-10887) .NET: Align .Net docs with Java

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10887?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10887: --- Fix Version/s: 2.16 (was: 2.15) > .NET: Align .Net docs with J

[jira] [Updated] (IGNITE-12943) Document how to filter out metrics from registries

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-12943?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-12943: --- Fix Version/s: 2.16 (was: 2.15) > Document how to filter

[jira] [Updated] (IGNITE-7704) Document IgniteConfiguration, TcpDiscoverySpi, TcpCommunicationSpi timeouts and their relations

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-7704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-7704: -- Fix Version/s: 2.16 (was: 2.15) > Document IgniteConfigurat

[jira] [Updated] (IGNITE-10268) Remove documentation about "replicatedOnly" flag

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10268: --- Fix Version/s: 2.16 (was: 2.15) > Remove documentation ab

[jira] [Updated] (IGNITE-11729) Low description for lost policy functional

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11729?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11729: --- Fix Version/s: 2.16 (was: 2.15) > Low description for lost pol

[jira] [Updated] (IGNITE-13611) Ignite Docs: Port Compute Grid/Checkpointing docs from readme.io

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13611?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13611: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: Port Compute G

[jira] [Updated] (IGNITE-9485) Update documentation for ScanQuery with setLocal flag

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9485: -- Fix Version/s: 2.16 (was: 2.15) > Update documentation for ScanQu

[jira] [Updated] (IGNITE-9091) IEP-25: creating documentation

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9091?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9091: -- Fix Version/s: 2.16 (was: 2.15) > IEP-25: creating documentat

[jira] [Updated] (IGNITE-11057) Document new SQL system view "CACHE_GROUPS_IO"

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11057?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11057: --- Fix Version/s: 2.16 (was: 2.15) > Document new SQL system v

[jira] [Updated] (IGNITE-9547) Document DML operations prohibited inside transaction

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9547: -- Fix Version/s: 2.16 (was: 2.15) > Document DML operations prohibi

[jira] [Updated] (IGNITE-13528) Ignite Docs: port generic instructions for Kubernetes

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13528?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13528: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: port gene

[jira] [Updated] (IGNITE-11076) Add documentation for control.sh idle_verify --exclude-caches and --cache-filter

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11076: --- Fix Version/s: 2.16 (was: 2.15) > Add documentation for control

[jira] [Updated] (IGNITE-8411) Binary Client Protocol spec: other parts clarifications

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-8411?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-8411: -- Fix Version/s: 2.16 (was: 2.15) > Binary Client Protocol spec: ot

[jira] [Updated] (IGNITE-9984) Documentation for EVT_MANAGEMENT_TASK_STARTED will be required.

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9984?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9984: -- Fix Version/s: 2.16 (was: 2.15) > Documentation

[jira] [Updated] (IGNITE-11487) Document IGNITE_SQL_MERGE_TABLE_MAX_SIZE property

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11487: --- Fix Version/s: 2.16 (was: 2.15) > Docum

[jira] [Updated] (IGNITE-9856) Update documentation for control.sh --cache list

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-9856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-9856: -- Fix Version/s: 2.16 (was: 2.15) > Update documentation for control

[jira] [Updated] (IGNITE-10880) Document how we should evolve our persistence functionality while keeping it compatible with files created by old versions

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10880?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10880: --- Fix Version/s: 2.16 (was: 2.15) > Document how we should evolve

[jira] [Updated] (IGNITE-10581) Document new flag to filter cache types in control.sh

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10581?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10581: --- Fix Version/s: 2.16 (was: 2.15) > Document new flag to filter ca

[jira] [Updated] (IGNITE-13821) Explain how to include a scope into another tracing scope

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13821: --- Fix Version/s: 2.16 (was: 2.15) > Explain how to include a sc

[jira] [Updated] (IGNITE-10846) Improve docs for "Disabling WAL Archiving"

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-10846?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-10846: --- Fix Version/s: 2.16 (was: 2.15) > Improve docs for "Disab

[jira] [Updated] (IGNITE-13585) Ignite Docs: Port AWS and GCE deployment docs from readme.io

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13585?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13585: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: Port AWS and

[jira] [Updated] (IGNITE-18496) Handle documentation feedback

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-18496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-18496: --- Fix Version/s: 2.16 (was: 2.15) > Handle documentation feedb

[jira] [Updated] (IGNITE-11628) Document the possibility to use JAR files in UriDeploymentSpi

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11628?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11628: --- Fix Version/s: 2.16 (was: 2.15) > Document the possibility to

[jira] [Updated] (IGNITE-11184) add example of ssl rest protocol on ignite

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11184?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11184: --- Fix Version/s: 2.16 (was: 2.15) > add example of ssl rest proto

[jira] [Updated] (IGNITE-13523) Ignite Docs: the "layout: toc" tag no longer produces a table of content

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13523?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13523: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: the "lay

[jira] [Updated] (IGNITE-13529) Ignite Docs: create docs for OpenShift installation

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13529?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13529: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: create docs

[jira] [Updated] (IGNITE-12575) Document @IgniteExperimental annotation

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-12575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-12575: --- Fix Version/s: 2.16 (was: 2.15) > Document @IgniteExperimen

[jira] [Updated] (IGNITE-11694) Add documentation for SqlFieldsQuery.updateBatchSize into thin clients docs

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11694: --- Fix Version/s: 2.16 (was: 2.15) > Add documentation

[jira] [Updated] (IGNITE-13651) Ignite Docs: Port Apache Zeppelin docs from readme.io

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13651?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13651: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: Port Apache Zeppe

[jira] [Updated] (IGNITE-13918) Ignite Docs: Port Capacity Planning docs from readme.io

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13918?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13918: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: Port Capac

[jira] [Updated] (IGNITE-19314) Release 2.15

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-19314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-19314: --- Fix Version/s: 2.16 (was: 2.15) > Release 2

[jira] [Updated] (IGNITE-14212) New web documentation promotion

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-14212?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-14212: --- Fix Version/s: 2.16 (was: 2.15) > New web documentation promot

[jira] [Updated] (IGNITE-11768) CPP documentation:mention default BinaryType methods implementation

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11768?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11768: --- Fix Version/s: 2.16 (was: 2.15) > CPP documentation:mention defa

[jira] [Updated] (IGNITE-11789) Document changes of LRT diagnostic messages made in IGNITE-11392

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11789?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11789: --- Fix Version/s: 2.16 (was: 2.15) > Document changes of

[jira] [Updated] (IGNITE-11630) Document changes to SQL views

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-11630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-11630: --- Fix Version/s: 2.16 (was: 2.15) > Document changes to SQL vi

[jira] [Updated] (IGNITE-13851) Document persistence forward compatibility policy

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13851?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13851: --- Fix Version/s: 2.16 (was: 2.15) > Document persistence forw

[jira] [Updated] (IGNITE-13688) Ignite Docs: Port Checkpointing&Continuous Mapping from readme.io

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13688?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13688: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: Port Checkpoint

[jira] [Updated] (IGNITE-13524) Ignite Docs: fix Jekyll warnings reported during docs transformation to HTML

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-13524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-13524: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: fix Jekyll warni

[jira] [Updated] (IGNITE-14694) .NET: Update documentation links in README, add README to NuGet

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-14694?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-14694: --- Fix Version/s: 2.16 (was: 2.15) > .NET: Update documentation li

[jira] [Updated] (IGNITE-16949) Update documantaion links for spring-data examples and code snippets

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-16949?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-16949: --- Fix Version/s: 2.16 (was: 2.15) > Update documantaion links

[jira] [Updated] (IGNITE-19378) Ignite Docs: Remove docs related to lazy loading

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-19378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-19378: --- Fix Version/s: 2.16 (was: 2.15) > Ignite Docs: Remove docs rela

[jira] [Updated] (IGNITE-16189) Improve getting started section for Ignite C++

2023-05-03 Thread Alex Plehanov (Jira)
[ https://issues.apache.org/jira/browse/IGNITE-16189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alex Plehanov updated IGNITE-16189: --- Fix Version/s: 2.16 (was: 2.15) > Improve getting started sect

[RESULT] [VOTE] Release Apache Ignite 2.15.0 RC0

2023-05-02 Thread Alex Plehanov
Dear community, The release of Apache Ignite 2.15.0 RC0 has been accepted. Vote result: The vote PASSES with six +1 votes (3 bindings), no 0 votes, and no -1 votes. +1 votes: - Pavel Tupitsyn (binding) - Nikita Amelchev - Vladimir Steshin - Maxim Muzafarov (binding) - Ilya Shishkov - Ivan Daschi

[VOTE] Release Apache Ignite 2.15.0 RC0

2023-04-26 Thread Alex Plehanov
Dear Community, The release candidate is ready. I have uploaded release candidate to https://dist.apache.org/repos/dist/dev/ignite/2.15.0-rc0/ https://dist.apache.org/repos/dist/dev/ignite/packages_2.15.0-rc0/ The following staging can be used for testing: https://repository.apache.org/content/r

Re: Apache Ignite 2.15 RELEASE [Time, Scope, Manager]

2023-04-18 Thread Alex Plehanov
> > a lot of changes from 'ignite' to 'gridgain' > That's not good, requested changes on that PR. > > [1] > > https://cwiki.apache.org/confluence/display/IGNITE/How+to+Document#HowtoDocument-DocumentationFeedbackviaBugyard > > On Tue, Apr 11, 2023

Re: Apache Ignite 2.15 RELEASE [Time, Scope, Manager]

2023-04-11 Thread Alex Plehanov
IGNITE-17892 > > https://issues.apache.org/jira/browse/IGNITE-18496 > > https://issues.apache.org/jira/browse/IGNITE-18260 > > 在 2023/4/10 21:31, Alex Plehanov 写道: > > Hello Igniters, > > > > I've cut the release branch: 'ignite-2.15'. Please, cherry-pi

Re: Apache Ignite 2.15 RELEASE [Time, Scope, Manager]

2023-04-10 Thread Alex Plehanov
Hello Igniters, I've cut the release branch: 'ignite-2.15'. Please, cherry-pick new issues if needed. The 2.15 scope is frozen. Unresolved not-blocking issues will be moved to the next release on the code freeze stage. пт, 7 апр. 2023 г. в 17:03, Alex Plehanov : > Hello Ig

Re: Apache Ignite 2.15 RELEASE [Time, Scope, Manager]

2023-04-07 Thread Alex Plehanov
y (10 Apr). I will inform you accordingly, when it will be done. [1] : https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.15 пт, 31 мар. 2023 г. в 13:18, Jian Chen : > +1 > > Вячеслав Коптилин 于2023年3月31日 周五下午6:12写道: > > > +1 > > > > ср, 29

Apache Ignite 2.15 RELEASE [Time, Scope, Manager]

2023-03-29 Thread Alex Plehanov
Dear Ignite Community! I suggest starting Apache Ignite 2.15 release activities. We've accumulated more than two hundred resolved issues [1] with new features and bug fixes which are waiting for release. The major changes related to the proposed release: - Incremental snapshots. - Java thin clien

Re: How to get table/column statistics

2023-03-03 Thread Alex Plehanov
Jian Chen, There is such a view as STATISTICS_GLOBAL_DATA, but looks like it isn't documented. пт, 3 мар. 2023 г. в 11:13, Jian Chen : > Hi Igniters, > > I am trying to get table statistics for a Ignite table, find the document > in > > https://ignite.apache.org/docs/latest/monitoring-metrics/sy

  1   2   3   4   5   >