-
Notifications
You must be signed in to change notification settings - Fork 301
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
SqlNotificationInfo.None enum value missing, causing unnecessary exceptions. #1376
Comments
Interesting. According to the schema that it claims that it implements the value none is invalid, http://schemas.microsoft.com/SQL/Notifications/QueryNotification/QueryNotification.xsd either the value must be missing or one of the values specified in the restriction which doesn't include none. We could handle the none case in this library probably by using TryParse and then checking for the literal "none" value but the SQL Server either shouldn't be sending that value of should be using a schema that allows that value and those changes would need to be made at the server side. |
@Wraith2 where does it state that it implements that schema? There are already some values in the enum not present in the schema. |
Right there in the xml the user provided. It uses xmlns to declare a short namespace prefix qn and identifies that it implements the schema at the url. That url exists and has a short and easy to read (a rarity) xsd schema. |
Oops, guess I'm blind. If none is not a supported value, should we be adding it to the enum? This could be by design and we can just improve it by not throwing that exception but ultimately keeping it as unknown. |
I think we have to add handling of it somehow but I don't know whether we want to add it to the enum. If we're going to change the enum (which is a breaking change) then it would probably be a good idea to ask the Sql Server team what possible values it can take from their side and make sure everything is covered. It's clearly no longer limited to the originally defined values. |
Server team has confirmed the server shouldn't be sending that value and this is likely a server-side bug. |
Excellent news. I think it is still best to handle it in this library without throwing since we can't be certain users will ever upgrade or even be on a supported version. What do you think? |
Yeah, I like the idea of at least changing this to a TryParse rather than a Parse with try/catch. |
I agree, I'll make a PR for it. |
@ascott18 I'm unable to reproduce it on 15.0.2080.9. I ran it for several minutes, how long should it take? |
@johnnypham When I originally made the repro it consistently happened on the third notification. I just ran it again and got it on the 4th. But sometimes when I'm developing the actual codebase where this is used, I can go 30 minutes or more until it happens and VS breaks on that exception. Edit: Definitely something very strange going on inside of SQL Server here. I added timestamps to the output and got the following:
The "none" always happens at 33 seconds after the minute. And the regular timeouts (a) are locked to 5 second increments (I guess due to some internal timer in SQL Server?), but also (b) are timing out after 15 seconds, despite my configured value of 1 second in the code. |
Had a hunch and did a little more checking. As I thought, the timing of the "none" comes from when SQL Server started up. The date printed post startup here is 28 seconds, when is the second stamp of all the "none"s (Unknown). I wonder if the fact that sometimes I can go a little while without seeing this in debugging is related to the fact that I'm actually doing stuff to the database during debugging, whereas this repro is the singular thing doing anything to this database.
|
Hmm still unable to repro. I'll try to find someone who can. If I can't, would you mind validating the changes? |
Sure! |
@ascott18 you can download the nuget here and try it out: https://dev.azure.com/sqlclientdrivers-ci/sqlclient/_build/results?buildId=43533&view=artifacts&pathAsName=false&type=publishedArtifacts |
Thanks, it works (added a review to the PR). On an unrelated note, I had to add "TrustServerCertificate=True" to my connection string (connecting to localhost). I'm guessing the defaults around cert trusting are being changed in 4.0? |
Yes they are. |
Closing as #1378 has been merged. |
Describe the bug
In SqlDependencyListener, when an incoming XML message is parsed, sometimes these messages look like this:
The
info
attribute is parsed at https://github.com/dotnet/SqlClient/blob/main/src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SqlDependencyListener.cs#L1133-L1167. However, the enum that the value is parsed into does not included a value "None", causing an exception to be thrown. It is ultimately handled by the containing try/catch, but there are a few issues with this:To reproduce
This is a bit weird to reproduce. The first few notifications where will be of
Info == Error
. But sometimes, it will be"none"
in the XML, which then throws and gets turned intoUnknown
.Set exception settings in Visual Studio to break on all CLR exceptions.
Expected behavior
SqlNotificationInfo.None
is defined so exception flow isn't needed.Further technical details
Microsoft.Data.SqlClient version: 3.0.1
.NET target: net6.0
SQL Server version: 15.0.2000.5
Operating system: Win 10
The text was updated successfully, but these errors were encountered: