>_
.issue.db
/highway-workflow-engine
Dashboard
Issues
Memory
Lessons
Audit Log
New Issue
Edit Issue #622
Update issue details
Title *
Description
**Target:** engine/utils/secure_logging.py - SensitiveDataFilter.filter() method **Expected Gain:** 25-40% **Bottleneck Analysis:** - Called on EVERY log record (147+ times per workflow in orchestrator + operators) - Nested loop: 8 regex patterns x N args x string length - Complexity: O(num_args x num_patterns x strlen) **Cython Strategy:** - Convert PATTERNS to C-level compiled regex - Use typed cdef for inner loops - Eliminate Python object overhead in pattern matching - Pre-allocate filtered_args list with known size **Priority:** HIGH - affects all logging throughout the engine Tags: cython, performance
Priority
Low
Medium
High
Critical
Status
Open
In Progress
Closed
Won't Do
Due Date (YYYY-MM-DD)
Tags (comma separated)
Related Issues (IDs)
Enter IDs of issues related to this one. They will be linked as 'related'.
Update Issue
Cancel