[{"data":1,"prerenderedAt":1048},["ShallowReactive",2],{"/blog/why-we-created-the-gitlab-memory-team":3,"navigation-en-us":262,"banner-en-us":690,"footer-en-us":700,"blog-post-authors-en-us-Sara Kassabian":944,"blog-related-posts-en-us-why-we-created-the-gitlab-memory-team":958,"blog-promotions-en-us":984,"next-steps-en-us":1038},{"id":4,"title":5,"authors":6,"body":8,"category":240,"date":241,"description":242,"extension":243,"externalUrl":244,"faq":244,"featured":245,"heroImage":246,"meta":247,"navigation":248,"path":249,"seo":250,"slug":254,"stem":255,"tags":256,"template":260,"updatedDate":244,"__hash__":261},"blogPosts/en-us/blog/why-we-created-the-gitlab-memory-team.md","Why we created a Memory team at GitLab",[7],"Sara Kassabian",{"type":9,"value":10,"toc":229},"minimark",[11,21,32,42,47,68,71,74,77,101,106,109,112,115,128,132,135,150,154,161,180,184,187,190,198,207,215],[12,13,14,15,20],"p",{},"GitLab is an ",[16,17,19],"a",{"href":18},"/topics/devops/","all-in-one DevOps solution"," with a growing feature set. But as more features are added to the application, more memory is required. Some users have reportedly elected to migrate to other tools because the memory footprint required to run a minimum GitLab instance was exorbitant:",[22,23,24],"blockquote",{},[12,25,26,27],{},"“GitLab is great and I have used it for years but I recently switched to Gogs for self-hosted repositories because it is much faster, easier to set up, and walk in a park to maintain. It doesn't have all the features (bloat) that GitLab has but it can probably satisfy >95% of Git users.” – ",[16,28,31],{"href":29,"rel":30},"https://news.ycombinator.com/item?id=19227935",[],"Jnr on HackerNews",[22,33,34],{},[12,35,36,37],{},"“If GitLab grows any more features I'll be moving away simply to ensure confidence that I understand my own infrastructure in the limited time I have to maintain it. It's the weirdest kind of success problem to have, but the truth is if it wasn't such a pain to make the move, I'd have transitioned away from GitLab six months ago.” – ",[16,38,41],{"href":39,"rel":40},"https://news.ycombinator.com/item?id=19230557",[],"Sir_Substance on HackerNews",[43,44,46],"h2",{"id":45},"step-1-establish-priorities-to-solve-our-memory-problem","Step 1: Establish priorities to solve our memory problem",[12,48,49,50,55,56,61,62,67],{},"We created the GitLab Memory team to tackle this performance challenge. The aim of the Memory team is to ",[16,51,54],{"href":52,"rel":53},"https://gitlab.com/gitlab-org/gitlab-ce/commit/0cd5d968038d6d64d95add0bbe3d63d8fcfdc23b",[],"reduce the minimum instance for GitLab from 8GB"," to 1GB of RAM. By reducing the memory required to run GitLab to 1GB, ",[16,57,60],{"href":58,"rel":59},"https://gitlab.com/groups/gitlab-org/-/epics/448",[],"our application can run anywhere",", even on inexpensive commodity computers like an unaltered ",[16,63,66],{"href":64,"rel":65},"https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/",[],"Raspberry Pi 3 Model B+",".",[12,69,70],{},"There is no quick fix for reducing GitLab’s memory footprint, but the team has started by investigating memory and performance bottlenecks, gathering data, and prioritizing activities for the next three to four months based on these results.",[12,72,73],{},"“We know we have memory issues to address, but we need more data to determine the source, the impact and how to best approach the problem,” says Craig Gomes, memory engineering manager.",[12,75,76],{},"Kamil Trzciński, distinguished engineer and memory specialist at GitLab, says the top three priorities for the Memory team fall into three distinct buckets:",[78,79,80,88,94],"ol",{},[81,82,83],"li",{},[16,84,87],{"href":85,"rel":86},"https://gitlab.com/groups/gitlab-org/-/epics/954",[],"Moving over to Puma",[81,89,90],{},[16,91,93],{"href":58,"rel":92},[],"Perform the low-level exercise by optimizing endpoints",[81,95,96],{},[16,97,100],{"href":98,"rel":99},"https://gitlab.com/groups/gitlab-org/-/epics/1415",[],"Improving our development practices",[102,103,105],"h3",{"id":104},"migrating-from-unicorn-to-puma","Migrating from Unicorn to Puma",[12,107,108],{},"Preliminary research shows that the bulk of GitLab’s memory usage comes from running web application processes on Unicorn.",[12,110,111],{},"“Each Web application process (Unicorn) can take 500 MB of RAM, and it can handle a single request at a time. The more users and traffic we need to support, the more processes and hence RAM we need,” says Stan Hu, engineering fellow at GitLab.",[12,113,114],{},"One of the first projects the Memory team is tackling is testing to see if migrating from Unicorn to Puma will reduce GitLab’s memory footprint. Both Unicorn and Puma are multi-threaded HTTP web servers that run on Rails, but unlike Unicorn, Puma is threaded and does not require as much memory.",[12,116,117,118,123,124,67],{},"The Memory team has successfully ",[16,119,122],{"href":120,"rel":121},"https://gitlab.com/groups/gitlab-com/gl-infra/-/epics/82",[],"configured Puma to work on dev.gitlab.com"," to test its functionality and measure its memory reduction. The next big project in this domain is to ",[16,125,127],{"href":85,"rel":126},[],"enable Puma on GitLab.com",[102,129,131],{"id":130},"dig-deeper-into-whats-causing-memory-issues-for-gitlabcom","Dig deeper into what's causing memory issues for GitLab.com",[12,133,134],{},"Before GitLab is able to run on less memory, the team needs to fix the memory problems we know about already on GitLab.com. One of these problems is the memory killer on open source background processor, Sidekiq.",[12,136,137,138,143,144,149],{},"\"If a Sidekiq job runs, takes too much memory, and then gets killed, jobs in the queue will be retried indefinitely,\" says Stan. The team is working to fix this, along with other priority one problems with memory usage in ",[16,139,142],{"href":140,"rel":141},"https://gitlab.com/gitlab-org/gitlab-ce/issues/59754",[],"project import"," and ",[16,145,148],{"href":146,"rel":147},"https://gitlab.com/gitlab-org/gitlab-ce/issues/35389",[],"exports"," in the 12.3 release.",[102,151,153],{"id":152},"improve-development-practices-around-memory-usage","Improve development practices around memory usage",[12,155,156,157,67],{},"The Memory team created a massive epic that aims to capture related ",[16,158,160],{"href":98,"rel":159},[],"development work focusing on making improvements to internal dev practices around code complexity and memory usage",[12,162,163,164,168,169,174,175,67],{},"\"The reason behind that is to enable everyone during development to understand the impact of introducing new changes to the application,\" says Kamil in the ",[16,165,167],{"href":98,"rel":166},[],"epic",". Some of the projects they are working on for the 12.3 release include ",[16,170,173],{"href":171,"rel":172},"https://gitlab.com/gitlab-org/quality/performance/issues/34",[],"testing more endpoints using typical GitLab user scenarios (e.g. commenting on a MR)"," and set up a ",[16,176,179],{"href":177,"rel":178},"https://gitlab.com/gitlab-org/quality/performance/issues/37",[],"performance monitoring solution across different environments",[43,181,183],{"id":182},"step-2-create-a-team-to-fix-the-memory-problem","Step 2: Create a team to fix the memory problem",[12,185,186],{},"We need a specialized engineering team to assess the scope of the problem and identify solutions to reduce GitLab’s memory requirements.",[12,188,189],{},"“Right now we have a very small team with two brand new team members,” says Craig. “The team is getting up to speed quickly and there is a lot of excitement about the potential of the team that more work keeps coming our way. It's a great challenge to have, and having more experienced engineers on the team will help us to achieve our goals.”",[12,191,192,193,67],{},"The current memory team is small but mighty. We have Craig, the engineering manager, and three engineers on the permanent memory team: Kamil, Qingyu Zhao, and Aleksei Lipniagov. The team works closely with senior product manager for distribution and memory, Larissa Lane. ",[16,194,197],{"href":195,"rel":196},"https://handbook.gitlab.com/job-description-library/engineering/backend-engineer/#memory",[],"We’re looking for more qualified people to join our team",[12,199,200,201,206],{},"The Memory team is actively hiring engineers to help us enhance GitLab’s performance, but we have a high rejection rate because we require a specific, hard-to-find skill set. A ",[16,202,205],{"href":203,"rel":204},"https://gitlab.com/gitlab-com/www-gitlab-com/issues/4885",[],"top priority for the Memory team is hiring at least one senior engineer in FY20-Q3",", which will allow us to take on a bigger workload as we move toward our goal of getting GitLab running on less than 1GB.",[12,208,209,210,67],{},"Follow along with the Memory team by ",[16,211,214],{"href":212,"rel":213},"https://www.youtube.com/playlist?list=PL05JrBw4t0Kq_5ZWIHYfbcAYjtXYcEZA3",[],"subscribing to their channel on GitLab Unfiltered",[12,216,217,218,223,224],{},"Cover photo by ",[16,219,222],{"href":220,"rel":221},"https://unsplash.com/@condorito1953?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText",[],"Arie Wubben"," on ",[16,225,228],{"href":226,"rel":227},"https://unsplash.com/search/photos/airplane?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText",[],"Unsplash",{"title":230,"searchDepth":231,"depth":231,"links":232},"",2,[233,239],{"id":45,"depth":231,"text":46,"children":234},[235,237,238],{"id":104,"depth":236,"text":105},3,{"id":130,"depth":236,"text":131},{"id":152,"depth":236,"text":153},{"id":182,"depth":231,"text":183},"engineering","2019-09-13","GitLab has a memory problem, so we created a specialized team to fix it.","md",null,false,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749678549/Blog/Hero%20Images/memory_team_arie-wubben.jpg",{},true,"/en-us/blog/why-we-created-the-gitlab-memory-team",{"title":5,"description":242,"ogTitle":5,"ogDescription":242,"noIndex":245,"ogImage":246,"ogUrl":251,"ogSiteName":252,"ogType":253,"canonicalUrls":251},"https://about.gitlab.com/blog/why-we-created-the-gitlab-memory-team","https://about.gitlab.com","article","why-we-created-the-gitlab-memory-team","en-us/blog/why-we-created-the-gitlab-memory-team",[257,258,259],"inside GitLab","performance","production","BlogPost","JRjTm7F0ynWFhJXqNicthHUSYTnDpfYvYZtQDp5g1xM",{"logo":263,"freeTrial":268,"sales":273,"login":278,"items":283,"search":610,"minimal":641,"duo":660,"switchNav":669,"pricingDeployment":680},{"config":264},{"href":265,"dataGaName":266,"dataGaLocation":267},"/","gitlab logo","header",{"text":269,"config":270},"Get free trial",{"href":271,"dataGaName":272,"dataGaLocation":267},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com&glm_content=default-saas-trial/","free trial",{"text":274,"config":275},"Request a demo",{"href":276,"dataGaName":277,"dataGaLocation":267},"/sales/?contact-topic=request-demo","sales",{"text":279,"config":280},"Sign in",{"href":281,"dataGaName":282,"dataGaLocation":267},"https://gitlab.com/users/sign_in/","sign in",[284,313,413,418,532,588],{"text":285,"config":286,"menu":288},"Platform",{"dataNavLevelOne":287},"platform",{"type":289,"columns":290},"cards",[291,297,305],{"title":285,"description":292,"link":293},"The intelligent orchestration platform for DevSecOps",{"text":294,"config":295},"Explore our Platform",{"href":296,"dataGaName":287,"dataGaLocation":267},"/platform/",{"title":298,"description":299,"link":300},"GitLab Duo Agent Platform","Agentic AI for the entire software lifecycle",{"text":301,"config":302},"Meet GitLab Duo",{"href":303,"dataGaName":304,"dataGaLocation":267},"/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":306,"description":307,"link":308},"Why GitLab","See the top reasons enterprises choose GitLab",{"text":309,"config":310},"Learn more",{"href":311,"dataGaName":312,"dataGaLocation":267},"/why-gitlab/","why gitlab",{"text":314,"left":248,"config":315,"menu":317},"Product",{"dataNavLevelOne":316},"solutions",{"type":318,"link":319,"columns":323,"feature":392},"lists",{"text":320,"config":321},"View all Solutions",{"href":322,"dataGaName":316,"dataGaLocation":267},"/solutions/",[324,348,371],{"title":325,"description":326,"link":327,"items":332},"Automation","CI/CD and automation to accelerate deployment",{"config":328},{"icon":329,"href":330,"dataGaName":331,"dataGaLocation":267},"AutomatedCodeAlt","/solutions/delivery-automation/","automated software delivery",[333,337,340,344],{"text":334,"config":335},"CI/CD",{"href":336,"dataGaLocation":267,"dataGaName":334},"/solutions/continuous-integration/",{"text":298,"config":338},{"href":303,"dataGaLocation":267,"dataGaName":339},"gitlab duo agent platform - product menu",{"text":341,"config":342},"Source Code Management",{"href":343,"dataGaLocation":267,"dataGaName":341},"/solutions/source-code-management/",{"text":345,"config":346},"Automated Software Delivery",{"href":330,"dataGaLocation":267,"dataGaName":347},"Automated software delivery",{"title":349,"description":350,"link":351,"items":356},"Security","Deliver code faster without compromising security",{"config":352},{"href":353,"dataGaName":354,"dataGaLocation":267,"icon":355},"/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[357,361,366],{"text":358,"config":359},"Application Security Testing",{"href":353,"dataGaName":360,"dataGaLocation":267},"Application security testing",{"text":362,"config":363},"Software Supply Chain Security",{"href":364,"dataGaLocation":267,"dataGaName":365},"/solutions/supply-chain/","Software supply chain security",{"text":367,"config":368},"Software Compliance",{"href":369,"dataGaName":370,"dataGaLocation":267},"/solutions/software-compliance/","software compliance",{"title":372,"link":373,"items":378},"Measurement",{"config":374},{"icon":375,"href":376,"dataGaName":377,"dataGaLocation":267},"DigitalTransformation","/solutions/visibility-measurement/","visibility and measurement",[379,383,387],{"text":380,"config":381},"Visibility & Measurement",{"href":376,"dataGaLocation":267,"dataGaName":382},"Visibility and Measurement",{"text":384,"config":385},"Value Stream Management",{"href":386,"dataGaLocation":267,"dataGaName":384},"/solutions/value-stream-management/",{"text":388,"config":389},"Analytics & Insights",{"href":390,"dataGaLocation":267,"dataGaName":391},"/solutions/analytics-and-insights/","Analytics and insights",{"title":393,"type":318,"items":394},"GitLab for",[395,401,407],{"text":396,"config":397},"Enterprise",{"icon":398,"href":399,"dataGaLocation":267,"dataGaName":400},"Building","/enterprise/","enterprise",{"text":402,"config":403},"Small Business",{"icon":404,"href":405,"dataGaLocation":267,"dataGaName":406},"Work","/small-business/","small business",{"text":408,"config":409},"Public Sector",{"icon":410,"href":411,"dataGaLocation":267,"dataGaName":412},"Organization","/solutions/public-sector/","public sector",{"text":414,"config":415},"Pricing",{"href":416,"dataGaName":417,"dataGaLocation":267,"dataNavLevelOne":417},"/pricing/","pricing",{"text":419,"config":420,"menu":422},"Resources",{"dataNavLevelOne":421},"resources",{"type":318,"link":423,"columns":427,"feature":521},{"text":424,"config":425},"View all resources",{"href":426,"dataGaName":421,"dataGaLocation":267},"/resources/",[428,461,488],{"title":429,"items":430},"Getting started",[431,436,441,446,451,456],{"text":432,"config":433},"Install",{"href":434,"dataGaName":435,"dataGaLocation":267},"/install/","install",{"text":437,"config":438},"Quick start guides",{"href":439,"dataGaName":440,"dataGaLocation":267},"/get-started/","quick setup checklists",{"text":442,"config":443},"Learn",{"href":444,"dataGaLocation":267,"dataGaName":445},"https://university.gitlab.com/","learn",{"text":447,"config":448},"Product documentation",{"href":449,"dataGaName":450,"dataGaLocation":267},"https://docs.gitlab.com/","product documentation",{"text":452,"config":453},"Best practice videos",{"href":454,"dataGaName":455,"dataGaLocation":267},"/getting-started-videos/","best practice videos",{"text":457,"config":458},"Integrations",{"href":459,"dataGaName":460,"dataGaLocation":267},"/integrations/","integrations",{"title":462,"items":463},"Discover",[464,469,474,479,483],{"text":465,"config":466},"Customer success stories",{"href":467,"dataGaName":468,"dataGaLocation":267},"/customers/","customer success stories",{"text":470,"config":471},"Blog",{"href":472,"dataGaName":473,"dataGaLocation":267},"/blog/","blog",{"text":475,"config":476},"Demo Hub",{"href":477,"dataGaName":478,"dataGaLocation":267},"/demo-hub/","demo hub",{"text":480,"config":481},"The Source",{"href":482,"dataGaName":473,"dataGaLocation":267},"/the-source/",{"text":484,"config":485},"Remote",{"href":486,"dataGaName":487,"dataGaLocation":267},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":489,"items":490},"Connect",[491,496,501,506,511,516],{"text":492,"config":493},"GitLab Services",{"href":494,"dataGaName":495,"dataGaLocation":267},"/services/","services",{"text":497,"config":498},"Contribute",{"href":499,"dataGaName":500,"dataGaLocation":267},"https://contributors.gitlab.com","contribute",{"text":502,"config":503},"Community",{"href":504,"dataGaName":505,"dataGaLocation":267},"/community/","community",{"text":507,"config":508},"Forum",{"href":509,"dataGaName":510,"dataGaLocation":267},"https://forum.gitlab.com/","forum",{"text":512,"config":513},"Events",{"href":514,"dataGaName":515,"dataGaLocation":267},"/events/","events",{"text":517,"config":518},"Partners",{"href":519,"dataGaName":520,"dataGaLocation":267},"/partners/","partners",{"config":522,"title":525,"text":526,"link":527},{"background":523,"textColor":524},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","What’s new in GitLab","Stay updated with our latest features and improvements.",{"text":528,"config":529},"Read the latest",{"href":530,"dataGaName":531,"dataGaLocation":267},"/whats-new/","whats new",{"text":533,"config":534,"menu":536},"Company",{"dataNavLevelOne":535},"company",{"type":318,"columns":537},[538],{"items":539},[540,545,551,553,558,563,568,573,578,583],{"text":541,"config":542},"About",{"href":543,"dataGaName":544,"dataGaLocation":267},"/company/","about",{"text":546,"config":547,"footerGa":550},"Jobs",{"href":548,"dataGaName":549,"dataGaLocation":267},"/jobs/","jobs",{"dataGaName":549},{"text":512,"config":552},{"href":514,"dataGaName":515,"dataGaLocation":267},{"text":554,"config":555},"Leadership",{"href":556,"dataGaName":557,"dataGaLocation":267},"/company/team/e-group/","leadership",{"text":559,"config":560},"Handbook",{"href":561,"dataGaName":562,"dataGaLocation":267},"https://handbook.gitlab.com/","handbook",{"text":564,"config":565},"Investor relations",{"href":566,"dataGaName":567,"dataGaLocation":267},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":569,"config":570},"Trust Center",{"href":571,"dataGaName":572,"dataGaLocation":267},"/security/","trust center",{"text":574,"config":575},"AI Transparency Center",{"href":576,"dataGaName":577,"dataGaLocation":267},"/ai-transparency-center/","ai transparency center",{"text":579,"config":580},"Newsletter",{"href":581,"dataGaName":582,"dataGaLocation":267},"/company/contact/#contact-forms","newsletter",{"text":584,"config":585},"Press",{"href":586,"dataGaName":587,"dataGaLocation":267},"/press/","press",{"text":589,"config":590,"menu":591},"Contact us",{"dataNavLevelOne":535},{"type":318,"columns":592},[593],{"items":594},[595,600,605],{"text":596,"config":597},"Talk to sales",{"href":598,"dataGaName":599,"dataGaLocation":267},"/sales/","talk to sales",{"text":601,"config":602},"Support portal",{"href":603,"dataGaName":604,"dataGaLocation":267},"https://support.gitlab.com/hc/en-us","support portal",{"text":606,"config":607},"Customer portal",{"href":608,"dataGaName":609,"dataGaLocation":267},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":611,"login":612,"suggestions":619},"Close",{"text":613,"link":614},"To search repositories and projects, login to",{"text":615,"config":616},"gitlab.com",{"href":281,"dataGaName":617,"dataGaLocation":618},"search login","search",{"text":620,"default":621},"Suggestions",[622,624,628,630,634,638],{"text":298,"config":623},{"href":303,"dataGaName":298,"dataGaLocation":618},{"text":625,"config":626},"Code Suggestions (AI)",{"href":627,"dataGaName":625,"dataGaLocation":618},"/solutions/code-suggestions/",{"text":334,"config":629},{"href":336,"dataGaName":334,"dataGaLocation":618},{"text":631,"config":632},"GitLab on AWS",{"href":633,"dataGaName":631,"dataGaLocation":618},"/partners/technology-partners/aws/",{"text":635,"config":636},"GitLab on Google Cloud",{"href":637,"dataGaName":635,"dataGaLocation":618},"/partners/technology-partners/google-cloud-platform/",{"text":639,"config":640},"Why GitLab?",{"href":311,"dataGaName":639,"dataGaLocation":618},{"freeTrial":642,"mobileIcon":647,"desktopIcon":652,"secondaryButton":655},{"text":643,"config":644},"Start free trial",{"href":645,"dataGaName":272,"dataGaLocation":646},"https://gitlab.com/-/trials/new/","nav",{"altText":648,"config":649},"Gitlab Icon",{"src":650,"dataGaName":651,"dataGaLocation":646},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":648,"config":653},{"src":654,"dataGaName":651,"dataGaLocation":646},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":656,"config":657},"Get Started",{"href":658,"dataGaName":659,"dataGaLocation":646},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/get-started/","get started",{"freeTrial":661,"mobileIcon":665,"desktopIcon":667},{"text":662,"config":663},"Learn more about GitLab Duo",{"href":303,"dataGaName":664,"dataGaLocation":646},"gitlab duo",{"altText":648,"config":666},{"src":650,"dataGaName":651,"dataGaLocation":646},{"altText":648,"config":668},{"src":654,"dataGaName":651,"dataGaLocation":646},{"button":670,"mobileIcon":675,"desktopIcon":677},{"text":671,"config":672},"/switch",{"href":673,"dataGaName":674,"dataGaLocation":646},"#contact","switch",{"altText":648,"config":676},{"src":650,"dataGaName":651,"dataGaLocation":646},{"altText":648,"config":678},{"src":679,"dataGaName":651,"dataGaLocation":646},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":681,"mobileIcon":686,"desktopIcon":688},{"text":682,"config":683},"Back to pricing",{"href":416,"dataGaName":684,"dataGaLocation":646,"icon":685},"back to pricing","GoBack",{"altText":648,"config":687},{"src":650,"dataGaName":651,"dataGaLocation":646},{"altText":648,"config":689},{"src":654,"dataGaName":651,"dataGaLocation":646},{"title":691,"titleMobile":692,"button":693,"config":698},"Duo Agent Platform delivers 400% ROI, per new Forrester Consulting study.","400% ROI: Forrester TEI for GitLab Duo",{"text":309,"config":694},{"href":695,"dataGaName":696,"dataGaLocation":697},"https://about.gitlab.com/blog/gitlab-duo-agent-platform-delivers-400-percent-roi/","forrester-tei-dap-banner","global-banner",{"layout":699,"disabled":245},"release",{"data":701},{"text":702,"source":703,"edit":709,"contribute":714,"config":719,"items":724,"minimal":933},"Git is a trademark of Software Freedom Conservancy and our use of 'GitLab' is under license",{"text":704,"config":705},"View page source",{"href":706,"dataGaName":707,"dataGaLocation":708},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":710,"config":711},"Edit this page",{"href":712,"dataGaName":713,"dataGaLocation":708},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":715,"config":716},"Please contribute",{"href":717,"dataGaName":718,"dataGaLocation":708},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":720,"facebook":721,"youtube":722,"linkedin":723},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[725,772,825,869,901],{"title":414,"links":726,"subMenu":741},[727,731,736],{"text":728,"config":729},"View plans",{"href":416,"dataGaName":730,"dataGaLocation":708},"view plans",{"text":732,"config":733},"Why Premium?",{"href":734,"dataGaName":735,"dataGaLocation":708},"/pricing/premium/","why premium",{"text":737,"config":738},"Why Ultimate?",{"href":739,"dataGaName":740,"dataGaLocation":708},"/pricing/ultimate/","why ultimate",[742],{"title":743,"links":744},"Contact Us",[745,748,750,752,757,762,767],{"text":746,"config":747},"Contact sales",{"href":598,"dataGaName":277,"dataGaLocation":708},{"text":601,"config":749},{"href":603,"dataGaName":604,"dataGaLocation":708},{"text":606,"config":751},{"href":608,"dataGaName":609,"dataGaLocation":708},{"text":753,"config":754},"Status",{"href":755,"dataGaName":756,"dataGaLocation":708},"https://status.gitlab.com/","status",{"text":758,"config":759},"Terms of use",{"href":760,"dataGaName":761,"dataGaLocation":708},"/terms/","terms of use",{"text":763,"config":764},"Privacy statement",{"href":765,"dataGaName":766,"dataGaLocation":708},"/privacy/","privacy statement",{"text":768,"config":769},"Cookie preferences",{"dataGaName":770,"dataGaLocation":708,"id":771,"isOneTrustButton":248},"cookie preferences","ot-sdk-btn",{"title":314,"links":773,"subMenu":782},[774,778],{"text":775,"config":776},"DevSecOps platform",{"href":296,"dataGaName":777,"dataGaLocation":708},"devsecops platform",{"text":779,"config":780},"AI-Assisted Development",{"href":303,"dataGaName":781,"dataGaLocation":708},"ai-assisted development",[783],{"title":784,"links":785},"Topics",[786,791,796,800,805,810,815,820],{"text":787,"config":788},"CICD",{"href":789,"dataGaName":790,"dataGaLocation":708},"/topics/ci-cd/","cicd",{"text":792,"config":793},"GitOps",{"href":794,"dataGaName":795,"dataGaLocation":708},"/topics/gitops/","gitops",{"text":797,"config":798},"DevOps",{"href":18,"dataGaName":799,"dataGaLocation":708},"devops",{"text":801,"config":802},"Version Control",{"href":803,"dataGaName":804,"dataGaLocation":708},"/topics/version-control/","version control",{"text":806,"config":807},"DevSecOps",{"href":808,"dataGaName":809,"dataGaLocation":708},"/topics/devsecops/","devsecops",{"text":811,"config":812},"Cloud Native",{"href":813,"dataGaName":814,"dataGaLocation":708},"/topics/cloud-native/","cloud native",{"text":816,"config":817},"AI for Coding",{"href":818,"dataGaName":819,"dataGaLocation":708},"/topics/devops/ai-for-coding/","ai for coding",{"text":821,"config":822},"Agentic AI",{"href":823,"dataGaName":824,"dataGaLocation":708},"/topics/agentic-ai/","agentic ai",{"title":826,"links":827},"Solutions",[828,830,832,837,841,844,848,851,853,856,859,864],{"text":358,"config":829},{"href":353,"dataGaName":358,"dataGaLocation":708},{"text":347,"config":831},{"href":330,"dataGaName":331,"dataGaLocation":708},{"text":833,"config":834},"Agile development",{"href":835,"dataGaName":836,"dataGaLocation":708},"/solutions/agile-delivery/","agile delivery",{"text":838,"config":839},"SCM",{"href":343,"dataGaName":840,"dataGaLocation":708},"source code management",{"text":787,"config":842},{"href":336,"dataGaName":843,"dataGaLocation":708},"continuous integration & delivery",{"text":845,"config":846},"Value stream management",{"href":386,"dataGaName":847,"dataGaLocation":708},"value stream management",{"text":792,"config":849},{"href":850,"dataGaName":795,"dataGaLocation":708},"/solutions/gitops/",{"text":396,"config":852},{"href":399,"dataGaName":400,"dataGaLocation":708},{"text":854,"config":855},"Small business",{"href":405,"dataGaName":406,"dataGaLocation":708},{"text":857,"config":858},"Public sector",{"href":411,"dataGaName":412,"dataGaLocation":708},{"text":860,"config":861},"Education",{"href":862,"dataGaName":863,"dataGaLocation":708},"/solutions/education/","education",{"text":865,"config":866},"Financial services",{"href":867,"dataGaName":868,"dataGaLocation":708},"/solutions/finance/","financial services",{"title":419,"links":870},[871,873,875,877,880,882,885,887,889,891,893,895,897,899],{"text":432,"config":872},{"href":434,"dataGaName":435,"dataGaLocation":708},{"text":437,"config":874},{"href":439,"dataGaName":440,"dataGaLocation":708},{"text":442,"config":876},{"href":444,"dataGaName":445,"dataGaLocation":708},{"text":447,"config":878},{"href":449,"dataGaName":879,"dataGaLocation":708},"docs",{"text":470,"config":881},{"href":472,"dataGaName":473,"dataGaLocation":708},{"text":883,"config":884},"What's new",{"href":530,"dataGaName":531,"dataGaLocation":708},{"text":465,"config":886},{"href":467,"dataGaName":468,"dataGaLocation":708},{"text":484,"config":888},{"href":486,"dataGaName":487,"dataGaLocation":708},{"text":492,"config":890},{"href":494,"dataGaName":495,"dataGaLocation":708},{"text":497,"config":892},{"href":499,"dataGaName":500,"dataGaLocation":708},{"text":502,"config":894},{"href":504,"dataGaName":505,"dataGaLocation":708},{"text":507,"config":896},{"href":509,"dataGaName":510,"dataGaLocation":708},{"text":512,"config":898},{"href":514,"dataGaName":515,"dataGaLocation":708},{"text":517,"config":900},{"href":519,"dataGaName":520,"dataGaLocation":708},{"title":533,"links":902},[903,905,907,909,911,913,917,922,924,926,928],{"text":541,"config":904},{"href":543,"dataGaName":535,"dataGaLocation":708},{"text":546,"config":906},{"href":548,"dataGaName":549,"dataGaLocation":708},{"text":554,"config":908},{"href":556,"dataGaName":557,"dataGaLocation":708},{"text":559,"config":910},{"href":561,"dataGaName":562,"dataGaLocation":708},{"text":564,"config":912},{"href":566,"dataGaName":567,"dataGaLocation":708},{"text":914,"config":915},"Sustainability",{"href":916,"dataGaName":914,"dataGaLocation":708},"/sustainability/",{"text":918,"config":919},"Diversity, inclusion and belonging (DIB)",{"href":920,"dataGaName":921,"dataGaLocation":708},"/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":569,"config":923},{"href":571,"dataGaName":572,"dataGaLocation":708},{"text":579,"config":925},{"href":581,"dataGaName":582,"dataGaLocation":708},{"text":584,"config":927},{"href":586,"dataGaName":587,"dataGaLocation":708},{"text":929,"config":930},"Modern Slavery Transparency Statement",{"href":931,"dataGaName":932,"dataGaLocation":708},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":934},[935,938,941],{"text":936,"config":937},"Terms",{"href":760,"dataGaName":761,"dataGaLocation":708},{"text":939,"config":940},"Cookies",{"dataGaName":770,"dataGaLocation":708,"id":771,"isOneTrustButton":248},{"text":942,"config":943},"Privacy",{"href":765,"dataGaName":766,"dataGaLocation":708},[945],{"id":946,"title":7,"body":244,"config":947,"content":949,"description":244,"extension":952,"meta":953,"navigation":248,"path":954,"seo":955,"stem":956,"__hash__":957},"blogAuthors/en-us/blog/authors/sara-kassabian.yml",{"template":948},"BlogAuthor",{"name":7,"config":950},{"headshot":230,"ctfId":951},"skassabian","yml",{},"/en-us/blog/authors/sara-kassabian",{},"en-us/blog/authors/sara-kassabian","6cCCPpjzkCDfb77tMVCyG8_FImRVQXA2VCMyiAjhFX0",[959,968,976],{"title":960,"description":961,"heroImage":962,"category":240,"date":963,"authors":964,"slug":967,"externalUrl":244},"Confidential AI for GitLab Self-Hosted","Give developers AI coding agents in GitLab Duo without source code leaving a hardware-encrypted boundary — no GPUs needed.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png","2026-08-06",[965,966],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"title":969,"description":970,"heroImage":971,"category":240,"date":972,"authors":973,"slug":975,"externalUrl":244},"Green DevOps: Why carbon measurement belongs in your CI/CD pipeline","CI/CD pipelines have a hidden carbon cost. Here's why measuring it matters, and how you can get started with Eco CI and Carmen in GitLab.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1765809212/noh0mdfn9o94ry9ykura.png","2026-07-09",[974],"Lysanne Pinto","green-devops-carbon-measurement-cicd-pipeline",{"title":977,"description":978,"heroImage":979,"category":240,"date":980,"authors":981,"slug":983,"externalUrl":244},"How to build CI/CD observability at scale","This practical guide to GitLab pipeline analytics helps self-managed users gain operational insights using Prometheus and Grafana.","https://res.cloudinary.com/about-gitlab-com/image/upload/v1774465167/n5hlvrsrheadeccyr1oz.png","2026-04-28",[982],"Paul Meresanu","how-to-build-ci-cd-observability-at-scale",{"promotions":985},[986,1000,1012,1024],{"id":987,"categories":988,"header":990,"text":991,"button":992,"image":997},"ai-modernization",[989],"ai","Is AI achieving its promise at scale?","Quiz will take 5 minutes or less",{"text":993,"config":994},"Get your AI maturity score",{"href":995,"dataGaName":996,"dataGaLocation":473},"/assessments/ai-modernization-assessment/","modernization assessment",{"config":998},{"src":999},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1001,"categories":1002,"header":1004,"text":991,"button":1005,"image":1009},"devops-modernization",[1003,809],"product","Are you just managing tools or shipping innovation?",{"text":1006,"config":1007},"Get your DevOps maturity score",{"href":1008,"dataGaName":996,"dataGaLocation":473},"/assessments/devops-modernization-assessment/",{"config":1010},{"src":1011},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1013,"categories":1014,"header":1016,"text":991,"button":1017,"image":1021},"security-modernization",[1015],"security","Are you trading speed for security?",{"text":1018,"config":1019},"Get your security maturity score",{"href":1020,"dataGaName":996,"dataGaLocation":473},"/assessments/security-modernization-assessment/",{"config":1022},{"src":1023},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1025,"paths":1026,"header":1029,"text":1030,"button":1031,"image":1036},"github-azure-migration",[1027,1028],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","Is your team ready for GitHub's Azure move?","GitHub is already rebuilding around Azure. Find out what it means for you.",{"text":1032,"config":1033},"See how GitLab compares to GitHub",{"href":1034,"dataGaName":1035,"dataGaLocation":473},"/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1037},{"src":1011},{"header":1039,"blurb":1040,"button":1041,"secondaryButton":1046},"Start building faster today","See what your team can do with the intelligent orchestration platform for DevSecOps.\n",{"text":1042,"config":1043},"Get your free trial",{"href":1044,"dataGaName":272,"dataGaLocation":1045},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/","feature",{"text":746,"config":1047},{"href":598,"dataGaName":277,"dataGaLocation":1045},1786803739437]