Ivan Bessonov created IGNITE-24784:
--------------------------------------

             Summary: Idempotent command cache eviction timestamp calculation 
is broken
                 Key: IGNITE-24784
                 URL: https://issues.apache.org/jira/browse/IGNITE-24784
             Project: Ignite
          Issue Type: Bug
            Reporter: Ivan Bessonov
            Assignee: Ivan Bessonov


Current code:
{code:java}
vacuumizationAction.accept(hybridTimestamp(clockService.nowLong()
        - (idempotentCacheTtl.value() + clockService.maxClockSkewMillis()))); 
{code}
Must be:
{code:java}
vacuumizationAction.accept(hybridTimestamp(clockService.nowLong())
        .subtractPhysicalTime(idempotentCacheTtl.value() + 
clockService.maxClockSkewMillis())); {code}



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

Reply via email to