Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
- run: python -m pip install --upgrade pip
- run: python -m pip install -e ".[test]"
- run: python -m pytest sparkcache -q
- run: python -m pytest research -q
- run: python -m pytest deploy -q

package:
Expand Down
655 changes: 655 additions & 0 deletions docs/HEAT_AND_SSD_CONTROL_RESEARCH.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions research/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Offline research prototypes that are excluded from SparkCache packages."""
11 changes: 11 additions & 0 deletions research/heat_ssd_control/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""SparkCache heat-aware admission and SSD-control prototype.

**Research-only. Offline and excluded from SparkCache packages.**

No production SparkCache module imports this package, and this module imports
nothing from SparkCache production code. It models heat counters,
shadow admission, and write-budget accounting entirely in process memory with
no I/O and no serving dependency. Constructing any object here has no effect
on storage or serving behavior. GPU-free behavior and import-isolation
regressions live in ``research/heat_ssd_control/test_prototype.py``.
"""
Loading