-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultipleClientsExample.cs
More file actions
221 lines (186 loc) · 7.35 KB
/
MultipleClientsExample.cs
File metadata and controls
221 lines (186 loc) · 7.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Weaviate.Client;
using Weaviate.Client.DependencyInjection;
using Weaviate.Client.Managed.Extensions;
namespace Example;
/// <summary>
/// Example demonstrating how to use multiple Weaviate clients via dependency injection.
/// </summary>
public class MultipleClientsExample
{
public static async Task Run()
{
var host = Host.CreateDefaultBuilder()
.ConfigureServices(
(context, services) =>
{
// Register multiple named Weaviate clients
services.AddWeaviateClient(
"production",
options =>
{
options.RestEndpoint = "prod.weaviate.cloud";
options.GrpcEndpoint = "grpc-prod.weaviate.cloud";
options.RestPort = 443;
options.GrpcPort = 443;
options.UseSsl = true;
options.Credentials = Auth.ApiKey("prod-api-key");
}
);
services.AddWeaviateClient(
"staging",
options =>
{
options.RestEndpoint = "staging.weaviate.cloud";
options.GrpcEndpoint = "grpc-staging.weaviate.cloud";
options.RestPort = 443;
options.GrpcPort = 443;
options.UseSsl = true;
options.Credentials = Auth.ApiKey("staging-api-key");
}
);
services.AddWeaviateLocal("local", "localhost", 8080, 50051);
// Or use helper methods
services.AddWeaviateCloud(
"analytics",
"analytics.weaviate.cloud",
"analytics-key"
);
// Register services that use multiple clients
services.AddSingleton<MultiDatabaseService>();
}
)
.Build();
await host.StartAsync();
var service = host.Services.GetRequiredService<MultiDatabaseService>();
await service.DemonstrateMultipleClientsAsync();
await host.StopAsync();
}
}
/// <summary>
/// Service that uses multiple Weaviate clients simultaneously.
/// </summary>
public class MultiDatabaseService
{
private readonly IWeaviateClientFactory _clientFactory;
private readonly ILogger<MultiDatabaseService> _logger;
public MultiDatabaseService(
IWeaviateClientFactory clientFactory,
ILogger<MultiDatabaseService> logger
)
{
_clientFactory = clientFactory;
_logger = logger;
}
public async Task DemonstrateMultipleClientsAsync()
{
_logger.LogInformation("=== Multiple Weaviate Clients Example ===\n");
// Get different clients by name
var prodClient = await _clientFactory.GetClientAsync("production");
var stagingClient = await _clientFactory.GetClientAsync("staging");
var localClient = await _clientFactory.GetClientAsync("local");
_logger.LogInformation("Production client version: {Version}", prodClient.WeaviateVersion);
_logger.LogInformation("Staging client version: {Version}", stagingClient.WeaviateVersion);
_logger.LogInformation("Local client version: {Version}", localClient.WeaviateVersion);
// Use different clients for different purposes
await SyncDataBetweenEnvironmentsAsync(prodClient, stagingClient);
await TestLocallyAsync(localClient);
}
private async Task SyncDataBetweenEnvironmentsAsync(
WeaviateClient prodClient,
WeaviateClient stagingClient
)
{
_logger.LogInformation("\nSyncing data from production to staging...");
var prodCollection = prodClient.Collections.UseManaged<Cat>();
var stagingCollection = stagingClient.Collections.UseManaged<Cat>();
// Fetch from production
var prodResults = await prodCollection.Query().Limit(100);
_logger.LogInformation("Found {Count} cats in production", prodResults.Count());
// Insert into staging
var cats = prodResults.Objects();
foreach (var cat in cats)
{
await stagingCollection.Insert(cat);
}
_logger.LogInformation("Synced to staging environment");
}
private async Task TestLocallyAsync(WeaviateClient localClient)
{
_logger.LogInformation("\nTesting locally...");
var localCollection = localClient.Collections.UseManaged<Cat>();
// Test queries locally before deploying to production
var results = await localCollection.Query().Limit(10);
_logger.LogInformation("Local test completed: {Count} results", results.Count());
}
}
/// <summary>
/// Alternative pattern: Inject factory and get clients on demand.
/// </summary>
public class OnDemandClientService
{
private readonly IWeaviateClientFactory _clientFactory;
public OnDemandClientService(IWeaviateClientFactory clientFactory)
{
_clientFactory = clientFactory;
}
public async Task ProcessDataFromEnvironmentAsync(string environment)
{
// Get the appropriate client based on runtime logic
var client = await _clientFactory.GetClientAsync(environment);
var collection = client.Collections.UseManaged<Cat>();
var results = await collection.Query().Limit(100).Execute();
// Process results...
}
}
/// <summary>
/// Example with configuration from appsettings.json
/// </summary>
public class ConfigurationBasedMultiClientExample
{
public static async Task RunAsync()
{
/*
* appsettings.json:
* {
* "Weaviate": {
* "Production": {
* "RestEndpoint": "prod.weaviate.cloud",
* "ApiKey": "prod-key"
* },
* "Staging": {
* "RestEndpoint": "staging.weaviate.cloud",
* "ApiKey": "staging-key"
* }
* }
* }
*/
var host = Host.CreateDefaultBuilder()
.ConfigureServices(
(context, services) =>
{
// Register clients from configuration
services.AddWeaviateClient(
"production",
options =>
context.Configuration.GetSection("Weaviate:Production").Bind(options)
);
services.AddWeaviateClient(
"staging",
options =>
context.Configuration.GetSection("Weaviate:Staging").Bind(options)
);
}
)
.Build();
await host.StartAsync();
var factory = host.Services.GetRequiredService<IWeaviateClientFactory>();
var prodClient = await factory.GetClientAsync("production");
var stagingClient = await factory.GetClientAsync("staging");
// Use clients...
await host.StopAsync();
}
}