searching for build debt
play

Searching for Build Debt Managing Technical Debt at Google J.D. - PowerPoint PPT Presentation

Searching for Build Debt Managing Technical Debt at Google J.D. Morgenthaler, M. Gridnev, R. Sauciuc and S. Bhansali Google Confidential and Proprietary Google's Build System Overview Single, Monolithic Source Repository Single,


  1. Searching for Build Debt Managing Technical Debt at Google J.D. Morgenthaler, M. Gridnev, R. Sauciuc and S. Bhansali Google Confidential and Proprietary

  2. Google's Build System Overview ● Single, Monolithic Source Repository ● Single, Global Build System ● Single Continuous Integration System Google Confidential and Proprietary

  3. Google's Build System Debt ● Dependency Debt ● Visibility Debt ● Zombie Targets ● Dead Flags ● Other Discoveries Google Confidential and Proprietary

  4. Dependency Debt ● Declared dependencies have to be manually kept in sync with source ● Over-declared dependencies waste resources ● Under-declared dependencies hinder progress Google Confidential and Proprietary

  5. Example Under-Declared Dependency calls Bar.getX() uses Bar defines Bar /project/BUILD: foo_binary(name = "main", deps = [":direct_dep"]) foo_library(name = "direct_dep", deps = ["//indirect/dependency:rule"]) Google Confidential and Proprietary

  6. Example Over-Declared Dependency calls Bar.getX() stops using Bar defines Bar /project/BUILD: foo_binary(name = "main", deps = [":direct_dep"]) foo_library(name = "direct_dep", deps = ["//indirect/dependency:rule"]) Google Confidential and Proprietary

  7. Remove Over-Declared Dependency calls Bar.getX() defines Bar /project/BUILD: foo_binary(name = "main", ## BROKEN deps = [":direct_dep"]) foo_library(name = "direct_dep", deps = []) Google Confidential and Proprietary

  8. Treatment Philosophy ● Automate ● Make it easy to do the right thing ● Make it hard to do the wrong thing Google Confidential and Proprietary

  9. Treatment of Under-Declared Dependencies ● Educate engineers ● Automate addition of under-declared dependencies ● Use build system to prevent reoccurrence Google Confidential and Proprietary

  10. Results ● Tools adopted by several large projects ● Engineer pushback ● Uncovered additional technical debt Google Confidential and Proprietary

  11. Visibility Debt Cleanup Results ● Changed default target visibility to private - 2011 ● Poor education increased change aversion ● Engineer pushback overcome by management ● Remaining debt slowly being paid down Google Confidential and Proprietary

  12. Zombie Target Cleanup Results ● Daily tracking of long-term broken targets (<1%) ● Identification in code search UI ● Semi-automated cleanup had little impact Google Confidential and Proprietary

  13. Dependency Debt Removal Detail ● Language-specific solution (Java) ○ Build system partitions classpath elements (jars) into direct and indirect based on dependencies ○ Extend javac to determine the jar from which each referenced class was loaded ○ Issue warning when indirect jars referenced ○ Enforce: strict_java_deps build rule attribute Google Confidential and Proprietary

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend