Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

[Named min timestamp leases] Modify client API #7386

Merged
merged 3 commits into from
Oct 21, 2024

Conversation

ergo14
Copy link
Contributor

@ergo14 ergo14 commented Oct 21, 2024

General

Before this PR:
The expected usage will be that upstream code will aggregate all the acquiring required on a transaction level and submit them. At that point, we would like to have a single lock for all the things acquired.
After this PR:
Adapt client API to expectations upstream and new timelock API
==COMMIT_MSG==
==COMMIT_MSG==

Priority:
P1
Concerns / possible downsides (what feedback would you like?):

Is documentation needed?:

Compatibility

Does this PR create any API breaks (e.g. at the Java or HTTP layers) - if so, do we have compatibility?:
Internal
Does this PR change the persisted format of any data - if so, do we have forward and backward compatibility?:
No
The code in this PR may be part of a blue-green deploy. Can upgrades from previous versions safely coexist? (Consider restarts of blue or green nodes.):
Yes
Does this PR rely on statements being true about other products at a deployment - if so, do we have correct product dependencies on these products (or other ways of verifying that these statements are true)?:
No
Does this PR need a schema migration?
No

Testing and Correctness

What, if any, assumptions are made about the current state of the world? If they change over time, how will we find out?:
N/A
What was existing testing like? What have you done to improve it?:
N/A
If this PR contains complex concurrent or asynchronous code, is it correct? The onus is on the PR writer to demonstrate this.:
N/A
If this PR involves acquiring locks or other shared resources, how do we ensure that these are always released?:
N/A

Execution

How would I tell this PR works in production? (Metrics, logs, etc.):
No op
Has the safety of all log arguments been decided correctly?:
Yes
Will this change significantly affect our spending on metrics or logs?:
No
How would I tell that this PR does not work in production? (monitors, etc.):
No op
If this PR does not work as expected, how do I fix that state? Would rollback be straightforward?:
Rollback
If the above plan is more complex than “recall and rollback”, please tag the support PoC here (if it is the end of the week, tag both the current and next PoC):

Scale

Would this PR be expected to pose a risk at scale? Think of the shopping product at our largest stack.:
No
Would this PR be expected to perform a large number of database calls, and/or expensive database calls (e.g., row range scans, concurrent CAS)?:
No
Would this PR ever, with time and scale, become the wrong thing to do - and if so, how would we know that we need to do something differently?:

Development Process

Where should we start reviewing?:

If this PR is in excess of 500 lines excluding versions lock-files, why does it not make sense to split it?:

Please tag any other people who should be aware of this PR:
@jeremyk-91
@raiju

@ergo14 ergo14 changed the title Modify client API [Named min timestamp Leases] Modify client API Oct 21, 2024
@ergo14 ergo14 marked this pull request as ready for review October 21, 2024 08:05
@@ -115,15 +117,17 @@ default List<StartIdentifiedAtlasDbTransactionResponse> startIdentifiedAtlasDbTr

/**
* Acquires a lease on a named timestamp. The lease is taken out with a new fresh timestamp.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"named timestamps"

*/
@RestrictedApi(
explanation =
"This method is for internal Atlas and internal library use only. Clients MUST NOT use it unless"
+ " given explicit approval. Mis-use can result in SEVERE DATA CORRUPTION and the API contract"
+ " is subject to change at any time.",
allowlistAnnotations = ReviewedRestrictedApiUsage.class)
AcquireNamedMinTimestampLeaseResult acquireNamedMinTimestampLease(String timestampName, int numFreshTimestamps);
TimestampLeaseResults acquireTimestampLeases(Map<TimestampLeaseName, Integer> requests);

/**
* Returns the smallest leased timestamp in the associated named collection at the time of the call.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"the smallest leased timestamps for the reqeuested names?

@ergo14 ergo14 changed the base branch from aa-nmtl-new-capi to develop October 21, 2024 15:31
@ergo14 ergo14 force-pushed the aa-nmtl-modify-client-api branch from 4bdb410 to 6fcacd8 Compare October 21, 2024 15:41
@bulldozer-bot bulldozer-bot bot merged commit 028bdff into develop Oct 21, 2024
21 checks passed
@ergo14 ergo14 changed the title [Named min timestamp Leases] Modify client API [Named min timestamp leases] Modify client API Oct 22, 2024
Copy link
Contributor

@jeremyk-91 jeremyk-91 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 only docs suggestions

* Acquires a lease on named timestamps. The lease is taken out with a new fresh timestamp.
* The timestamps supplied are fresh timestamps obtained strictly after the lease is taken out.
* The supplier returns exactly the number of timestamps requested and throws on any additional
* interactions.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A general philosophy question: I think this specification should exist on the underlying TimestampLeaseResult object? Not clear where there's a supplier here (or, if we change the implementation of TimestampLeaseResults for some reason, then there may not be an actual supplier.)

.get();

// it is crucial that the timestamps acquired are AFTER the timestamp used for locking
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes - would it make sense to leave a brief note as to why?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants