[jira] [Updated] (IGNITE-22776) SQL table statistic is updated only once.

2024-07-19 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22776?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22776:

Fix Version/s: 2.17

> SQL table statistic is updated only once.
> -
>
> Key: IGNITE-22776
> URL: https://issues.apache.org/jira/browse/IGNITE-22776
> Project: Ignite
>  Issue Type: Bug
>Affects Versions: 2.15
>Reporter: Vladimir Steshin
>Priority: Major
>  Labels: ise
> Fix For: 2.17
>
> Attachments: StatisticsObsolescenceTest.java
>
>
> To build a better plan, H2 can rely on the statistics. We can enable it with
> {code:java}
> control.sh --property set --name 'statistics. Usage. State' --val 'ON'
> {code}
> and
> {code:sql}
> ANALYZE MY_TABLE
> {code}
> But table statistic tends update with CRUD only once. Despite the 
> obsolescence threshold, by default
> {code:java}
> int StatisticsObjectConfiguration#DEFAULT_OBSOLESCENCE_MAX_PERCENT = 15;
> {code}
> Partition statistics obsolescence is checked every 60 seconds:
> {code:java}
> int IgniteStatisticsManagerImpl#OBSOLESCENCE_INTERVAL = 60;
> if (serverNode) {
>obsolescenceSchedule = ctx.timeout().schedule(() -> {
> obsolescenceBusyExecutor.execute(() -> processObsolescence());
>}, OBSOLESCENCE_INTERVAL * 1000, OBSOLESCENCE_INTERVAL * 1000);
> }
> {code}
> Regarding my research, the problem is within
> {code:java}
> private Set 
> IgniteStatisticsManagerImpl#calculateObsolescencedPartitions(
> StatisticsObjectConfiguration cfg,
> IntMap parts
> ) {
> Set res = new HashSet<>();
> parts.forEach((k, v) -> {
> ObjectPartitionStatisticsImpl partStat = 
> statsRepos.getLocalPartitionStatistics(cfg.key(), k);
> if (partStat == null || partStat.rowCount() == 0 ||
> (double)v.modified() * 100 / partStat.rowCount() > 
> cfg.maxPartitionObsolescencePercent())
> res.add(k);
> });
> // Will add even empty list of partitions to recollect just to force 
> obsolescence info to be stored.
> return res;
> }
> {code}
> Where 
> {code:java}
> v.modified() (long ObjectPartitionStatisticsObsolescence#modified())
> {code}
> is always 0, never updates.  Probably because 
> {code:java}
> IgniteStatisticsManagerImpl#calculateObsolescencedPartitions#onRowUpdated(String
>  schemaName, String objName, int partId, byte[] keyBytes) 
> {code}
> is called nowhere. But
> {code:java}
> partStat.rowCount()
> {code}
> is 0 at the beginning. This is why the statistic is calculated once.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22562) Improve message about turning on statistics usage state from null to ON

2024-06-24 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22562?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22562:

Description: 
Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to [ignite 
code|https://github.com/apache/ignite/blob/f9a2921346a8d8fa79bdb2286bd97cc7f9baacd9/modules/core/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsManagerImpl.java#L60],
 DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.

  was:
Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to [ignite 
code|https://github.com/apache/ignite/blob/f9a2921346a8d8fa79bdb2286bd97cc7f9baacd9/modules/core/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsManagerImpl.java#L428],
 DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.


> Improve message about turning on statistics usage state from null to ON
> ---
>
> Key: IGNITE-22562
> URL: https://issues.apache.org/jira/browse/IGNITE-22562
> Project: Ignite
>  Issue Type: Task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Fix For: 2.17
>
>
> Currently, if you turn on statistics using
> {code:java}
> ./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
> there will be the output below in ignite.log.
> {code:java}
> 2024-06-19 10:03:44.873 [INFO 
> ][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
>  Statistics usage state was changed from null to ON
> {code}
> According to [ignite 
> code|https://github.com/apache/ignite/blob/f9a2921346a8d8fa79bdb2286bd97cc7f9baacd9/modules/core/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsManagerImpl.java#L60],
>  DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by default ON.
> Thus the output message in ignite.log is unclear to the user whether the 
> stats is already ON or not stated.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22562) Improve message about turning on statistics usage state from null to ON

2024-06-24 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22562?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22562:

Description: 
Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to [ignite 
code|https://github.com/apache/ignite/blob/f9a2921346a8d8fa79bdb2286bd97cc7f9baacd9/modules/core/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsManagerImpl.java#L428],
 DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.

  was:
Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to ignite code, DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by 
default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.


> Improve message about turning on statistics usage state from null to ON
> ---
>
> Key: IGNITE-22562
> URL: https://issues.apache.org/jira/browse/IGNITE-22562
> Project: Ignite
>  Issue Type: Task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Fix For: 2.17
>
>
> Currently, if you turn on statistics using
> {code:java}
> ./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
> there will be the output below in ignite.log.
> {code:java}
> 2024-06-19 10:03:44.873 [INFO 
> ][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
>  Statistics usage state was changed from null to ON
> {code}
> According to [ignite 
> code|https://github.com/apache/ignite/blob/f9a2921346a8d8fa79bdb2286bd97cc7f9baacd9/modules/core/src/main/java/org/apache/ignite/internal/processors/query/stat/IgniteStatisticsManagerImpl.java#L428],
>  DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by default ON.
> Thus the output message in ignite.log is unclear to the user whether the 
> stats is already ON or not stated.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22562) Improve message about turning on statistics usage state from null to ON

2024-06-24 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22562?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22562:

Description: 
Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to ignite code, DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by 
default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.

  was:
Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to ignite code, DEFAULT_STATISTICS_USAGE_CODE=ON thus null is by 
default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.


> Improve message about turning on statistics usage state from null to ON
> ---
>
> Key: IGNITE-22562
> URL: https://issues.apache.org/jira/browse/IGNITE-22562
> Project: Ignite
>  Issue Type: Task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Fix For: 2.17
>
>
> Currently, if you turn on statistics using
> {code:java}
> ./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
> there will be the output below in ignite.log.
> {code:java}
> 2024-06-19 10:03:44.873 [INFO 
> ][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
>  Statistics usage state was changed from null to ON
> {code}
> According to ignite code, DEFAULT_STATISTICS_USAGE_STATE=ON thus null is by 
> default ON.
> Thus the output message in ignite.log is unclear to the user whether the 
> stats is already ON or not stated.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22562) Improve message about turning on statistics usage state from null to ON

2024-06-24 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22562?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22562:

Fix Version/s: 2.17

> Improve message about turning on statistics usage state from null to ON
> ---
>
> Key: IGNITE-22562
> URL: https://issues.apache.org/jira/browse/IGNITE-22562
> Project: Ignite
>  Issue Type: Task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Fix For: 2.17
>
>
> Currently, if you turn on statistics using
> {code:java}
> ./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
> there will be the output below in ignite.log.
> {code:java}
> 2024-06-19 10:03:44.873 [INFO 
> ][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
>  Statistics usage state was changed from null to ON
> {code}
> According to ignite code, DEFAULT_STATISTICS_USAGE_CODE=ON thus null is by 
> default ON.
> Thus the output message in ignite.log is unclear to the user whether the 
> stats is already ON or not stated.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-22562) Improve message about turning on statistics usage state from null to ON

2024-06-24 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-22562:
---

 Summary: Improve message about turning on statistics usage state 
from null to ON
 Key: IGNITE-22562
 URL: https://issues.apache.org/jira/browse/IGNITE-22562
 Project: Ignite
  Issue Type: Task
Reporter: Julia Bakulina
Assignee: Julia Bakulina


Currently, if you turn on statistics using
{code:java}
./control.sh --property set --name 'statistics.usage.state' --val 'ON'{code}
there will be the output below in ignite.log.
{code:java}
2024-06-19 10:03:44.873 [INFO 
][disco-notifier-worker-#98][org.apache.ignite.internal.processors.query.stat.IgniteStatisticsManagerImpl]
 Statistics usage state was changed from null to ON
{code}
According to ignite code, DEFAULT_STATISTICS_USAGE_CODE=ON thus null is by 
default ON.

Thus the output message in ignite.log is unclear to the user whether the stats 
is already ON or not stated.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-17383) IdleVerify hangs when called on inactive cluster with persistence

2024-06-20 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-17383?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17856661#comment-17856661
 ] 

Julia Bakulina commented on IGNITE-17383:
-

[~NSAmelchev] and [~timonin.maksim], thank you for your review

> IdleVerify hangs when called on inactive cluster with persistence
> -
>
> Key: IGNITE-17383
> URL: https://issues.apache.org/jira/browse/IGNITE-17383
> Project: Ignite
>  Issue Type: Bug
>  Components: control.sh
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Fix For: 2.17
>
>  Time Spent: 7h 10m
>  Remaining Estimate: 0h
>
> When you call {{control.sh --cache idle_verify}} on inactive cluster with 
> persistence, control script hangs and no actions are performed. As you can 
> see below in 'rest' thread dump, {{VerifyBackupPartitionsTaskV2}} waits for 
> checkpoint start in {{GridCacheDatabaseSharedManager#waitForCheckpoint}}.
> It seems, that we can interrupt task execution and print message in control 
> script output, that IdleVerify can't work on inactive cluster.
> {code:title=Thread dump}
> "rest-#82%ignite-server%" #146 prio=5 os_prio=31 tid=0x7fe0cf97c000 
> nid=0x3607 waiting on condition [0x700010149000]
>java.lang.Thread.State: WAITING (parking)
>   at sun.misc.Unsafe.park(Native Method)
>   at java.util.concurrent.locks.LockSupport.park(LockSupport.java:304)
>   at 
> org.apache.ignite.internal.util.future.GridFutureAdapter.get0(GridFutureAdapter.java:178)
>   at 
> org.apache.ignite.internal.util.future.GridFutureAdapter.get(GridFutureAdapter.java:141)
>   at 
> org.apache.ignite.internal.processors.cache.persistence.GridCacheDatabaseSharedManager.waitForCheckpoint(GridCacheDatabaseSharedManager.java:1869)
>   at 
> org.apache.ignite.internal.processors.cache.persistence.IgniteCacheDatabaseSharedManager.waitForCheckpoint(IgniteCacheDatabaseSharedManager.java:1107)
>   at 
> org.apache.ignite.internal.processors.cache.verify.VerifyBackupPartitionsTaskV2$VerifyBackupPartitionsJobV2.execute(VerifyBackupPartitionsTaskV2.java:199)
>   at 
> org.apache.ignite.internal.processors.cache.verify.VerifyBackupPartitionsTaskV2$VerifyBackupPartitionsJobV2.execute(VerifyBackupPartitionsTaskV2.java:171)
>   at 
> org.apache.ignite.internal.processors.job.GridJobWorker$2.call(GridJobWorker.java:620)
>   at 
> org.apache.ignite.internal.util.IgniteUtils.wrapThreadLoader(IgniteUtils.java:7366)
>   at 
> org.apache.ignite.internal.processors.job.GridJobWorker.execute0(GridJobWorker.java:614)
>   at 
> org.apache.ignite.internal.processors.job.GridJobWorker.body(GridJobWorker.java:539)
>   at 
> org.apache.ignite.internal.util.worker.GridWorker.run(GridWorker.java:125)
>   at 
> org.apache.ignite.internal.processors.job.GridJobProcessor.processJobExecuteRequest(GridJobProcessor.java:1343)
>   at 
> org.apache.ignite.internal.processors.task.GridTaskWorker.sendRequest(GridTaskWorker.java:1444)
>   at 
> org.apache.ignite.internal.processors.task.GridTaskWorker.processMappedJobs(GridTaskWorker.java:674)
>   at 
> org.apache.ignite.internal.processors.task.GridTaskWorker.body(GridTaskWorker.java:540)
>   at 
> org.apache.ignite.internal.util.worker.GridWorker.run(GridWorker.java:125)
>   at 
> org.apache.ignite.internal.processors.task.GridTaskProcessor.startTask(GridTaskProcessor.java:860)
>   at 
> org.apache.ignite.internal.processors.task.GridTaskProcessor.execute(GridTaskProcessor.java:470)
>   at 
> org.apache.ignite.internal.IgniteComputeImpl.executeAsync0(IgniteComputeImpl.java:514)
>   at 
> org.apache.ignite.internal.IgniteComputeImpl.executeAsync(IgniteComputeImpl.java:496)
>   at 
> org.apache.ignite.internal.visor.verify.VisorIdleVerifyJob.run(VisorIdleVerifyJob.java:70)
>   at 
> org.apache.ignite.internal.visor.verify.VisorIdleVerifyJob.run(VisorIdleVerifyJob.java:35)
>   at org.apache.ignite.internal.visor.VisorJob.execute(VisorJob.java:69)
>   at 
> org.apache.ignite.internal.processors.job.GridJobWorker$2.call(GridJobWorker.java:620)
>   at 
> org.apache.ignite.internal.util.IgniteUtils.wrapThreadLoader(IgniteUtils.java:7366)
>   at 
> org.apache.ignite.internal.processors.job.GridJobWorker.execute0(GridJobWorker.java:614)
>   at 
> org.apache.ignite.internal.processors.job.GridJobWorker.body(GridJobWorker.java:539)
>   at 
> org.apache.ignite.internal.util.worker.GridWorker.run(GridWorker.java:125)
>   at 
> org.apache.ignite.internal.processors.job.GridJobProcessor.processJobExecuteRequest(GridJobProcessor.java:1343)
>   at 
> org.apache.ignite.internal.processors.task.GridTaskWorker.sendRequest(GridTaskWorker.java:1444)
> 

[jira] [Commented] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-30 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17850714#comment-17850714
 ] 

Julia Bakulina commented on IGNITE-22089:
-

[~av] thank you for the review!

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Fix For: 2.17
>
> Attachments: IgniteGetAndPutTxBenchmark.png, 
> IgniteInvokeTxBenchmark.png, IgnitePutGetTxBenchmark.png, 
> IgnitePutTxBenchmark.png, JdbcSqlInsertDeleteBenchmark.png, 
> JdbcSqlQueryRangeBenchmark.png, JdbcSqlUpdateBenchmark.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> MVCC code has to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-30 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17848609#comment-17848609
 ] 

Julia Bakulina edited comment on IGNITE-22089 at 5/30/24 9:10 AM:
--

I have run Ignite JDBC and Tx Benchmarks locally after the deletion of the 
classes mentioned above. The results are attached.

Tx benchmarks:

[^IgnitePutGetTxBenchmark.png]

[^IgniteInvokeTxBenchmark.png]

[^IgniteGetAndPutTxBenchmark.png]

[^IgnitePutTxBenchmark.png]

JDBC benchmarks:

[^JdbcSqlUpdateBenchmark.png]

[^JdbcSqlQueryRangeBenchmark.png]

[^JdbcSqlInsertDeleteBenchmark.png]


was (Author: JIRAUSER294860):
I have run Ignite Benchmarks locally after the deletion of the classes 
mentioned above. The throughput/latency plots are attached

[^latency.png]

[^throughput.png]

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: IgniteGetAndPutTxBenchmark.png, 
> IgniteInvokeTxBenchmark.png, IgnitePutGetTxBenchmark.png, 
> IgnitePutTxBenchmark.png, JdbcSqlInsertDeleteBenchmark.png, 
> JdbcSqlQueryRangeBenchmark.png, JdbcSqlUpdateBenchmark.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code has to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-30 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Attachment: JdbcSqlUpdateBenchmark.png
JdbcSqlQueryRangeBenchmark.png
JdbcSqlInsertDeleteBenchmark.png

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: IgniteGetAndPutTxBenchmark.png, 
> IgniteInvokeTxBenchmark.png, IgnitePutGetTxBenchmark.png, 
> IgnitePutTxBenchmark.png, JdbcSqlInsertDeleteBenchmark.png, 
> JdbcSqlQueryRangeBenchmark.png, JdbcSqlUpdateBenchmark.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code has to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-30 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Attachment: IgnitePutGetTxBenchmark.png
IgniteInvokeTxBenchmark.png
IgniteGetAndPutTxBenchmark.png
IgnitePutTxBenchmark.png

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: IgniteGetAndPutTxBenchmark.png, 
> IgniteInvokeTxBenchmark.png, IgnitePutGetTxBenchmark.png, 
> IgnitePutTxBenchmark.png, JdbcSqlInsertDeleteBenchmark.png, 
> JdbcSqlQueryRangeBenchmark.png, JdbcSqlUpdateBenchmark.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code has to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-30 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Attachment: (was: throughput.png)

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code has to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-30 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Attachment: (was: latency.png)

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code has to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17848609#comment-17848609
 ] 

Julia Bakulina edited comment on IGNITE-22089 at 5/22/24 1:34 PM:
--

I have run Ignite Benchmarks locally after the deletion of the classes 
mentioned above. The throughput/latency plots are attached

[^latency.png]

[^throughput.png]


was (Author: JIRAUSER294860):
I have run Ignite Benchmarks locally after the deletion of the classes above. 
The throughput/latency plots are attached

[^latency.png]

[^throughput.png]

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code is to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17848609#comment-17848609
 ] 

Julia Bakulina edited comment on IGNITE-22089 at 5/22/24 1:31 PM:
--

I have run Ignite Benchmarks locally after the deletion of the classes above. 
The throughput/latency plots are attached

[^latency.png]

[^throughput.png]


was (Author: JIRAUSER294860):
I have run Ignite Benchmarks locally after the deleted of the classes above. 
The throughput/latency plots are attached

[^latency.png]

[^throughput.png]

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code is to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Description: 
MVCC code is to be removed from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark

  was:
To remove MVCC code from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark


> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> MVCC code is to be removed from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17848609#comment-17848609
 ] 

Julia Bakulina edited comment on IGNITE-22089 at 5/22/24 1:23 PM:
--

I have run Ignite Benchmarks locally after the deleted of the classes above. 
The throughput/latency plots are attached

[^latency.png]

[^throughput.png]


was (Author: JIRAUSER294860):
I have run Ignite Benchmarks locally after the deleted of the classes above. 
The throughput/latency plots are attached

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17848609#comment-17848609
 ] 

Julia Bakulina commented on IGNITE-22089:
-

I have run Ignite Benchmarks locally after the deleted of the classes above. 
The throughput/latency plots are attached

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Description: 
To remove MVCC code from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark

  was:
To remove MVCC code from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark

I have run Ignite Benchmarks locally after the deleted of the classes above. 
The throughput/latency plots are attached


> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Attachment: throughput.png
latency.png

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark
> I have run Ignite Benchmarks locally after the deleted of the classes above. 
> The throughput/latency plots are attached



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Description: 
To remove MVCC code from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark

I have run Ignite Benchmarks locally after the deleted of the classes above. 
The throughput/latency plots are attached

  was:
To remove MVCC code from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark


> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
> Attachments: latency.png, throughput.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark
> I have run Ignite Benchmarks locally after the deleted of the classes above. 
> The throughput/latency plots are attached



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-17 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Description: 
To remove MVCC code from Yardstick. Classes to delete:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark

  was:
To remove MVCC code from Yardstick. To delete classes:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark


> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. Classes to delete:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-17 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Description: 
To remove MVCC code from Yardstick. To delete classes:
 - AbstractDistributedMvccBenchmark
 - MvccProcessorBenchmark
 - MvccUpdateContentionBenchmark
 - NativeJavaApiPutRemoveBenchmark

  was:
To remove MVCC code from Yardstick. To delete classes:

- AbstractDistributedMvccBenchmark
- MvccProcessorBenchmark
- MvccUpdateContentionBenchmark


> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. To delete classes:
>  - AbstractDistributedMvccBenchmark
>  - MvccProcessorBenchmark
>  - MvccUpdateContentionBenchmark
>  - NativeJavaApiPutRemoveBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-17 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22089:

Description: 
To remove MVCC code from Yardstick. To delete classes:

- AbstractDistributedMvccBenchmark
- MvccProcessorBenchmark
- MvccUpdateContentionBenchmark

  was:
AbstractDistributedMvccBenchmark
MvccProcessorBenchmark
MvccUpdateContentionBenchmark


> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To remove MVCC code from Yardstick. To delete classes:
> - AbstractDistributedMvccBenchmark
> - MvccProcessorBenchmark
> - MvccUpdateContentionBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (IGNITE-22089) Removal of MVCC benchmarks in Yardstick

2024-05-08 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22089?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina reassigned IGNITE-22089:
---

Assignee: Julia Bakulina

> Removal of MVCC benchmarks in Yardstick
> ---
>
> Key: IGNITE-22089
> URL: https://issues.apache.org/jira/browse/IGNITE-22089
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> AbstractDistributedMvccBenchmark
> MvccProcessorBenchmark
> MvccUpdateContentionBenchmark



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (IGNITE-21889) Remove MVCC code from DataPageIO class

2024-04-24 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina resolved IGNITE-21889.
-
Resolution: Duplicate

> Remove MVCC code from DataPageIO class
> --
>
> Key: IGNITE-21889
> URL: https://issues.apache.org/jira/browse/IGNITE-21889
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-22 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17839616#comment-17839616
 ] 

Julia Bakulina commented on IGNITE-21888:
-

[~av] could you please review?

> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware.
> Cleanup MvccUtils and DataPageIO.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (IGNITE-21835) Cleanup MvccUtils and enum RowData

2024-04-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina reassigned IGNITE-21835:
---

Assignee: Ilya Shishkov  (was: Julia Bakulina)

>  Cleanup MvccUtils and enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Ilya Shishkov
>Priority: Major
>  Labels: ise
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> To cleanup MvccUtils and enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS.
> Delete MVCC classes:
>  * MvccVersion
>  * MvccVersionImpl
>  * MvccUpdateVersionAware.
> The remaining MvccUtils.tx(..) methods will be removed in IGNITE-21345



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Description: 
Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware.
Cleanup MvccUtils and DataPageIO.

  was:
Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware.
Cleanup MvccUtils и DataPageIO.


> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware.
> Cleanup MvccUtils and DataPageIO.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-19 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Description: 
https://tcbot2.sbt-ignite-dev.ru/pr.html?serverId=apache=IgniteTests24Java8_RunAll=pull/11320/head=Latest
  (was: Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware)

> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> https://tcbot2.sbt-ignite-dev.ru/pr.html?serverId=apache=IgniteTests24Java8_RunAll=pull/11320/head=Latest



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-19 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Description: 
Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware.
Cleanup MvccUtils и DataPageIO.

  
was:https://tcbot2.sbt-ignite-dev.ru/pr.html?serverId=apache=IgniteTests24Java8_RunAll=pull/11320/head=Latest


> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware.
> Cleanup MvccUtils и DataPageIO.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22081) Delete TransactionSerializationException and TransactionAlreadyCompletedException

2024-04-19 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22081:

Labels: ise newbie  (was: ise)

> Delete TransactionSerializationException and 
> TransactionAlreadyCompletedException
> -
>
> Key: IGNITE-22081
> URL: https://issues.apache.org/jira/browse/IGNITE-22081
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Priority: Major
>  Labels: ise, newbie
>
> Delete TransactionSerializationException and 
> TransactionAlreadyCompletedException that are unused after MVCC code removal



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-22081) Delete TransactionSerializationException and TransactionAlreadyCompletedException

2024-04-19 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-22081:
---

 Summary: Delete TransactionSerializationException and 
TransactionAlreadyCompletedException
 Key: IGNITE-22081
 URL: https://issues.apache.org/jira/browse/IGNITE-22081
 Project: Ignite
  Issue Type: Sub-task
Reporter: Julia Bakulina


Delete TransactionSerializationException and 
TransactionAlreadyCompletedException that are unused after MVCC code removal



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-22081) Delete TransactionSerializationException and TransactionAlreadyCompletedException

2024-04-19 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-22081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-22081:

Ignite Flags:   (was: Docs Required,Release Notes Required)

> Delete TransactionSerializationException and 
> TransactionAlreadyCompletedException
> -
>
> Key: IGNITE-22081
> URL: https://issues.apache.org/jira/browse/IGNITE-22081
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TransactionSerializationException and 
> TransactionAlreadyCompletedException that are unused after MVCC code removal



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-18 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Description: Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware 
 (was: Delete MvccVersion and MvccUpdateVersionAware)

> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete MvccVersion, MvccVersionImpl and MvccUpdateVersionAware



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-18 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Summary: Remove MvccVersion and MvccUpdateVersionAware  (was: Remove 
MvccSnapshot)

> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete MvccSnapshot functionality



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccVersion and MvccUpdateVersionAware

2024-04-18 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Description: Delete MvccVersion and MvccUpdateVersionAware  (was: Delete 
MvccSnapshot functionality)

> Remove MvccVersion and MvccUpdateVersionAware
> -
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete MvccVersion and MvccUpdateVersionAware



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Cleanup MvccUtils and enum RowData

2024-04-18 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To cleanup MvccUtils and enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS.

Delete MVCC classes:
 * MvccVersion
 * MvccVersionImpl
 * MvccUpdateVersionAware.

The remaining MvccUtils.tx(..) methods will be removed in IGNITE-21345

  was:
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

and cleanup MvccUtils.

The remaining MvccUtils.tx(..) methods will be removed in IGNITE-21345


>  Cleanup MvccUtils and enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> To cleanup MvccUtils and enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS.
> Delete MVCC classes:
>  * MvccVersion
>  * MvccVersionImpl
>  * MvccUpdateVersionAware.
> The remaining MvccUtils.tx(..) methods will be removed in IGNITE-21345



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21826) MvccCoordinator and MvccFuture removal

2024-04-16 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21826:

External issue URL:   (was: https://github.com/apache/ignite/pull/11314)

> MvccCoordinator and MvccFuture removal
> --
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> To delete MvccCoordinator, MvccFuture and MvccSnapshotResponseListener 
> classes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21826) MvccCoordinator and MvccFuture removal

2024-04-15 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21826:

Description: To delete MvccCoordinator, MvccFuture and 
MvccSnapshotResponseListener classes.  (was: To delete MvccCoordinator and 
MvccFuture classes.)

> MvccCoordinator and MvccFuture removal
> --
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> To delete MvccCoordinator, MvccFuture and MvccSnapshotResponseListener 
> classes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21826) MvccCoordinator and MvccFuture removal

2024-04-15 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21826:

External issue URL: https://github.com/apache/ignite/pull/11314

> MvccCoordinator and MvccFuture removal
> --
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> To delete MvccCoordinator and MvccFuture classes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21826) MvccCoordinator and MvccFuture removal

2024-04-15 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21826:

Description: To delete MvccCoordinator and MvccFuture classes.  (was: 
MvccCoordinator and MvccFuture classes are to be removed.)

> MvccCoordinator and MvccFuture removal
> --
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> To delete MvccCoordinator and MvccFuture classes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21826) MvccCoordinator and MvccFuture removal

2024-04-15 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21826:

Description: MvccCoordinator and MvccFuture classes are to be removed.  
(was: MvccCoordinator class and corresponding code have to be removed.)

> MvccCoordinator and MvccFuture removal
> --
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> MvccCoordinator and MvccFuture classes are to be removed.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21826) MvccCoordinator and MvccFuture removal

2024-04-15 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21826:

Summary: MvccCoordinator and MvccFuture removal  (was: MvccCoordinator 
removal)

> MvccCoordinator and MvccFuture removal
> --
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> MvccCoordinator class and corresponding code have to be removed.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-21826) MvccCoordinator removal

2024-04-12 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-21826?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17836583#comment-17836583
 ] 

Julia Bakulina commented on IGNITE-21826:
-

[~oleg_vlsk] could I proceed with this ticket?

> MvccCoordinator removal
> ---
>
> Key: IGNITE-21826
> URL: https://issues.apache.org/jira/browse/IGNITE-21826
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Oleg Valuyskiy
>Priority: Minor
>  Labels: ise
>
> MvccCoordinator class and corresponding code have to be removed.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Cleanup MvccUtils and enum RowData

2024-04-11 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

and cleanup MvccUtils.

The remaining MvccUtils.tx(..) methods will be removed in IGNITE-21345

  was:
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

and cleanup MvccUtils.


>  Cleanup MvccUtils and enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS
> and cleanup MvccUtils.
> The remaining MvccUtils.tx(..) methods will be removed in IGNITE-21345



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Cleanup MvccUtils and enum RowData

2024-04-11 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary:  Cleanup MvccUtils and enum RowData  (was: Remove MvccUtils and 
cleanup enum RowData)

>  Cleanup MvccUtils and enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS
> and all MvccUtils classes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Cleanup MvccUtils and enum RowData

2024-04-11 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

and cleanup MvccUtils.

  was:
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

and all MvccUtils classes.


>  Cleanup MvccUtils and enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS
> and cleanup MvccUtils.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21889) Remove MVCC code from DataPageIO class

2024-04-08 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21889:

Summary: Remove MVCC code from DataPageIO class  (was: Remove TxState)

> Remove MVCC code from DataPageIO class
> --
>
> Key: IGNITE-21889
> URL: https://issues.apache.org/jira/browse/IGNITE-21889
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (IGNITE-20912) Ability to switch debug log level for ConflictResolver during runtime

2024-04-05 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-20912?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina reassigned IGNITE-20912:
---

Assignee: Julia Bakulina

> Ability to switch debug log level for ConflictResolver during runtime
> -
>
> Key: IGNITE-20912
> URL: https://issues.apache.org/jira/browse/IGNITE-20912
> Project: Ignite
>  Issue Type: Task
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: IEP-59, ise
>
> Currently, we can not switch debug log level for conflict resolver during 
> runtime. There are two conflict resolvers, one of which is chosen in 
> {{CacheConflictResolutionManagerImpl}} during cache start. For DEBUG level 
> {{DebugCacheVersionConflictResolverImpl}} is used, otherwise 
> {{CacheVersionConflictResolverImpl}} is chosen.
> If you enable or disable log debug level for conflict resolver during 
> runtime, switching of conflict resolver implementation is not performed and 
> you have to restart server node in order to provide necessary log level.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MvccUtils and cleanup enum RowData

2024-04-05 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

and all MvccUtils classes.

  was:
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS


> Remove MvccUtils and cleanup enum RowData
> -
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS
> and all MvccUtils classes.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-21145) Remove MVCC classes from package o.a.i.internal.processors.cache.tree.mvcc.*

2024-04-04 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17833899#comment-17833899
 ] 

Julia Bakulina commented on IGNITE-21145:
-

[~av] could you please review?

> Remove MVCC classes from package o.a.i.internal.processors.cache.tree.mvcc.*
> 
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Reopened] (IGNITE-21889) Remove TxState

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina reopened IGNITE-21889:
-

> Remove TxState
> --
>
> Key: IGNITE-21889
> URL: https://issues.apache.org/jira/browse/IGNITE-21889
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (IGNITE-21499) Removal of MvccSnapshot

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21499?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina reassigned IGNITE-21499:
---

Assignee: Julia Bakulina

> Removal of MvccSnapshot
> ---
>
> Key: IGNITE-21499
> URL: https://issues.apache.org/jira/browse/IGNITE-21499
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (IGNITE-21889) Remove TxState

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina resolved IGNITE-21889.
-
Resolution: Duplicate

> Remove TxState
> --
>
> Key: IGNITE-21889
> URL: https://issues.apache.org/jira/browse/IGNITE-21889
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (IGNITE-21345) TxState removal

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina reassigned IGNITE-21345:
---

Assignee: Julia Bakulina

> TxState removal
> ---
>
> Key: IGNITE-21345
> URL: https://issues.apache.org/jira/browse/IGNITE-21345
> Project: Ignite
>  Issue Type: Sub-task
>  Components: mvcc
>Reporter: Ilya Shishkov
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> Remove o.a.i.internal.processors.cache.mvcc.txlog.TxState (as a continuation 
> of the IGNITE-21130)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccSnapshot

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Ignite Flags:   (was: Docs Required,Release Notes Required)

> Remove MvccSnapshot
> ---
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete MvccSnapshot functionality



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-21889) Remove TxState

2024-03-29 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-21889:
---

 Summary: Remove TxState
 Key: IGNITE-21889
 URL: https://issues.apache.org/jira/browse/IGNITE-21889
 Project: Ignite
  Issue Type: Sub-task
Reporter: Julia Bakulina
Assignee: Julia Bakulina


Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21888) Remove MvccSnapshot

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21888?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21888:

Labels: ise  (was: )

> Remove MvccSnapshot
> ---
>
> Key: IGNITE-21888
> URL: https://issues.apache.org/jira/browse/IGNITE-21888
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete MvccSnapshot functionality



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21889) Remove TxState

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21889:

Labels: ise  (was: )

> Remove TxState
> --
>
> Key: IGNITE-21889
> URL: https://issues.apache.org/jira/browse/IGNITE-21889
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21889) Remove TxState

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21889:

Ignite Flags:   (was: Docs Required,Release Notes Required)

> Remove TxState
> --
>
> Key: IGNITE-21889
> URL: https://issues.apache.org/jira/browse/IGNITE-21889
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> Delete TxState



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MvccUtils and unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Labels: ise  (was: )

> Remove MvccUtils and unused MVCC classes from enum RowData
> --
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MvccUtils and unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Ignite Flags:   (was: Docs Required,Release Notes Required)

> Remove MvccUtils and unused MVCC classes from enum RowData
> --
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>  Labels: ise
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-21888) Remove MvccSnapshot

2024-03-29 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-21888:
---

 Summary: Remove MvccSnapshot
 Key: IGNITE-21888
 URL: https://issues.apache.org/jira/browse/IGNITE-21888
 Project: Ignite
  Issue Type: Sub-task
Reporter: Julia Bakulina
Assignee: Julia Bakulina


Delete MvccSnapshot functionality



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MvccUtils and unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary: Remove MvccUtils and unused MVCC classes from enum RowData  (was: 
Remove unused MVCC classes from enum RowData)

> Remove MvccUtils and unused MVCC classes from enum RowData
> --
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary: Remove unused MVCC classes from enum RowData  (was: Remove 
interface MvccIO and unused MVCC classes from enum RowData)

> Remove unused MVCC classes from enum RowData
> 
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete interface MvccIO.
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

  was:
To delete interface MvccIO.

To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS


> Remove unused MVCC classes from enum RowData
> 
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MvccIO and unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary: Remove MvccIO and unused MVCC classes from enum RowData  (was: 
Remove unused MVCC classes from enum RowData)

> Remove MvccIO and unused MVCC classes from enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove interface MvccIO and unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary: Remove interface MvccIO and unused MVCC classes from enum RowData  
(was: Remove MvccIO and unused MVCC classes from enum RowData)

> Remove interface MvccIO and unused MVCC classes from enum RowData
> -
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete interface MvccIO.
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MvccIO and unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete interface MvccIO.

To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

  was:
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS


> Remove MvccIO and unused MVCC classes from enum RowData
> ---
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete interface MvccIO.
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete unused Mvcc code from enum RowData:
 * LINK_ONLY
 * LINK_WITH_HEADER
 * NO_KEY_WTH_HINTS

  was:
To delete MVCC classes from package o.a.i.internal.pagemem.wal.record.*

- DataPageMvccMarkUpdatedRecord

- DataPageMvccUpdateNewTxStateHintRecord

- DataPageMvccUpdateTxStateHintRecord

- LazyMvccDataEntry

- MvccDataEntry

- MvccDataRecord

- MvccTxRecord

- UnwrapMvccDataEntry

 

To delete MVCC classes from package o.a.i.internal.processors.cache.mvcc.*

- MvccCoordinator

- MvccFuture

- MvccSnapshotFuture

- MvccSnapshotResponseListener

- MvccSnapshotWithoutTxs

- MvccVersion

- MvccVersionImpl


> Remove unused MVCC classes from enum RowData
> 
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete unused Mvcc code from enum RowData:
>  * LINK_ONLY
>  * LINK_WITH_HEADER
>  * NO_KEY_WTH_HINTS



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove unused MVCC classes from enum RowData

2024-03-29 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary: Remove unused MVCC classes from enum RowData  (was: Remove MVCC 
classes from package o.a.i.internal.processors.cache.mvcc)

> Remove unused MVCC classes from enum RowData
> 
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete MVCC classes from package o.a.i.internal.pagemem.wal.record.*
> - DataPageMvccMarkUpdatedRecord
> - DataPageMvccUpdateNewTxStateHintRecord
> - DataPageMvccUpdateTxStateHintRecord
> - LazyMvccDataEntry
> - MvccDataEntry
> - MvccDataRecord
> - MvccTxRecord
> - UnwrapMvccDataEntry
>  
> To delete MVCC classes from package o.a.i.internal.processors.cache.mvcc.*
> - MvccCoordinator
> - MvccFuture
> - MvccSnapshotFuture
> - MvccSnapshotResponseListener
> - MvccSnapshotWithoutTxs
> - MvccVersion
> - MvccVersionImpl



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MVCC classes from package o.a.i.internal.processors.cache.mvcc

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Description: 
To delete MVCC classes from package o.a.i.internal.pagemem.wal.record.*

- DataPageMvccMarkUpdatedRecord

- DataPageMvccUpdateNewTxStateHintRecord

- DataPageMvccUpdateTxStateHintRecord

- LazyMvccDataEntry

- MvccDataEntry

- MvccDataRecord

- MvccTxRecord

- UnwrapMvccDataEntry

 

To delete MVCC classes from package o.a.i.internal.processors.cache.mvcc.*

- MvccCoordinator

- MvccFuture

- MvccSnapshotFuture

- MvccSnapshotResponseListener

- MvccSnapshotWithoutTxs

- MvccVersion

- MvccVersionImpl

> Remove MVCC classes from package o.a.i.internal.processors.cache.mvcc
> -
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>
> To delete MVCC classes from package o.a.i.internal.pagemem.wal.record.*
> - DataPageMvccMarkUpdatedRecord
> - DataPageMvccUpdateNewTxStateHintRecord
> - DataPageMvccUpdateTxStateHintRecord
> - LazyMvccDataEntry
> - MvccDataEntry
> - MvccDataRecord
> - MvccTxRecord
> - UnwrapMvccDataEntry
>  
> To delete MVCC classes from package o.a.i.internal.processors.cache.mvcc.*
> - MvccCoordinator
> - MvccFuture
> - MvccSnapshotFuture
> - MvccSnapshotResponseListener
> - MvccSnapshotWithoutTxs
> - MvccVersion
> - MvccVersionImpl



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21835) Remove MVCC classes from package o.a.i.internal.processors.cache.mvcc

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21835?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21835:

Summary: Remove MVCC classes from package 
o.a.i.internal.processors.cache.mvcc  (was: Remove Mvcc code from package 
o.a.i.internal.processors.cache.mvcc)

> Remove MVCC classes from package o.a.i.internal.processors.cache.mvcc
> -
>
> Key: IGNITE-21835
> URL: https://issues.apache.org/jira/browse/IGNITE-21835
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Major
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-21835) Remove Mvcc code from package o.a.i.internal.processors.cache.mvcc

2024-03-22 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-21835:
---

 Summary: Remove Mvcc code from package 
o.a.i.internal.processors.cache.mvcc
 Key: IGNITE-21835
 URL: https://issues.apache.org/jira/browse/IGNITE-21835
 Project: Ignite
  Issue Type: Sub-task
Reporter: Julia Bakulina
Assignee: Julia Bakulina






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) Remove MVCC classes from package o.a.i.internal.processors.cache.tree.mvcc.*

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Summary: Remove MVCC classes from package 
o.a.i.internal.processors.cache.tree.mvcc.*  (was: Delete all classes from 
org/apache/ignite/internal/processors/cache/tree/mvcc/)

> Remove MVCC classes from package o.a.i.internal.processors.cache.tree.mvcc.*
> 
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) Delete all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Summary: Delete all classes from 
org/apache/ignite/internal/processors/cache/tree/mvcc/  (was: Remove all 
classes from org/apache/ignite/internal/processors/cache/tree/mvcc/)

> Delete all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/
> --
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) Remove all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

External issue ID: https://github.com/apache/ignite/pull/11282

> Remove all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/
> --
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) Remove all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

External issue ID:   (was: https://github.com/apache/ignite/pull/11282)

> Remove all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/
> --
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) Remove folders

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Summary: Remove folders   (was: MvccDataInnerIO removal)

> Remove folders 
> ---
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) Remove all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Summary: Remove all classes from 
org/apache/ignite/internal/processors/cache/tree/mvcc/  (was: Remove folders )

> Remove all classes from org/apache/ignite/internal/processors/cache/tree/mvcc/
> --
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) MvccDataInnerIO removal

2024-03-22 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

External issue URL: https://github.com/apache/ignite/pull/11282  (was: 
https://github.com/apache/ignite/pull/11131)

> MvccDataInnerIO removal
> ---
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) MvccDataInnerIO removal

2024-03-21 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Description: 
Delete all classes from:

1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType

2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
 * MvccDataPageClosure
 * MvccFirstRowTreeClosure
 * MvccLinkAwareSearchRow
 * MvccMaxSearchRow
 * MvccMinSearchRow
 * MvccSearchRow
 * MvccSnapshotSearchRow
 * MvccTreeClosure

  was:
Delete all classes from 
org/apache/ignite/internal/processors/cache/tree/mvcc/data:
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType


> MvccDataInnerIO removal
> ---
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from:
> 1) org/apache/ignite/internal/processors/cache/tree/mvcc/data
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType
> 2) org/apache/ignite/internal/processors/cache/tree/mvcc/search
>  * MvccDataPageClosure
>  * MvccFirstRowTreeClosure
>  * MvccLinkAwareSearchRow
>  * MvccMaxSearchRow
>  * MvccMinSearchRow
>  * MvccSearchRow
>  * MvccSnapshotSearchRow
>  * MvccTreeClosure



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) MvccDataInnerIO removal

2024-03-21 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Description: 
Delete all classes from 
org/apache/ignite/internal/processors/cache/tree/mvcc/data:
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType

  was:
Delete all classes from 
src/main/java/org/apache/ignite/internal/processors/cache/tree/mvcc/data:
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType


> MvccDataInnerIO removal
> ---
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from 
> org/apache/ignite/internal/processors/cache/tree/mvcc/data:
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) MvccDataInnerIO removal

2024-03-21 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Description: 
Delete all classes from 
src/main/java/org/apache/ignite/internal/processors/cache/tree/mvcc/data:
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType

  was:
Remove all classes from 
src/main/java/org/apache/ignite/internal/processors/cache/tree/mvcc/data:
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType


> MvccDataInnerIO removal
> ---
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Delete all classes from 
> src/main/java/org/apache/ignite/internal/processors/cache/tree/mvcc/data:
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21145) MvccDataInnerIO removal

2024-03-21 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21145:

Description: 
Remove all classes from 
src/main/java/org/apache/ignite/internal/processors/cache/tree/mvcc/data:
 * MvccCacheIdAwareDataInnerIO
 * MvccCacheIdAwareDataLeafIO
 * MvccDataInnerIO
 * MvccDataLeafIO
 * MvccDataRow
 * MvccUpdateDataRow
 * MvccUpdateResult
 * ResultType

  was:Remove MvccDataInnerIO


> MvccDataInnerIO removal
> ---
>
> Key: IGNITE-21145
> URL: https://issues.apache.org/jira/browse/IGNITE-21145
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Remove all classes from 
> src/main/java/org/apache/ignite/internal/processors/cache/tree/mvcc/data:
>  * MvccCacheIdAwareDataInnerIO
>  * MvccCacheIdAwareDataLeafIO
>  * MvccDataInnerIO
>  * MvccDataLeafIO
>  * MvccDataRow
>  * MvccUpdateDataRow
>  * MvccUpdateResult
>  * ResultType



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-21087) Remove VacuumTask, MvccQueryTracker and MvccLongList

2024-03-19 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-21087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17828237#comment-17828237
 ] 

Julia Bakulina commented on IGNITE-21087:
-

[~av] could you please review my PR?

> Remove VacuumTask, MvccQueryTracker and MvccLongList
> 
>
> Key: IGNITE-21087
> URL: https://issues.apache.org/jira/browse/IGNITE-21087
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Classes to delete:
>  * VacuumTask
>  * VacuumMetricsReducer
>  * VacuumMetrics
>  * PreviousQueries
>  * MvccEmptyLongList
>  * MvccLongList
>  * MvccCoordinatorChangeAware
>  * MvccQueryTracker
>  * MvccQueryTrackerImpl
>  * StaticMvccQueryTracker



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21087) Remove VacuumTask, MvccQueryTracker and MvccLongList

2024-03-18 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21087?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21087:

Description: 
Classes to delete:
 * VacuumTask
 * VacuumMetricsReducer
 * VacuumMetrics
 * PreviousQueries
 * MvccEmptyLongList
 * MvccLongList
 * MvccCoordinatorChangeAware
 * MvccQueryTracker
 * MvccQueryTrackerImpl
 * StaticMvccQueryTracker

  was:
Deleted classes:
 * VacuumTask
 * VacuumMetricsReducer
 * VacuumMetrics
 * PreviousQueries
 * MvccEmptyLongList
 * MvccLongList
 * MvccCoordinatorChangeAware
 * MvccQueryTracker
 * MvccQueryTrackerImpl
 * StaticMvccQueryTracker


> Remove VacuumTask, MvccQueryTracker and MvccLongList
> 
>
> Key: IGNITE-21087
> URL: https://issues.apache.org/jira/browse/IGNITE-21087
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Classes to delete:
>  * VacuumTask
>  * VacuumMetricsReducer
>  * VacuumMetrics
>  * PreviousQueries
>  * MvccEmptyLongList
>  * MvccLongList
>  * MvccCoordinatorChangeAware
>  * MvccQueryTracker
>  * MvccQueryTrackerImpl
>  * StaticMvccQueryTracker



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21087) Remove VacuumTask, MvccQueryTracker and MvccLongList

2024-03-14 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21087?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21087:

Summary: Remove VacuumTask, MvccQueryTracker and MvccLongList  (was: 
VacuumTask removal)

> Remove VacuumTask, MvccQueryTracker and MvccLongList
> 
>
> Key: IGNITE-21087
> URL: https://issues.apache.org/jira/browse/IGNITE-21087
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Deleted classes:
>  * VacuumTask
>  * VacuumMetricsReducer
>  * VacuumMetrics
>  * PreviousQueries
>  * MvccEmptyLongList
>  * MvccLongList
>  * MvccCoordinatorChangeAware
>  * MvccQueryTracker
>  * MvccQueryTrackerImpl
>  * StaticMvccQueryTracker



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21087) VacuumTask removal

2024-03-14 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21087?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21087:

Description: 
Deleted classes:
 * VacuumTask
 * VacuumMetricsReducer
 * VacuumMetrics
 * PreviousQueries
 * MvccEmptyLongList
 * MvccLongList
 * MvccCoordinatorChangeAware
 * MvccQueryTracker
 * MvccQueryTrackerImpl
 * StaticMvccQueryTracker

  was:
Remove VacuumTask and MvccTxEntry.

Deleted classes:
 * VacuumTask
 * VacuumMetricsReducer
 * VacuumMetrics
 * PreviousQueries
 * MvccTxEntry


> VacuumTask removal
> --
>
> Key: IGNITE-21087
> URL: https://issues.apache.org/jira/browse/IGNITE-21087
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Deleted classes:
>  * VacuumTask
>  * VacuumMetricsReducer
>  * VacuumMetrics
>  * PreviousQueries
>  * MvccEmptyLongList
>  * MvccLongList
>  * MvccCoordinatorChangeAware
>  * MvccQueryTracker
>  * MvccQueryTrackerImpl
>  * StaticMvccQueryTracker



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] (IGNITE-21087) VacuumTask removal

2024-03-14 Thread Julia Bakulina (Jira)


[ https://issues.apache.org/jira/browse/IGNITE-21087 ]


Julia Bakulina deleted comment on IGNITE-21087:
-

was (Author: JIRAUSER294860):
TCbot2 green visa: 
https://tcbot2.sbt-ignite-dev.ru/pr.html?serverId=apache=IgniteTests24Java8_RunAll=pull/11273/head=Latest

> VacuumTask removal
> --
>
> Key: IGNITE-21087
> URL: https://issues.apache.org/jira/browse/IGNITE-21087
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Remove VacuumTask and MvccTxEntry.
> Deleted classes:
>  * VacuumTask
>  * VacuumMetricsReducer
>  * VacuumMetrics
>  * PreviousQueries
>  * MvccTxEntry



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-21087) VacuumTask removal

2024-03-14 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-21087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17827025#comment-17827025
 ] 

Julia Bakulina commented on IGNITE-21087:
-

TCbot2 green visa: 
https://tcbot2.sbt-ignite-dev.ru/pr.html?serverId=apache=IgniteTests24Java8_RunAll=pull/11273/head=Latest

> VacuumTask removal
> --
>
> Key: IGNITE-21087
> URL: https://issues.apache.org/jira/browse/IGNITE-21087
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Remove VacuumTask and MvccTxEntry.
> Deleted classes:
>  * VacuumTask
>  * VacuumMetricsReducer
>  * VacuumMetrics
>  * PreviousQueries
>  * MvccTxEntry



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-21425) Update examples in Data Modeling - Affinity Colocation

2024-02-02 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-21425:
---

 Summary: Update examples in Data Modeling - Affinity Colocation
 Key: IGNITE-21425
 URL: https://issues.apache.org/jira/browse/IGNITE-21425
 Project: Ignite
  Issue Type: Improvement
Reporter: Julia Bakulina
Assignee: Julia Bakulina


There are some mistakes in the examples. We should correct them



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21406) Add examples to Binary Marshaller in Data Modeling docs

2024-01-31 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21406:

Description: 
1) Add example to platform types for thin clients. The analogue that is 
currently in the docs: 
[https://ignite.apache.org/docs/latest/data-modeling/binary-marshaller]

Java
{code:java}
// Create a regular Person object and put it to the cache.
Person person = buildPerson(personId);
ignite.cache("myCache").put(personId, person);
 
// Get an instance of binary-enabled cache.
IgniteCache binaryCache = 
ignite.cache("myCache").withKeepBinary();
 
// Get the above person object in the BinaryObject format.
BinaryObject binaryPerson = binaryCache.get(personId);{code}
2) Add examples for Java and .NET to Configuring Binary Objects.
The example in XML is below: 
{code:java}












{code}

  was:
1) Add example to platform types for thin clients. The analogue that is 
currently in the docs: 
https://ignite.apache.org/docs/latest/data-modeling/binary-marshaller

Java
{panel}
{panel}
|{{// Create a regular Person object and put it to the cache.}}
{{Person person = buildPerson(personId);}}
{{{}ignite.cache({}}}{{{}"myCache"{}}}{{{}).put(personId, person);{}}}
 
{{// Get an instance of binary-enabled cache.}}
{{{}IgniteCache binaryCache = 
ignite.cache({}}}{{{}"myCache"{}}}{{{}).withKeepBinary();{}}}
 
{{// Get the above person object in the BinaryObject format.}}
{{BinaryObject binaryPerson = binaryCache.get(personId);}}|


> Add examples to Binary Marshaller in Data Modeling docs
> ---
>
> Key: IGNITE-21406
> URL: https://issues.apache.org/jira/browse/IGNITE-21406
> Project: Ignite
>  Issue Type: Improvement
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> 1) Add example to platform types for thin clients. The analogue that is 
> currently in the docs: 
> [https://ignite.apache.org/docs/latest/data-modeling/binary-marshaller]
> Java
> {code:java}
> // Create a regular Person object and put it to the cache.
> Person person = buildPerson(personId);
> ignite.cache("myCache").put(personId, person);
>  
> // Get an instance of binary-enabled cache.
> IgniteCache binaryCache = 
> ignite.cache("myCache").withKeepBinary();
>  
> // Get the above person object in the BinaryObject format.
> BinaryObject binaryPerson = binaryCache.get(personId);{code}
> 2) Add examples for Java and .NET to Configuring Binary Objects.
> The example in XML is below: 
> {code:java}
>  class="org.apache.ignite.configuration.IgniteConfiguration">
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21406) Add examples to Binary Marshaller in Data Modeling docs

2024-01-31 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21406:

Ignite Flags:   (was: Docs Required,Release Notes Required)

> Add examples to Binary Marshaller in Data Modeling docs
> ---
>
> Key: IGNITE-21406
> URL: https://issues.apache.org/jira/browse/IGNITE-21406
> Project: Ignite
>  Issue Type: Improvement
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>
> 1) Add example to platform types for thin clients. The analogue that is 
> currently in the docs: 
> [https://ignite.apache.org/docs/latest/data-modeling/binary-marshaller]
> Java
> {code:java}
> // Create a regular Person object and put it to the cache.
> Person person = buildPerson(personId);
> ignite.cache("myCache").put(personId, person);
>  
> // Get an instance of binary-enabled cache.
> IgniteCache binaryCache = 
> ignite.cache("myCache").withKeepBinary();
>  
> // Get the above person object in the BinaryObject format.
> BinaryObject binaryPerson = binaryCache.get(personId);{code}
> 2) Add examples for Java and .NET to Configuring Binary Objects.
> The example in XML is below: 
> {code:java}
>  class="org.apache.ignite.configuration.IgniteConfiguration">
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-21406) Add examples to Binary Marshaller in Data Modeling docs

2024-01-31 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-21406:
---

 Summary: Add examples to Binary Marshaller in Data Modeling docs
 Key: IGNITE-21406
 URL: https://issues.apache.org/jira/browse/IGNITE-21406
 Project: Ignite
  Issue Type: Improvement
Reporter: Julia Bakulina
Assignee: Julia Bakulina


1) Add example to platform types for thin clients. The analogue that is 
currently in the docs: 
https://ignite.apache.org/docs/latest/data-modeling/binary-marshaller

Java
{panel}
{panel}
|{{// Create a regular Person object and put it to the cache.}}
{{Person person = buildPerson(personId);}}
{{{}ignite.cache({}}}{{{}"myCache"{}}}{{{}).put(personId, person);{}}}
 
{{// Get an instance of binary-enabled cache.}}
{{{}IgniteCache binaryCache = 
ignite.cache({}}}{{{}"myCache"{}}}{{{}).withKeepBinary();{}}}
 
{{// Get the above person object in the BinaryObject format.}}
{{BinaryObject binaryPerson = binaryCache.get(personId);}}|



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21274) Add docs on implementing events in java thin client

2024-01-16 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21274?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21274:

Description: The docs to the feature of implementing events in java thin 
client are required

> Add docs on implementing events in java thin client
> ---
>
> Key: IGNITE-21274
> URL: https://issues.apache.org/jira/browse/IGNITE-21274
> Project: Ignite
>  Issue Type: Improvement
>  Components: documentation, thin client
>Reporter: Julia Bakulina
>Priority: Major
>  Labels: important, ise
> Fix For: 2.17
>
>
> The docs to the feature of implementing events in java thin client are 
> required



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-21274) Add docs on implementing events in java thin client

2024-01-16 Thread Julia Bakulina (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-21274?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julia Bakulina updated IGNITE-21274:

Fix Version/s: 2.17

> Add docs on implementing events in java thin client
> ---
>
> Key: IGNITE-21274
> URL: https://issues.apache.org/jira/browse/IGNITE-21274
> Project: Ignite
>  Issue Type: Improvement
>  Components: documentation, thin client
>Reporter: Julia Bakulina
>Priority: Major
>  Labels: important, ise
> Fix For: 2.17
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (IGNITE-21274) Add docs on implementing events in java thin client

2024-01-16 Thread Julia Bakulina (Jira)
Julia Bakulina created IGNITE-21274:
---

 Summary: Add docs on implementing events in java thin client
 Key: IGNITE-21274
 URL: https://issues.apache.org/jira/browse/IGNITE-21274
 Project: Ignite
  Issue Type: Improvement
  Components: documentation, thin client
Reporter: Julia Bakulina






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (IGNITE-21093) MvccMessage removal

2023-12-29 Thread Julia Bakulina (Jira)


[ 
https://issues.apache.org/jira/browse/IGNITE-21093?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17801140#comment-17801140
 ] 

Julia Bakulina commented on IGNITE-21093:
-

Hi [~av], could you please review the PR? [~shishkovilja] has approved the 
changes

> MvccMessage removal
> ---
>
> Key: IGNITE-21093
> URL: https://issues.apache.org/jira/browse/IGNITE-21093
> Project: Ignite
>  Issue Type: Sub-task
>Reporter: Julia Bakulina
>Assignee: Julia Bakulina
>Priority: Minor
>  Labels: ise
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Remove MvccMessage
> All classes in 
> modules/core/src/main/java/org/apache/ignite/internal/processors/cache/mvcc/msg
>  are deleted:
>  * MvccAckRequestQueryId
>  * MvccAckRequestQueryCntr
>  * MvccAckRequestTxAndQueryCntr
>  * MvccAckRequestTxAndQueryId
>  * MvccActiveQueriesMessage
>  * MvccFutureResponse
>  * MvccMessage
>  * MvccQuerySnapshotRequest
>  * MvccRecoveryFinishedMessage
>  * MvccAckRequestTx
>  * MvccSnapshotResponse
>  * MvccSnapshotRequest



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


  1   2   3   >