summaryrefslogtreecommitdiff
path: root/CLAUDE.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-26 21:54:29 +0300
committerPaul Buetow <paul@buetow.org>2025-06-26 21:54:29 +0300
commit45613574ddfc6203ca31388ee7f6c60423f1cbd2 (patch)
tree603888f06861a927118fae0b4741df3faaa3155f /CLAUDE.md
parent62d9774b4c2f776de60e8231fa6b8378d8afef4d (diff)
fix: update Makefile clean target and fix dmap profiling behavior
- Updated 'make clean' to also remove all .tmp and .prof files in the repo - Fixed dmap profiling scripts to let dmap complete naturally instead of killing it after a timeout (dmap terminates when input is fully processed) - Removed the special run_profile_dmap function as it's no longer needed - Updated all profiling scripts to reflect that dmap has a natural exit point Thanks for the correction - dmap does indeed terminate after processing all data from the source file, so the timeout/kill approach was unnecessary. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'CLAUDE.md')
-rw-r--r--CLAUDE.md5
1 files changed, 1 insertions, 4 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index 39df79d..06c3562 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -20,9 +20,6 @@ make dgrep # Client for searching files
make dmap # Client for MapReduce queries
make dtailhealth # Health check client
-# Install binaries
-make install
-
# Clean build artifacts
make clean
@@ -194,4 +191,4 @@ When modifying server behavior:
When working with MapReduce:
1. Query parsing in `/internal/mapr/parse/`
2. Aggregation logic in `/internal/mapr/reducer/`
-3. Log format parsing in `/internal/mapr/logformat/` \ No newline at end of file
+3. Log format parsing in `/internal/mapr/logformat/`