How I Reclaimed 90GB of "System Data" on my Mac (The Data Engineer Way) π»π If you're a developer or data engineer on macOS, you know the "System Data" nightmare: a massive, mysterious 100GB+ bar that you can't click on or easily clean. I just dropped my System Data from 136 GB down to 47 GB. Here is the step-by-step "investigation" I used to hunt down the bloat: π΅οΈ Step 1: Identify the "Big Fish" Don't guess. Use the Terminal to find exactly where the GBs are hiding: du -sh ~/Library/* | sort -rh | head -n 10 (This showed me my Library was the main culprit, specifically Group Containers and Application Support.)
π³ Step 2: Tame the Docker Beast Docker creates a massive virtual disk (Docker.raw) that can grow to 60GB+ and stay there forever. The Fix: Use docker system prune -a --volumes or manually clear ~/Library/Containers/com.docker.docker.
π οΈ Step 3: Purge Developer "Derived Data" Xcode and other IDEs dump build files into hidden folders. The Fix: Wipe ~/Library/Developer/Xcode/DerivedData. Itβs safeβthe system just rebuilds it when you actually run a project.
π Step 4: Trim the Browser "Brain" My Google Chrome folder was sitting at nearly 12 GB. Over time, site data and caches turn into a mountain of small files. The Fix: A deep "Clear Browsing Data" (All Time) or a manual trim of ~/Library/Application Support/Google.
π Step 5: Force the "Truth" (Re-indexing) The macOS storage bar often "lies" because the index gets stuck. If you've deleted files but the bar hasn't moved, force a re-scan: sudo mdutil -E /
Select which cookies to opt-in to via the checkboxes below; our website uses cookies to examine site traffic and user activity while on our site, for marketing, and to provide social media functionality. More details...
Cookie settings
We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies. More details...
If you're a developer or data engineer on macOS, you know the "System Data" nightmare: a massive, mysterious 100GB+ bar that you can't click on or easily clean.
I just dropped my System Data from 136 GB down to 47 GB. Here is the step-by-step "investigation" I used to hunt down the bloat:
π΅οΈ Step 1: Identify the "Big Fish" Don't guess. Use the Terminal to find exactly where the GBs are hiding: du -sh ~/Library/* | sort -rh | head -n 10 (This showed me my Library was the main culprit, specifically Group Containers and Application Support.)
π³ Step 2: Tame the Docker Beast Docker creates a massive virtual disk (Docker.raw) that can grow to 60GB+ and stay there forever.
The Fix: Use docker system prune -a --volumes or manually clear ~/Library/Containers/com.docker.docker.
π οΈ Step 3: Purge Developer "Derived Data" Xcode and other IDEs dump build files into hidden folders.
The Fix: Wipe ~/Library/Developer/Xcode/DerivedData. Itβs safeβthe system just rebuilds it when you actually run a project.
π Step 4: Trim the Browser "Brain" My Google Chrome folder was sitting at nearly 12 GB. Over time, site data and caches turn into a mountain of small files.
The Fix: A deep "Clear Browsing Data" (All Time) or a manual trim of ~/Library/Application Support/Google.
π Step 5: Force the "Truth" (Re-indexing) The macOS storage bar often "lies" because the index gets stuck. If you've deleted files but the bar hasn't moved, force a re-scan: sudo mdutil -E /
The Final Result? β 90 GB of SSD space reclaimed. β A much snappier Mac for my data engineering workflows.
hashtag#macOS hashtag#DataEngineering hashtag#DeveloperTools hashtag#TechTips hashtag#Productivity hashtag#Docker hashtag#StorageCleanup