MilvusConnectionManager
Milvus Connection Manager for Talk2KnowledgeGraphs.
This module provides centralized connection management for Milvus database, removing the dependency on frontend session state and enabling proper separation of concerns between frontend and backend.
MilvusConnectionManager
Centralized Milvus connection manager for backend tools with singleton pattern.
This class handles: - Connection establishment and management - Database switching - Connection health checks - Graceful error handling - Thread-safe singleton pattern
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cfg
|
dict[str, Any]
|
Configuration object containing Milvus connection parameters |
required |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 |
|
__init__(cfg)
Initialize the Milvus connection manager.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cfg
|
dict[str, Any]
|
Configuration dictionary containing Milvus DB settings |
required |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
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 |
|
__new__(cfg)
Create singleton instance based on database configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cfg
|
dict[str, Any]
|
Configuration dictionary containing Milvus DB settings |
required |
Returns:
Name | Type | Description |
---|---|---|
MilvusConnectionManager |
Singleton instance for the given config |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
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 |
|
_sync_query(params)
Sync fallback for query operations.
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
_sync_search(params)
Sync fallback for search operations.
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
|
async_get_collection_stats(collection_name)
async
Get collection statistics asynchronously.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name
|
str
|
Name of the collection |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
Collection statistics |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
|
async_load_collection(collection_name)
async
Asynchronously load a collection.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name
|
str
|
Name of the collection to load |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if loaded successfully |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
|
async_query(params)
async
Perform asynchronous query with sync fallback.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params
|
QueryParams
|
QueryParams object containing all query parameters |
required |
Returns:
Type | Description |
---|---|
list
|
List of query results |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
|
async_search(params)
async
Perform asynchronous vector search.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params
|
SearchParams
|
SearchParams object containing all search parameters |
required |
Returns:
Type | Description |
---|---|
list
|
List of search results |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
|
clear_instances()
classmethod
Clear all singleton instances. Useful for testing or cleanup.
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
520 521 522 523 524 525 526 527 528 529 530 |
|
disconnect()
Disconnect from Milvus (both sync and async clients).
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if disconnected successfully, False otherwise |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
|
ensure_connection()
Ensure Milvus connection exists, create if not.
This method checks if a connection with the specified alias exists, and creates one if it doesn't. It also switches to the correct database. Thread-safe implementation with connection locking.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if connection is established, False otherwise |
Raises:
Type | Description |
---|---|
MilvusException
|
If connection cannot be established |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
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 |
|
from_config(cfg)
classmethod
Create a MilvusConnectionManager from configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cfg
|
dict[str, Any]
|
Configuration object or dictionary |
required |
Returns:
Name | Type | Description |
---|---|---|
MilvusConnectionManager |
MilvusConnectionManager
|
Configured connection manager instance |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
532 533 534 535 536 537 538 539 540 541 542 543 |
|
from_hydra_config(config_path='../configs', config_name='config', overrides=None)
classmethod
Create a MilvusConnectionManager from Hydra configuration.
This method loads the Milvus database configuration using Hydra, providing complete backend separation from frontend configs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_path
|
str
|
Path to the configs directory |
'../configs'
|
config_name
|
str
|
Name of the main config file |
'config'
|
overrides
|
list | None
|
List of config overrides |
None
|
Returns:
Name | Type | Description |
---|---|---|
MilvusConnectionManager |
MilvusConnectionManager
|
Configured connection manager instance |
Example
Load with default database config
conn_manager = MilvusConnectionManager.from_hydra_config()
Load with specific overrides
conn_manager = MilvusConnectionManager.from_hydra_config( overrides=["utils/database/milvus=default"] )
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 |
|
get_async_client()
Get or create an asynchronous AsyncMilvusClient.
Returns:
Name | Type | Description |
---|---|---|
AsyncMilvusClient |
AsyncMilvusClient
|
Configured asynchronous client |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
|
get_collection(collection_name)
Get a Milvus collection, ensuring connection is established. Thread-safe implementation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name
|
str
|
Name of the collection to retrieve |
required |
Returns:
Name | Type | Description |
---|---|---|
Collection |
Collection
|
The requested Milvus collection |
Raises:
Type | Description |
---|---|
MilvusException
|
If collection cannot be retrieved |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
get_connection_info()
Get current connection information.
Returns:
Type | Description |
---|---|
dict[str, Any]
|
Dict containing connection details |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
|
get_instance(cfg)
classmethod
Get singleton instance for the given configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cfg
|
dict[str, Any]
|
Configuration dictionary containing Milvus DB settings |
required |
Returns:
Name | Type | Description |
---|---|---|
MilvusConnectionManager |
MilvusConnectionManager
|
Singleton instance for the given config |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
507 508 509 510 511 512 513 514 515 516 517 518 |
|
get_sync_client()
Get or create a synchronous MilvusClient.
Returns:
Name | Type | Description |
---|---|---|
MilvusClient |
MilvusClient
|
Configured synchronous client |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
test_connection()
Test the connection by attempting to list collections.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if connection is healthy, False otherwise |
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
|
QueryParams
dataclass
Parameters for query operations.
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
37 38 39 40 41 42 43 44 |
|
SearchParams
dataclass
Parameters for search operations.
Source code in aiagents4pharma/talk2knowledgegraphs/utils/database/milvus_connection_manager.py
25 26 27 28 29 30 31 32 33 34 |
|