Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement global (within factory) state for alternating connections #3081

Merged
merged 3 commits into from
Feb 3, 2025

Conversation

ohadzeliger
Copy link
Contributor

This fixes an issue with the connection factory where YAML tests with a single statement always ended up using the same connection number.

@ohadzeliger ohadzeliger self-assigned this Jan 31, 2025
… to make console output reflect client-side log only (less chatty)
@foundationdb-ci
Copy link
Contributor

Result of fdb-record-layer-pr on Linux CentOS 7

  • Commit ID: f0188bb
  • Duration 0:57:20
  • Result: ✅ SUCCEEDED
  • Error: N/A
  • Build Log terminal output (available for 30 days)
  • Build Workspace zip file of the working directory (available for 30 days)

@foundationdb-ci
Copy link
Contributor

Result of fdb-record-layer-pr on Linux CentOS 7

  • Commit ID: 5a0b6a9
  • Duration 0:56:22
  • Result: ✅ SUCCEEDED
  • Error: N/A
  • Build Log terminal output (available for 30 days)
  • Build Workspace zip file of the working directory (available for 30 days)

@ohadzeliger ohadzeliger marked this pull request as ready for review January 31, 2025 18:12
case DEFAULT:
return DEFAULT_CONNECTION;
case ALTERNATE:
return currentConnection.addAndGet(1) % (1 + alternateFactories.size());
Copy link
Collaborator

Choose a reason for hiding this comment

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

This doesn't look right. Why are you doing 1+ here. If you have 2 connections, and initialConnection is 0 I think this would return:

  1. 0 + 1 % 3 -> 1
  2. 1 + 1 % 3 -> 2
  3. 2 + 1 % 3 -> 0
  4. 3 + 1 % 3 -> 1

But 2 is not valid.
And returning 1 seems wrong.

But, if my reading is right, this would fail tests, so maybe I'm wrong.

It might be clearer with

currentConnection.getAndUpdate(i -> (i + 1) % alternateFactories.size());

Copy link
Contributor Author

Choose a reason for hiding this comment

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

the 1 is to account for the primary connection. Normally, we would have 1 defaultFactory and 1 alternateFactory in the list.
It is incrementing prematurely, though, so the right statement is:
currentConnection.getAndAdd(1) % (1 + alternateFactories.size())
or
currentConnection.getAndUpdate(i -> (i + 1) % (1 + alternateFactories.size()))

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The difference is that the % is either accounted for in the counter or after the fact - I thought it is nice that it actually count the entire number of connections created, but don't have strong opinion on that

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Added field for the total number of connections, hopefully this will make it easier to follow.
Changed the logic to modulo the current connection to be within the range of the number of factories

Copy link
Collaborator

Choose a reason for hiding this comment

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

Oh, yeah, that is where I was confused, the fact that there is the "default" and the alternate.

classUnderTest.getNewConnection(URI.create("Blah"));
assertEquals(ic + 1, classUnderTest.getCurrentConnection());
classUnderTest.getNewConnection(URI.create("Blah"));
assertEquals(ic + 2, classUnderTest.getCurrentConnection());
Copy link
Collaborator

Choose a reason for hiding this comment

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

I wonder whether it would make sense to try and have a more integrated test, similar to SupportedVersionTest, where the test would fail if it did anything other than alternate.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Not sure what you mean. Does the added coverage meet that?

Copy link
Collaborator

Choose a reason for hiding this comment

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

I was thinking something that has an actual .yamsql file, and would fail if it did anything other than alternate connections. But I think that would be a lot of work, and not a lot of additional coverage.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I see. That's a good idea, but like you said, may take some time. I'll keep it around for future improvements?

- Change logic to have selector reflect the next connection returned
- Modulo the connection number instead of a counter
- Add constant for total number of connections
- Add tests for actual alternating of initial connections
- limit initial connection to pool size
@foundationdb-ci
Copy link
Contributor

Result of fdb-record-layer-pr on Linux CentOS 7

  • Commit ID: 0a5e664
  • Duration 0:57:23
  • Result: ✅ SUCCEEDED
  • Error: N/A
  • Build Log terminal output (available for 30 days)
  • Build Workspace zip file of the working directory (available for 30 days)

case DEFAULT:
return DEFAULT_CONNECTION;
case ALTERNATE:
return currentConnection.addAndGet(1) % (1 + alternateFactories.size());
Copy link
Collaborator

Choose a reason for hiding this comment

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

Oh, yeah, that is where I was confused, the fact that there is the "default" and the alternate.

classUnderTest.getNewConnection(URI.create("Blah"));
assertEquals(ic + 1, classUnderTest.getCurrentConnection());
classUnderTest.getNewConnection(URI.create("Blah"));
assertEquals(ic + 2, classUnderTest.getCurrentConnection());
Copy link
Collaborator

Choose a reason for hiding this comment

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

I was thinking something that has an actual .yamsql file, and would fail if it did anything other than alternate connections. But I think that would be a lot of work, and not a lot of additional coverage.

@ohadzeliger ohadzeliger merged commit c8fc2a6 into FoundationDB:main Feb 3, 2025
2 checks passed
@ohadzeliger ohadzeliger deleted the better-alternate branch February 3, 2025 17:03
@ScottDugas ScottDugas added the testing improvement Change that improves our testing label Feb 17, 2025
@ScottDugas ScottDugas changed the title Implement global (within factory) state for alternating connections. Implement global (within factory) state for alternating connections Feb 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
testing improvement Change that improves our testing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants