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

api: block Connect() on failure if Reconnect > 0 #437

Merged
merged 1 commit into from
Mar 28, 2025

Conversation

ImeevMA
Copy link

@ImeevMA ImeevMA commented Mar 26, 2025

This patch makes Connect() retry connection attempts if opts.Reconnect is greater than 0. The delay between connection attempts is opts.Reconnect. If opts.MaxReconnects > 0 then the maximum number of attempts is equal to it, otherwise the maximum number of attempts is unlimited. Connect() now also blocks until a connection is established, provided context is cancelled or the number of attempts is exhausted.

Closes #436

What has been done? Why? What problem is being solved?

Connect() now handles connection retries on its own. This simplifies connecting to Tarantool instances when there is no guarantee that the connection will be established on the first try.

I didn't forget about (remove if it is not applicable):

Related issues: #436

@ImeevMA ImeevMA force-pushed the imeevma/gh-436-block-connect branch 2 times, most recently from a36c366 to 9149711 Compare March 26, 2025 13:30
Copy link
Collaborator

@oleg-jukovec oleg-jukovec left a comment

Choose a reason for hiding this comment

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

Thanks for the patch. Overall the idea is good, but there are a couple of issues with the implementation.

@ImeevMA ImeevMA force-pushed the imeevma/gh-436-block-connect branch from 9149711 to fae7507 Compare March 27, 2025 07:17
@ImeevMA ImeevMA requested a review from oleg-jukovec March 27, 2025 07:36
@ImeevMA ImeevMA force-pushed the imeevma/gh-436-block-connect branch 3 times, most recently from e491e64 to 30f5ed8 Compare March 27, 2025 12:05
@locker locker removed their request for review March 27, 2025 13:42
@locker locker removed their assignment Mar 27, 2025
Copy link
Collaborator

@oleg-jukovec oleg-jukovec left a comment

Choose a reason for hiding this comment

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

I have a few non-critical comments.

@ImeevMA ImeevMA force-pushed the imeevma/gh-436-block-connect branch from 30f5ed8 to be60c41 Compare March 28, 2025 09:41
@ImeevMA ImeevMA requested a review from oleg-jukovec March 28, 2025 09:44
@oleg-jukovec oleg-jukovec requested review from patapenka-alexey and removed request for DerekBum March 28, 2025 12:55
Comment on lines 4045 to 4047
if err.Error() != exp {
t.Fatalf("Expected '%s', got '%v'", exp, err)
}
Copy link

@patapenka-alexey patapenka-alexey Mar 28, 2025

Choose a reason for hiding this comment

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

Suggested change
if err.Error() != exp {
t.Fatalf("Expected '%s', got '%v'", exp, err)
}
assert.EqualError(t, err, exp)

Maybe we can use this? And in all other places.

Copy link
Author

@ImeevMA ImeevMA Mar 28, 2025

Choose a reason for hiding this comment

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

Fixed:

diff --git a/tarantool_test.go b/tarantool_test.go
index 741e0a4..3f1e90e 100644
--- a/tarantool_test.go
+++ b/tarantool_test.go
@@ -4013,15 +4013,9 @@ func TestConnectIsBlocked(t *testing.T) {
 	reconnectOpts.Reconnect = 100 * time.Millisecond
 	reconnectOpts.MaxReconnects = 100
 	conn, err := Connect(ctx, mockDialer, reconnectOpts)
-	if err != nil {
-		t.Fatalf("Connection was not established: %v", err)
-	}
-
+	assert.Nil(t, err)
 	conn.Close()
-
-	if counter < 10 {
-		t.Fatalf("Expected no less than 10, got %d", counter)
-	}
+	assert.GreaterOrEqual(t, counter, 10)
 }
 
 func TestConnectIsBlockedUntilContextExpires(t *testing.T) {
@@ -4037,14 +4031,8 @@ func TestConnectIsBlockedUntilContextExpires(t *testing.T) {
 	reconnectOpts.Reconnect = 100 * time.Millisecond
 	reconnectOpts.MaxReconnects = 100
 	_, err := Connect(ctx, testDialer, reconnectOpts)
-	if err == nil {
-		t.Fatal("Connection was unexpectedly established.")
-	}
-
-	exp := "failed to dial: dial tcp 127.0.0.1:3015: i/o timeout"
-	if err.Error() != exp {
-		t.Fatalf("Expected '%s', got '%v'", exp, err)
-	}
+	assert.NotNil(t, err)
+	assert.ErrorContains(t, err, "failed to dial: dial tcp 127.0.0.1:3015: i/o timeout")
 }
 
 func TestConnectIsUnblockedAfterMaxAttempts(t *testing.T) {
@@ -4060,14 +4048,8 @@ func TestConnectIsUnblockedAfterMaxAttempts(t *testing.T) {
 	reconnectOpts.Reconnect = 100 * time.Millisecond
 	reconnectOpts.MaxReconnects = 1
 	_, err := Connect(ctx, testDialer, reconnectOpts)
-	if err == nil {
-		t.Fatal("Connection was unexpectedly established.")
-	}
-
-	exp := "last reconnect failed"
-	if !strings.Contains(err.Error(), exp) {
-		t.Fatalf("Expected '%s', got '%v'", exp, err)
-	}
+	assert.NotNil(t, err)
+	assert.ErrorContains(t, err, "last reconnect failed")
 }
 
 func buildSidecar(dir string) error {

@ImeevMA ImeevMA removed the request for review from unera March 28, 2025 13:12
@ImeevMA ImeevMA force-pushed the imeevma/gh-436-block-connect branch from be60c41 to 2350cb9 Compare March 28, 2025 13:21
This patch makes Connect() retry connection attempts if opts.Reconnect
is greater than 0. The delay between connection attempts is
opts.Reconnect. If opts.MaxReconnects > 0 then the maximum number of
attempts is equal to it, otherwise the maximum number of attempts is
unlimited. Connect() now also blocks until a connection is established,
provided context is cancelled or the number of attempts is exhausted.

Closes #436
@ImeevMA ImeevMA force-pushed the imeevma/gh-436-block-connect branch from 2350cb9 to 2811326 Compare March 28, 2025 13:23
Copy link

@patapenka-alexey patapenka-alexey left a comment

Choose a reason for hiding this comment

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

LGTM!

@oleg-jukovec oleg-jukovec merged commit c0a8ad3 into master Mar 28, 2025
26 checks passed
@oleg-jukovec oleg-jukovec deleted the imeevma/gh-436-block-connect branch March 28, 2025 13:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Block tarantool.Connect() until a connection is established or the timeout expires if Reconnect option set
6 participants