Spaces:
Sleeping
Sleeping
File size: 16,902 Bytes
4343907 |
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 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 |
"""
SAAP Database Connection Management - Production Ready
SQLAlchemy database connection, session management, and health monitoring
"""
import asyncio
import logging
from contextlib import asynccontextmanager
from sqlalchemy import create_engine, text, event
from sqlalchemy.ext.asyncio import create_async_engine, AsyncSession, async_sessionmaker
from sqlalchemy.orm import sessionmaker, Session
from sqlalchemy.pool import QueuePool, NullPool, AsyncAdaptedQueuePool
from sqlalchemy.exc import SQLAlchemyError, OperationalError
from typing import AsyncGenerator, Optional, Dict, Any
from datetime import datetime, timedelta
from config.settings import settings
from database.models import Base, DBHealthCheck
logger = logging.getLogger(__name__)
class DatabaseManager:
"""
Production-ready database connection manager
Features:
- Connection pooling with health monitoring
- Async and sync session management
- Automatic retry and fallback mechanisms
- Database health checks and metrics
- Migration support
"""
def __init__(self):
self.engine = None
self.async_engine = None
self.SessionLocal = None
self.AsyncSessionLocal = None
self.is_initialized = False
self.last_health_check = None
self.health_status = {"status": "initializing"}
def _get_sync_engine_kwargs(self) -> Dict[str, Any]:
"""Get sync engine configuration based on database type"""
database_url = settings.get_database_url()
base_kwargs = {
"echo": settings.debug,
"future": True
}
if database_url.startswith("sqlite"):
# SQLite-specific configuration
base_kwargs.update({
"poolclass": NullPool, # SQLite doesn't need connection pooling
"connect_args": {
"check_same_thread": settings.database.sqlite_check_same_thread
}
})
else:
# PostgreSQL/MySQL configuration with connection pooling
base_kwargs.update({
"poolclass": QueuePool, # Use QueuePool for sync engines
"pool_size": settings.database.pool_size,
"max_overflow": settings.database.max_overflow,
"pool_timeout": settings.database.pool_timeout,
"pool_recycle": settings.database.pool_recycle,
"pool_pre_ping": True # Verify connections before use
})
return base_kwargs
def _get_async_engine_kwargs(self) -> Dict[str, Any]:
"""Get async engine configuration based on database type"""
database_url = settings.get_database_url()
base_kwargs = {
"echo": settings.debug,
"future": True
}
if database_url.startswith("sqlite"):
# SQLite-specific configuration for async
base_kwargs.update({
"poolclass": NullPool, # SQLite doesn't need connection pooling
})
else:
# PostgreSQL/MySQL configuration with async connection pooling
base_kwargs.update({
"poolclass": AsyncAdaptedQueuePool, # Use AsyncAdaptedQueuePool for async engines
"pool_size": settings.database.pool_size,
"max_overflow": settings.database.max_overflow,
"pool_timeout": settings.database.pool_timeout,
"pool_recycle": settings.database.pool_recycle,
"pool_pre_ping": True # Verify connections before use
})
return base_kwargs
def _setup_sql_logging(self, engine):
"""Setup SQL logging for debugging"""
if settings.debug:
@event.listens_for(engine, "before_cursor_execute")
def log_sql(conn, cursor, statement, parameters, context, executemany):
"""Log SQL statements in debug mode"""
logger.debug(f"SQL: {statement}")
if parameters:
logger.debug(f"Parameters: {parameters}")
async def initialize(self):
"""Initialize database connections and create tables"""
try:
logger.info("π Initializing SAAP Database Connection...")
database_url = settings.get_database_url()
# Create sync engine for migrations and admin tasks
sync_kwargs = self._get_sync_engine_kwargs()
self.engine = create_engine(database_url, **sync_kwargs)
# Setup SQL logging for sync engine
self._setup_sql_logging(self.engine)
# Create async engine for main application
async_url = database_url.replace("sqlite://", "sqlite+aiosqlite://")
if not database_url.startswith("sqlite"):
# For PostgreSQL: replace postgresql:// with postgresql+asyncpg://
async_url = database_url.replace("postgresql://", "postgresql+asyncpg://")
async_kwargs = self._get_async_engine_kwargs()
self.async_engine = create_async_engine(async_url, **async_kwargs)
# Setup SQL logging for async engine
self._setup_sql_logging(self.async_engine.sync_engine)
# Create session factories
self.SessionLocal = sessionmaker(
bind=self.engine,
autocommit=False,
autoflush=False,
expire_on_commit=False
)
self.AsyncSessionLocal = async_sessionmaker(
bind=self.async_engine,
class_=AsyncSession,
autocommit=False,
autoflush=False,
expire_on_commit=False
)
# Create database tables
await self._create_tables()
# Perform initial health check
await self._update_health_status()
self.is_initialized = True
logger.info(f"β
Database initialized successfully: {database_url}")
except Exception as e:
logger.error(f"β Database initialization failed: {e}")
self.health_status = {"status": "failed", "error": str(e)}
raise
async def _create_tables(self):
"""Create database tables if they don't exist"""
try:
if settings.debug:
logger.debug("π§ Creating database tables...")
if settings.get_database_url().startswith("sqlite"):
# For SQLite, use sync engine
Base.metadata.create_all(bind=self.engine)
logger.info("β
Database tables created (SQLite)")
else:
# For PostgreSQL/MySQL, use async engine
async with self.async_engine.begin() as conn:
await conn.run_sync(Base.metadata.create_all)
logger.info("β
Database tables created (Async)")
except Exception as e:
logger.error(f"β Failed to create database tables: {e}")
raise
@asynccontextmanager
async def get_async_session(self) -> AsyncGenerator[AsyncSession, None]:
"""Get async database session with automatic cleanup"""
if not self.is_initialized:
await self.initialize()
session = self.AsyncSessionLocal()
try:
yield session
await session.commit()
except Exception as e:
await session.rollback()
logger.error(f"β Database session error: {e}")
raise
finally:
await session.close()
def get_sync_session(self) -> Session:
"""Get sync database session (for migrations and admin tasks)"""
if not self.engine:
raise RuntimeError("Database not initialized")
return self.SessionLocal()
async def _update_health_status(self):
"""Update database health monitoring status"""
try:
start_time = datetime.utcnow()
# Test database connectivity
async with self.get_async_session() as session:
result = await session.execute(text("SELECT 1"))
result.fetchone()
end_time = datetime.utcnow()
response_time = (end_time - start_time).total_seconds() * 1000 # Convert to milliseconds
# Get agent count - with proper error handling
agent_count = 0
active_agent_count = 0
try:
async with self.get_async_session() as session:
# Check if agents table exists first
check_table_query = text("""
SELECT COUNT(*) FROM information_schema.tables
WHERE table_name = 'agents'
""")
# For SQLite, use different query
if settings.get_database_url().startswith("sqlite"):
check_table_query = text("""
SELECT COUNT(*) FROM sqlite_master
WHERE type='table' AND name='agents'
""")
table_exists_result = await session.execute(check_table_query)
table_exists = table_exists_result.scalar() > 0
if table_exists:
agent_count_result = await session.execute(text("SELECT COUNT(*) FROM agents"))
agent_count = agent_count_result.scalar()
active_agent_count_result = await session.execute(
text("SELECT COUNT(*) FROM agents WHERE status = 'active'")
)
active_agent_count = active_agent_count_result.scalar()
except Exception as table_error:
logger.debug(f"Tables not ready yet: {table_error}")
# This is expected during initial setup
self.health_status = {
"status": "healthy",
"database_type": settings.get_database_url().split("://")[0],
"response_time_ms": response_time,
"agent_count": agent_count,
"active_agent_count": active_agent_count,
"connection_pool": {
"size": getattr(self.async_engine.pool, 'size', 0) if self.async_engine else 0,
"checked_out": getattr(self.async_engine.pool, 'checked_out', 0) if self.async_engine else 0
},
"timestamp": datetime.utcnow().isoformat()
}
self.last_health_check = datetime.utcnow()
# Save health check to database (optional)
await self._save_health_check(response_time, agent_count, active_agent_count)
except Exception as e:
logger.error(f"β Database health check failed: {e}")
self.health_status = {
"status": "error",
"error": str(e),
"timestamp": datetime.utcnow().isoformat()
}
async def _save_health_check(self, response_time: float, agent_count: int, active_agent_count: int):
"""Save health check result to database"""
try:
async with self.get_async_session() as session:
health_check = DBHealthCheck(
component="database",
status=self.health_status["status"],
response_time_ms=response_time,
agent_count=agent_count,
active_agent_count=active_agent_count,
details={"database_type": settings.get_database_url().split("://")[0]}
)
session.add(health_check)
await session.commit()
except Exception as e:
logger.warning(f"β οΈ Failed to save health check: {e}")
async def health_check(self) -> Dict[str, Any]:
"""Get current database health status"""
# Update health status if it's been more than 30 seconds
if not self.last_health_check or (datetime.utcnow() - self.last_health_check).seconds > 30:
await self._update_health_status()
return self.health_status
async def get_performance_metrics(self) -> Dict[str, Any]:
"""Get database performance metrics"""
try:
async with self.get_async_session() as session:
# Get recent health checks
recent_checks_query = text("""
SELECT * FROM health_checks
WHERE component = 'database'
ORDER BY created_at DESC
LIMIT 10
""")
recent_checks = await session.execute(recent_checks_query)
checks = recent_checks.fetchall()
if checks:
avg_response_time = sum(check.response_time_ms for check in checks) / len(checks)
latest_check = checks[0]
return {
"average_response_time_ms": avg_response_time,
"latest_agent_count": latest_check.agent_count,
"latest_active_agents": latest_check.active_agent_count,
"health_checks_count": len(checks),
"timestamp": datetime.utcnow().isoformat()
}
else:
return {"message": "No performance data available"}
except Exception as e:
logger.error(f"β Failed to get performance metrics: {e}")
return {"error": str(e)}
async def cleanup_old_data(self, days: int = 30):
"""Clean up old data from database"""
try:
cutoff_date = datetime.utcnow() - timedelta(days=days)
async with self.get_async_session() as session:
# Clean old chat messages
await session.execute(
text("DELETE FROM chat_messages WHERE created_at < :cutoff_date"),
{"cutoff_date": cutoff_date}
)
# Clean old health checks
await session.execute(
text("DELETE FROM health_checks WHERE created_at < :cutoff_date"),
{"cutoff_date": cutoff_date}
)
# Clean old system logs
await session.execute(
text("DELETE FROM system_logs WHERE created_at < :cutoff_date"),
{"cutoff_date": cutoff_date}
)
await session.commit()
logger.info(f"β
Cleaned up data older than {days} days")
except Exception as e:
logger.error(f"β Data cleanup failed: {e}")
async def close(self):
"""Close database connections"""
try:
logger.info("π§ Closing database connections...")
if self.async_engine:
await self.async_engine.dispose()
if self.engine:
self.engine.dispose()
self.is_initialized = False
logger.info("β
Database connections closed")
except Exception as e:
logger.error(f"β Error closing database: {e}")
# Global database manager instance
db_manager = DatabaseManager()
# Convenience functions for dependency injection
async def get_db_session() -> AsyncGenerator[AsyncSession, None]:
"""FastAPI dependency for getting database session"""
async with db_manager.get_async_session() as session:
yield session
def get_sync_db_session() -> Session:
"""Get synchronous database session"""
return db_manager.get_sync_session()
if __name__ == "__main__":
async def test_database():
"""Test database connectivity"""
await db_manager.initialize()
health = await db_manager.health_check()
print(f"π Database Health: {health}")
metrics = await db_manager.get_performance_metrics()
print(f"π Performance Metrics: {metrics}")
await db_manager.close()
asyncio.run(test_database()) |