Codibre.GrpcSqlProxy.Client
0.1.3
See the version list below for details.
dotnet add package Codibre.GrpcSqlProxy.Client --version 0.1.3
NuGet\Install-Package Codibre.GrpcSqlProxy.Client -Version 0.1.3
<PackageReference Include="Codibre.GrpcSqlProxy.Client" Version="0.1.3" />
paket add Codibre.GrpcSqlProxy.Client --version 0.1.3
#r "nuget: Codibre.GrpcSqlProxy.Client, 0.1.3"
// Install Codibre.GrpcSqlProxy.Client as a Cake Addin #addin nuget:?package=Codibre.GrpcSqlProxy.Client&version=0.1.3 // Install Codibre.GrpcSqlProxy.Client as a Cake Tool #tool nuget:?package=Codibre.GrpcSqlProxy.Client&version=0.1.3
Codibre.GrpcSqlProxy.Client
A library to connect to a grpc sql proxy
Why?
SQlClient has an issue establishing concurrent connections, as described here, which may not be a big deal in most cases, but if you have a high latency connection (like when you're connecting to a remote database), this can really escalate quickly on high demanding scenarios. That said, this library tries to provide a workaround if it's not possible to keep the application close to the database, but you may be vulnerable to big loads of requests. There are other strategies that can also be used (cache, batching queries, etc). This repository just offer another option (very alpha stage), to deal with this situation until Microsoft resolve the issue once for all.
How to use?
First of all, you have to prepare the server. The docker image is ready to be used here. You need to put it as services in the same cloud and region of your SQL Server.
About the client, you can check the test folder for some other examples, but the usage is quite simple. First, create a the client. You can create it manually, like this:
var client = new GrpcSqlProxyClient(
new SqlProxyClientOptions(
_url, // Grpc Proxy Url
sqlConnection // Sql Connection String
) {
Compress = true, // Where the packets must be compressed
PacketSize = 2000 // How many rows are in each packet (default 1000)
}
);
You can also inject the client using its built in extensions:
servicesCollection.AddGrpcSqlProxy();
The configuration will be obtained from IConfiguration. You need to declare it like this:
{
"ConnectionStrings": {
"SqlConnection": "Server=127.0.0.1;Database=SampleDb;User Id=sa;Password=Sa12345!;Trusted_Connection=False;TrustServerCertificate=True;Integrated Security=False;"
},
"GrpcSqlProxy": {
"Url": "Proxy Url",
"Compress": "True",
"PacketSize": "2000"
}
}
Now that you have a client created, you have to establish a channel:
using var channel = client.CreateChannel();
Finally, you can run your queries:
await channel.BeginTransaction();
await channel.Execute("INSERT INTO MyTable (Field1, Field2) VALUES ('test1', 123)");
await channel.Commit();
var result = await channel.QueryFirstOrDefault<TB_PRODUTO>("SELECT * FROM MyTable");
While using the same channel, every command you'll be sent the same connection, so, you can normally create transactions and, when the channel is disposed, the connections will be sent back to the connection pool to be reused.
The details for each connection are sent by the application client, so, if you have two applications with the exact same connection string, the chances are that they'll share the same connection pools.
You can also pass parameters, and it's possible to change compression or packetSize options for a single request, as showed below:
var result = await channel.QueryFirstOrDefault<TB_PRODUTO>("SELECT * FROM MyTable WHERE id = @Id", new()
{
Params = new
{
Id = 1
},
PacketSize = 10,
Compress = false
});
The result sets returned by the method Query are IAsyncEnumerable instances because the packets returned are processed on demand. This is done to keep the memory usage of the proxy controlled. For now, the methods available to execute sql commands are:
- Execute: To run a query without getting its result (feasible to insert, update, etc);
- Query: To return multiple rows;
- QueryFirst: To get one result and to throw an error if it's not found;
- QueryFirstOrDefault: To get one result or the default value for the type;
The model passed as a generic parameter for the query methods must be a reference type. You can't use int, bool, or other value types yet, but it can be done in the future.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Codibre.GrpcSqlProxy.Common (>= 0.1.3)
- Grpc.Net.Client (>= 2.53.0)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.1)
- System.Linq.Async (>= 6.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.4.0 | 83 | 11/11/2024 |
0.3.2 | 69 | 10/29/2024 |
0.3.1 | 80 | 10/21/2024 |
0.3.0 | 81 | 10/21/2024 |
0.2.5 | 96 | 10/20/2024 |
0.2.4 | 93 | 10/20/2024 |
0.2.3 | 87 | 10/20/2024 |
0.2.2 | 87 | 10/20/2024 |
0.2.1 | 101 | 10/20/2024 |
0.2.0 | 75 | 10/16/2024 |
0.1.3 | 85 | 10/14/2024 |
0.1.2 | 94 | 10/14/2024 |
0.1.1 | 77 | 10/14/2024 |
0.1.0 | 84 | 10/14/2024 |
0.0.2 | 92 | 10/13/2024 |
0.0.1 | 93 | 10/13/2024 |