Spaces:
Paused
Paused
File size: 8,940 Bytes
f091f7a | 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 | # Performance Optimization Summary
## Changes Made
### β
1. Increased Concurrent Request Capacity
**File**: `services/ai-service/src/ai_med_extract/services/request_queue.py`
- **Max Concurrent Requests**: Increased from 2 β **6**
- **Max Queue Size**: Set to **10** requests
- **Queue Timeout**: 20 minutes (1200s)
**Impact**: Can now handle 6 simultaneous requests instead of 2, reducing queue wait times significantly.
---
### β
2. Added Comprehensive Detailed Logging
**New Files Created**:
- `services/ai-service/src/ai_med_extract/utils/detailed_logging.py`
- `services/ai-service/src/ai_med_extract/utils/model_keepalive.py`
- `services/ai-service/src/ai_med_extract/utils/hf_spaces_optimizations.py`
**Logging Enhancements**:
#### Request Queue Logging:
```
π₯ ENQUEUE REQUEST: req_12345
- Job ID: job_67890
- Priority: NORMAL
- Current active: 2/6
- Current queue: 0/10
β
REQUEST ACCEPTED (immediate): req_12345
- Active slots: 2/6
- Will acquire slot immediately
π SLOT ACQUIRED: req_12345
- Wait time: 0.05s
- Active slots: 3/6
- Total processed: 42
β
SLOT RELEASED: req_12345
- Processing time: 45.3s
- Active slots: 2/6
- Queue size: 0/10
```
#### Model Loading Logging:
```
================================================================================
π₯ EAGER MODEL LOADING - Starting primary model preload...
================================================================================
π§ Model Configuration:
- Name: microsoft/Phi-3-mini-4k-instruct-gguf
- Type: gguf
- Loading Mode: EAGER (not lazy)
β³ Loading model into memory...
β
PRIMARY MODEL LOADED SUCCESSFULLY
- Model: microsoft/Phi-3-mini-4k-instruct-gguf
- Load Time: 23.45s
- Status: Ready for inference
- Memory Usage: 2048.5 MB
β±οΈ Total eager loading time: 23.45s
================================================================================
```
#### Generation Logging:
```
================================================================================
π GENERATION STARTED
- Model: microsoft/Phi-3-mini-4k-instruct-gguf
- Timestamp: 2025-11-27T15:19:23+05:30
- Input length: 1250 characters
- Input tokens (est): ~312
- Configuration:
β’ max_tokens: 8192
β’ temperature: 0.7
β’ top_p: 0.9
β³ Generating response...
β
GENERATION COMPLETED
- Model: microsoft/Phi-3-mini-4k-instruct-gguf
- Duration: 12.34s
- Output length: 2500 characters
- Output tokens (est): ~625
- Tokens/second: ~50.6
================================================================================
```
---
### β
3. Eager Model Loading (Disabled Lazy Loading)
**File**: `services/ai-service/src/ai_med_extract/utils/hf_spaces_optimizations.py`
**Changes**:
- Models now preload at application startup
- Primary model (GGUF) loads immediately
- No more cold start delays on first request
**Before**:
```python
lazy=True # Model loads on first use
```
**After**:
```python
lazy=False # EAGER LOADING - preload at startup
```
---
### β
4. Model Keep-Alive Service
**File**: `services/ai-service/src/ai_med_extract/utils/model_keepalive.py`
**Features**:
- Pings loaded models every 5 minutes
- Prevents models from being unloaded during idle periods
- Tracks ping statistics and errors
**Logging**:
```
π Model keep-alive service started (interval: 300s)
β
Keep-alive ping #1 sent to 1 models (errors: 0)
β
Keep-alive ping #2 sent to 1 models (errors: 0)
```
---
### β
5. Environment Configuration
**File**: `services/ai-service/src/ai_med_extract/utils/hf_spaces_optimizations.py`
**New Environment Variables**:
```python
MAX_CONCURRENT_REQUESTS=6
MAX_QUEUE_SIZE=10
EAGER_MODEL_LOADING=true
MODEL_KEEPALIVE=true
MODEL_KEEPALIVE_INTERVAL=300
DETAILED_LOGGING=true
LOG_MODEL_OPERATIONS=true
LOG_GENERATION_METRICS=true
```
---
### β
6. New Monitoring Endpoints
**Added Endpoints**:
1. **`/warmup`** - Keep models warm
```json
{
"status": "warm",
"timestamp": "2025-11-27T15:19:23+05:30",
"models_loaded": 1,
"primary_model": "microsoft/Phi-3-mini-4k-instruct-gguf",
"loaded_model_names": ["microsoft/Phi-3-mini-4k-instruct-gguf"]
}
```
2. **`/model-status`** - Check loaded models
```json
{
"loaded_models": [...],
"total_loaded": 1,
"timestamp": "2025-11-27T15:19:23+05:30"
}
```
3. **`/queue-status`** - Check request queue
```json
{
"active_requests": 3,
"queue_size": 2,
"max_concurrent": 6,
"max_queue_size": 10,
"total_processed": 156,
"total_rejected": 2,
"total_timeout": 0
}
```
4. **`/keepalive-status`** - Check keep-alive service
```json
{
"running": true,
"interval_seconds": 300,
"total_pings": 24,
"total_errors": 0,
"uptime_minutes": 120
}
```
---
## Expected Performance Improvements
| Metric | Before | After | Improvement |
|--------|--------|-------|-------------|
| **First request (cold)** | 2-5 min | 30-60 sec | **75% faster** |
| **Subsequent requests** | 30-60 sec | 30-60 sec | Consistent |
| **After 15 min idle** | 2-5 min | 30-60 sec | **75% faster** |
| **Concurrent capacity** | 2 requests | 6 requests | **3x capacity** |
| **Queue capacity** | 10 requests | 10 requests | Same |
| **Consistency** | β Variable | β
Consistent | **Much better** |
---
## How to Apply
### Quick Integration (Add to `app.py`):
```python
# At the top, after imports
from services.ai_service.src.ai_med_extract.utils.hf_spaces_optimizations import (
configure_hf_spaces_env,
apply_hf_spaces_optimizations
)
# Before creating the app
configure_hf_spaces_env()
# After creating the app
app = create_app(initialize=False)
initialize_agents(app, preload_small_models=False)
# ADD THIS LINE:
apply_hf_spaces_optimizations(app)
logging.info("Application initialized successfully")
```
---
## Monitoring Your Deployment
### 1. Check Logs for Detailed Information
Look for these log patterns:
**Startup**:
```
π§ Configuring HF Spaces environment variables...
β
HF Spaces environment variables configured:
- MAX_CONCURRENT_REQUESTS: 6
- MAX_QUEUE_SIZE: 10
- EAGER_MODEL_LOADING: true
- MODEL_KEEPALIVE: true (interval: 300s)
- DETAILED_LOGGING: true
```
**Model Loading**:
```
π₯ EAGER MODEL LOADING - Starting primary model preload...
β
PRIMARY MODEL LOADED SUCCESSFULLY
- Model: microsoft/Phi-3-mini-4k-instruct-gguf
- Load Time: 23.45s
```
**Request Processing**:
```
π₯ ENQUEUE REQUEST: req_12345
β
REQUEST ACCEPTED (immediate): req_12345
π SLOT ACQUIRED: req_12345
- Wait time: 0.05s
β
GENERATION COMPLETED
- Duration: 12.34s
- Tokens/second: ~50.6
β
SLOT RELEASED: req_12345
- Processing time: 45.3s
```
### 2. Use Monitoring Endpoints
```bash
# Check if models are warm
curl https://your-space.hf.space/warmup
# Check queue status
curl https://your-space.hf.space/queue-status
# Check model status
curl https://your-space.hf.space/model-status
# Check keep-alive service
curl https://your-space.hf.space/keepalive-status
```
### 3. Set Up External Monitoring
Use **UptimeRobot** (free tier):
- Monitor: `https://your-space.hf.space/warmup`
- Interval: Every 5 minutes
- This keeps your space warm and prevents cold starts
---
## Troubleshooting
### Issue: GPU OOM (Out of Memory)
**Symptoms**: Errors about CUDA out of memory
**Solution**: Reduce concurrent requests
```python
# In hf_spaces_optimizations.py, line 188:
os.environ.setdefault("MAX_CONCURRENT_REQUESTS", "4") # Reduce from 6 to 4
```
### Issue: Logs too verbose
**Solution**: Disable detailed logging
```python
# In app.py or environment:
os.environ["DETAILED_LOGGING"] = "false"
```
### Issue: Keep-alive not working
**Check**:
```bash
curl https://your-space.hf.space/keepalive-status
```
**Expected**:
```json
{
"running": true,
"total_pings": 24,
"total_errors": 0
}
```
---
## Files Modified/Created
### Created:
1. β
`services/ai-service/src/ai_med_extract/utils/model_keepalive.py`
2. β
`services/ai-service/src/ai_med_extract/utils/hf_spaces_optimizations.py`
3. β
`services/ai-service/src/ai_med_extract/utils/detailed_logging.py`
4. β
`docs/HF_SPACES_PERFORMANCE_GUIDE.md`
5. β
`docs/QUICK_FIX_PERFORMANCE.md`
### Modified:
1. β
`services/ai-service/src/ai_med_extract/services/request_queue.py`
- Increased max_concurrent to 6
- Added detailed logging throughout
---
## Next Steps
1. **Integrate** the optimizations into `app.py` (see "How to Apply" above)
2. **Deploy** to HF Spaces
3. **Monitor** using the new endpoints
4. **Set up** external monitoring (UptimeRobot)
5. **Review** logs to ensure everything is working
---
**Last Updated**: 2025-11-27
**Configuration**: 6 concurrent requests, 10 queue size, eager loading, keep-alive enabled
**Expected Result**: 75% faster, 3x capacity, consistent performance
|