data_loader
Historical data loading for time estimation.
Classes¶
HistoricalDataLoader ¶
Loads timing data from metadata and events files.
Provides methods to load historical execution data from: - .snakemake/metadata/ directory (from previous Snakemake runs) - .snakesee_events.jsonl file (from snakesee monitoring)
Source code in snakesee/estimation/data_loader.py
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 | |
Functions¶
__init__ ¶
__init__(registry: RuleRegistry, use_wildcard_conditioning: bool = False) -> None
Initialize the loader.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
registry
|
RuleRegistry
|
RuleRegistry to load data into. |
required |
use_wildcard_conditioning
|
bool
|
Whether to record wildcard-specific stats. |
False
|
Source code in snakesee/estimation/data_loader.py
load_from_backend ¶
load_from_backend(backend: PersistenceBackend, progress_callback: ProgressCallback | None = None) -> None
Load historical execution times from a persistence backend.
Works with both filesystem and SQLite backends via the PersistenceBackend protocol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
backend
|
PersistenceBackend
|
Persistence backend to read from. |
required |
progress_callback
|
ProgressCallback | None
|
Optional callback(current, total) for progress. |
None
|
Source code in snakesee/estimation/data_loader.py
load_from_events ¶
Load historical execution times from a snakesee events file.
Streams the events file line by line for memory efficiency.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
events_file
|
Path
|
Path to .snakesee_events.jsonl file. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if any wildcard data was found. |
Source code in snakesee/estimation/data_loader.py
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 | |
load_from_metadata ¶
Load historical execution times from .snakemake/metadata/.
Uses a single-pass parser for efficiency - reads each metadata file only once to collect timing stats, code hashes, and wildcard stats.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
metadata_dir
|
Path
|
Path to .snakemake/metadata/ directory. |
required |
progress_callback
|
ProgressCallback | None
|
Optional callback(current, total) for progress. |
None
|