-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Recover connection state counting after external close #9792
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/EFCore.Relational/Storage/IRelationalTransactionFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System.Data.Common; | ||
using JetBrains.Annotations; | ||
using Microsoft.EntityFrameworkCore.Diagnostics; | ||
|
||
namespace Microsoft.EntityFrameworkCore.Storage | ||
{ | ||
/// <summary> | ||
/// <para> | ||
/// A factory for creating <see cref="RelationalTransaction" /> instances. | ||
/// </para> | ||
/// <para> | ||
/// This type is typically used by database providers It is generally not used in application code. | ||
/// </para> | ||
/// </summary> | ||
public interface IRelationalTransactionFactory | ||
{ | ||
/// <summary> | ||
/// Creates a <see cref="RelationalTransaction" /> instance. | ||
/// </summary> | ||
/// <param name="connection"> The connection to the database. </param> | ||
/// <param name="transaction"> The underlying <see cref="DbTransaction" />. </param> | ||
/// <param name="logger"> The logger to write to. </param> | ||
/// <param name="transactionOwned"> | ||
/// A value indicating whether the transaction is owned by this class (i.e. if it can be disposed when this class is disposed). | ||
/// </param> | ||
/// <returns> A new <see cref="RelationalTransaction" /> instance. </returns> | ||
RelationalTransaction Create( | ||
[NotNull] IRelationalConnection connection, | ||
[NotNull] DbTransaction transaction, | ||
[NotNull] IDiagnosticsLogger<DbLoggerCategory.Database.Transaction> logger, | ||
bool transactionOwned); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/EFCore.Relational/Storage/RelationalTransactionFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System.Data.Common; | ||
using JetBrains.Annotations; | ||
using Microsoft.EntityFrameworkCore.Diagnostics; | ||
using Microsoft.EntityFrameworkCore.Utilities; | ||
|
||
namespace Microsoft.EntityFrameworkCore.Storage | ||
{ | ||
/// <summary> | ||
/// <para> | ||
/// A factory for creating <see cref="RelationalTransaction" /> instances. | ||
/// </para> | ||
/// <para> | ||
/// This type is typically used by database providers It is generally not used in application code. | ||
/// </para> | ||
/// </summary> | ||
public class RelationalTransactionFactory : IRelationalTransactionFactory | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="RelationalTransactionFactory" /> class. | ||
/// </summary> | ||
/// <param name="dependencies"> Parameter object containing dependencies for this service. </param> | ||
public RelationalTransactionFactory([NotNull] RelationalTransactionFactoryDependencies dependencies) | ||
{ | ||
Check.NotNull(dependencies, nameof(dependencies)); | ||
|
||
Dependencies = dependencies; | ||
} | ||
|
||
/// <summary> | ||
/// Parameter object containing dependencies for this service. | ||
/// </summary> | ||
protected virtual RelationalTransactionFactoryDependencies Dependencies { get; } | ||
|
||
/// <summary> | ||
/// Creates a <see cref="RelationalTransaction" /> instance. | ||
/// </summary> | ||
/// <param name="connection"> The connection to the database. </param> | ||
/// <param name="transaction"> The underlying <see cref="DbTransaction" />. </param> | ||
/// <param name="logger"> The logger to write to. </param> | ||
/// <param name="transactionOwned"> | ||
/// A value indicating whether the transaction is owned by this class (i.e. if it can be disposed when this class is disposed). | ||
/// </param> | ||
/// <returns> A new <see cref="RelationalTransaction" /> instance. </returns> | ||
public virtual RelationalTransaction Create( | ||
IRelationalConnection connection, | ||
DbTransaction transaction, | ||
IDiagnosticsLogger<DbLoggerCategory.Database.Transaction> logger, | ||
bool transactionOwned) | ||
=> new RelationalTransaction(connection, transaction, logger, transactionOwned); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting that the tests pass, but this won't work for connection resiliency. Count would be incremented on every retry.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AndriySvyryd I added a test using connection resiliency and fixed a test bug, but can't get product code to to fail. Probably going to need some help writing a test that demonstrates this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found the issue in test code:
TestRelationalTransaction.ClearTransaction()
calls_testConnection.Close()
for some reason, hiding the product bug.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AndriySvyryd I simplified TestRelationalTransaction and TestSqlServerConnection so that they don't have any logic other than causing failures...still can't reproduce the issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, that was unrelated then. The code you added to
TestRelationalCommandBuilderFactory
hides a bug.I've also added tests for the other places where an
ExecutionStrategy
is used: seeorigin\MoreResiliencyTests
ce4bf0dThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New bits up with query fix.