[{"data":1,"prerenderedAt":1337},["ShallowReactive",2],{"/ja-jp/blog/how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes":3,"navigation-ja-jp":544,"banner-ja-jp":974,"footer-ja-jp":982,"blog-post-authors-ja-jp-Karthik Nayak|Manuel Kraft":1224,"blog-related-posts-ja-jp-how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes":1251,"blog-promotions-ja-jp":1274,"next-steps-ja-jp":1328},{"id":4,"title":5,"authors":6,"body":9,"category":521,"date":522,"description":523,"extension":524,"externalUrl":525,"faq":525,"featured":263,"heroImage":526,"meta":527,"navigation":263,"path":528,"seo":529,"slug":534,"stem":535,"tags":536,"template":542,"updatedDate":525,"__hash__":543},"blogPosts/ja-jp/blog/how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes.md","GitLabリポジトリのバックアップを48時間から41分に短縮した方法",[7,8],"Karthik Nayak","Manuel Kraft",{"type":10,"value":11,"toc":511},"minimark",[12,23,26,29,33,36,71,74,77,80,92,95,99,102,109,112,128,138,149,153,156,162,397,406,410,413,443,447,450,470,473,487,490,493,496,507],[13,14,15,16,22],"p",{},"リポジトリのバックアップは、いかなる堅牢なディザスタリカバリ戦略においても不可欠な要素です。しかし、リポジトリのサイズが大きくなるにつれて、信頼性の高いバックアップの作成プロセスはますます難しくなります。GitLabでは、",[17,18,21],"a",{"href":19,"rel":20},"https://gitlab.com/gitlab-org/gitlab",[],"Railsリポジトリ","のバックアップに48時間かかっていました。そのため、バックアップ頻度かシステムパフォーマンスのどちらを優先するかを選ばないといけないという難しい状況にありました。お客様のため、そして社内ユーザーのためにこの問題に取り組むことにしました。",[13,24,25],{},"最終的に、15年前に作成したGit関数でO(N²)レベルの複雑なアルゴリズムが使われていたのがこの問題の原因であることを突き止め、アルゴリズムを変更して修正したところ、__バックアップ時間が大幅に短縮__されました。その結果、コストの削減、リスクの軽減とともに、コードベースに合わせて実際にスケールするバックアップ戦略を実施できるようになりました。",[13,27,28],{},"これは、大規模なリポジトリのユーザーなら誰にでも起こりうるGitのスケーラビリティの問題であることが判明しました。この問題をどのように追跡して修正したかをご説明します。",[30,31,32],"h2",{"id":32},"大規模なバックアップ",[13,34,35],{},"まずは、問題について詳しく見ていきましょう。組織においてリポジトリのサイズが大きくなり、バックアップが複雑化するにつれて、以下のような課題が生じる可能性があります。",[37,38,39,47,53,59,65],"ul",{},[40,41,42,46],"li",{},[43,44,45],"strong",{},"時間がかかるバックアップ","：非常にサイズの大きいリポジトリを使用している場合、バックアップの作成に数時間かかる可能性があるため、定期的なバックアップを行うのが難しくなりがちです。",[40,48,49,52],{},[43,50,51],{},"リソースの集中","：長時間のバックアップ処理には大量のサーバーリソースが必要となることがあるため、他のオペレーションに影響を及ぼす可能性があります。",[40,54,55,58],{},[43,56,57],{},"バックアップの実施期間","：24時間体制で業務を行っているチームにとって、このような長時間の処理を行える適切なメンテナンス期間を確保するのは難しい場合があります。",[40,60,61,64],{},[43,62,63],{},"失敗するリスクの増大","：バックアップ処理に長時間かかると、ネットワークの問題、サーバーの再起動、システムエラーなどによる中断の影響を受けやすくなります。そのため、場合によっては長時間かかるバックアップ処理を最初からやり直さざるを得なくなります。",[40,66,67,70],{},[43,68,69],{},"競合状態","：バックアップの作成に時間がかかるため、その間にリポジトリが大きく変更される可能性があります。結果として、使用できないバックアップが作成されたり、オブジェクトにアクセスできなくなってバックアップ処理が中断されたりすることがあります。",[13,72,73],{},"このような課題によって、バックアップの頻度や完全性を妥協せざるを得なくなる可能性があります。しかしながら、データ保護という観点では妥協すべきではありません。バックアップの実施期間が長くなると、顧客は回避策を取らざるを得なくなることがあります。その場合、外部ツールの導入やバックアップ頻度の削減などが行われますが、結果として、組織全体で一貫したデータ保護戦略を維持できなくなる可能性があります。",[13,75,76],{},"では、GitLabがどのような方法でパフォーマンス上のボトルネックを特定し、解決策を見つけ、バックアップ時間を短縮するためにどのように導入したかを詳しく見ていきましょう。",[30,78,79],{"id":79},"技術的な課題",[13,81,82,83,91],{},"GitLabのリポジトリバックアップ機能では、",[17,84,87],{"href":85,"rel":86},"https://git-scm.com/docs/git-bundle",[],[88,89,90],"code",{},"git bundle create","コマンドを使用しています。このコマンドは、ブランチやタグのようなすべてのオブジェクトと参照を含むリポジトリの完全なスナップショットをキャプチャします。このバンドルは、リポジトリを正確な状態で再作成するための復元ポイントとして機能します。",[13,93,94],{},"しかしながら、このコマンドの実装には参照数に関連するスケーラビリティの低さの問題があり、パフォーマンス上のボトルネックとなっていました。リポジトリ内の参照数が増えるにつれて、処理時間が飛躍的に増加していました。当社の一番大きなリポジトリでは数百万個の参照が含まれますが、バックアップ処理に48時間以上かかることもありました。",[96,97,98],"h3",{"id":98},"根本原因分析",[13,100,101],{},"そこで、このパフォーマンス上のボトルネックの根本原因を特定するために、実行中のコマンドのフレームグラフを分析しました。",[13,103,104],{},[105,106],"img",{"alt":107,"src":108},"実行中のコマンドが示されたフレームグラフ","https://res.cloudinary.com/about-gitlab-com/image/upload/v1750097176/Blog/Content%20Images/Blog/Content%20Images/image1_aHR0cHM6_1750097176388.jpg",[13,110,111],{},"フレームグラフは、スタックトレースを使用してコマンドの実行パスを表示します。各バーはコード内の関数に対応しており、バーの幅はその特定の関数内でコマンドの実行に費やされた時間を示します。",[13,113,114,115,117,118,121,122,127],{},"10,000個の参照が含まれるリポジトリで実行された",[88,116,90],{},"コマンドのフレームグラフを調べたところ、実行時間の約80%が",[88,119,120],{},"object_array_remove_duplicates()","関数に費やされていました。この関数は、",[17,123,126],{"href":124,"rel":125},"https://gitlab.com/gitlab-org/git/-/commit/b2a6d1c686",[],"コミットb2a6d1c686","（バンドル：同じ参照を複数回指定できるように許可、2009年1月17日）でGitに導入されたものです。",[13,129,130,131,133,134,137],{},"この変更内容を理解するには、",[88,132,90],{},"を使用すると、バンドルに含める参照を指定できることを把握する必要があります。完全なリポジトリバンドルの場合、",[88,135,136],{},"--all","フラグを指定するとすべての参照がパッケージ化されます。",[13,139,140,141,144,145,148],{},"このコミットは、ユーザーがコマンドラインから重複した参照を指定（例：",[88,142,143],{},"git bundle create main.bundle main main","）すると、重複したmain参照を適切に処理せずにバンドルが作成されてしまうという問題に対処したものでした。Gitリポジトリでこのバンドルをアンバンドルすると、同じ参照を二度書き込もうとするため、壊れてしまいます。そのため、重複回避を目的として、すべての参照で重複の特定処理が繰り返されるようにネストされた",[88,146,147],{},"for","ループを用いたコードが実装されました。このようなO(N²)アルゴリズムは、参照数が多いリポジトリではパフォーマンス上の重大なボトルネックとなり、かなりの処理時間がかかっていました。",[96,150,152],{"id":151},"修正方法onアルゴリズムを効率的なマッピングに置き換える","修正方法：O(N²)アルゴリズムを効率的なマッピングに置き換える",[13,154,155],{},"GitLabは、明らかになったパフォーマンスの問題を解決するために、ネストされたループをマップデータ構造に置き換えるアップストリーム修正をGitにコントリビュートしました。これにより、各参照がマップに追加され、各参照の単一のコピーのみが処理目的で自動的に保持されるようになりました。",[13,157,158,159,161],{},"この変更により、",[88,160,90],{},"のパフォーマンスが劇的に向上し、参照数の多いリポジトリのスケーラビリティが大幅に改善されました。10,000個の参照があるリポジトリでベンチマークテストを行った結果、パフォーマンスが6倍向上することが明らかになりました。",[163,164,169],"pre",{"className":165,"code":166,"language":167,"meta":168,"style":168},"language-shell shiki shiki-themes github-light","Benchmark 1: bundle (refcount = 100000, revision = master)\n  Time (mean ± σ):  14.653 s ±  0.203 s [User: 13.940 s, System: 0.762 s]\n  Range (min … max):   14.237 s … 14.920 s  10 runs\n\nBenchmark 2: bundle (refcount = 100000, revision = HEAD)\n  Time (mean ± σ):      2.394 s ±  0.023 s  [User: 1.684 s, System: 0.798 s]\n  Range (min … max):    2.364 s …  2.425 s  10 runs\n\nSummary\n  bundle (refcount = 100000, revision = HEAD) ran\n    6.12 ± 0.10 times faster than bundle (refcount = 100000, revision = master)\n","shell","",[88,170,171,209,240,258,265,290,314,328,333,339,360],{"__ignoreMap":168},[172,173,176,180,184,187,191,194,197,200,203,206],"span",{"class":174,"line":175},"line",1,[172,177,179],{"class":178},"s7eDp","Benchmark",[172,181,183],{"class":182},"sYBdl"," 1:",[172,185,186],{"class":182}," bundle",[172,188,190],{"class":189},"sgsFI"," (refcount ",[172,192,193],{"class":182},"=",[172,195,196],{"class":182}," 100000,",[172,198,199],{"class":182}," revision",[172,201,202],{"class":182}," =",[172,204,205],{"class":182}," master",[172,207,208],{"class":189},")\n",[172,210,212,215,218,221,224,227,231,234,237],{"class":174,"line":211},2,[172,213,214],{"class":178},"  Time",[172,216,217],{"class":189}," (mean ",[172,219,220],{"class":182},"±",[172,222,223],{"class":182}," σ",[172,225,226],{"class":189},"):  14.653 s ±  0.203 s [User: ",[172,228,230],{"class":229},"sYu0t","13.940",[172,232,233],{"class":189}," s, System: ",[172,235,236],{"class":229},"0.762",[172,238,239],{"class":189}," s]\n",[172,241,243,246,249,252,255],{"class":174,"line":242},3,[172,244,245],{"class":178},"  Range",[172,247,248],{"class":189}," (min ",[172,250,251],{"class":182},"…",[172,253,254],{"class":182}," max",[172,256,257],{"class":189},"):   14.237 s … 14.920 s  10 runs\n",[172,259,261],{"class":174,"line":260},4,[172,262,264],{"emptyLinePlaceholder":263},true,"\n",[172,266,268,270,273,275,277,279,281,283,285,288],{"class":174,"line":267},5,[172,269,179],{"class":178},[172,271,272],{"class":182}," 2:",[172,274,186],{"class":182},[172,276,190],{"class":189},[172,278,193],{"class":182},[172,280,196],{"class":182},[172,282,199],{"class":182},[172,284,202],{"class":182},[172,286,287],{"class":182}," HEAD",[172,289,208],{"class":189},[172,291,293,295,297,299,301,304,307,309,312],{"class":174,"line":292},6,[172,294,214],{"class":178},[172,296,217],{"class":189},[172,298,220],{"class":182},[172,300,223],{"class":182},[172,302,303],{"class":189},"):      2.394 s ±  0.023 s  [User: ",[172,305,306],{"class":229},"1.684",[172,308,233],{"class":189},[172,310,311],{"class":229},"0.798",[172,313,239],{"class":189},[172,315,317,319,321,323,325],{"class":174,"line":316},7,[172,318,245],{"class":178},[172,320,248],{"class":189},[172,322,251],{"class":182},[172,324,254],{"class":182},[172,326,327],{"class":189},"):    2.364 s …  2.425 s  10 runs\n",[172,329,331],{"class":174,"line":330},8,[172,332,264],{"emptyLinePlaceholder":263},[172,334,336],{"class":174,"line":335},9,[172,337,338],{"class":178},"Summary\n",[172,340,342,345,347,349,351,353,355,357],{"class":174,"line":341},10,[172,343,344],{"class":178},"  bundle",[172,346,190],{"class":189},[172,348,193],{"class":182},[172,350,196],{"class":182},[172,352,199],{"class":182},[172,354,202],{"class":182},[172,356,287],{"class":182},[172,358,359],{"class":189},") ran\n",[172,361,363,366,369,372,375,378,381,383,385,387,389,391,393,395],{"class":174,"line":362},11,[172,364,365],{"class":178},"    6.12",[172,367,368],{"class":182}," ±",[172,370,371],{"class":229}," 0.10",[172,373,374],{"class":182}," times",[172,376,377],{"class":182}," faster",[172,379,380],{"class":182}," than",[172,382,186],{"class":182},[172,384,190],{"class":189},[172,386,193],{"class":182},[172,388,196],{"class":182},[172,390,199],{"class":182},[172,392,202],{"class":182},[172,394,205],{"class":182},[172,396,208],{"class":189},[13,398,399,400,405],{},"パッチは承認され、アップストリームのGitに",[17,401,404],{"href":402,"rel":403},"https://gitlab.com/gitlab-org/git/-/commit/bb74c0abbc31da35be52999569ea481ebd149d1d",[],"マージ","されました。GitLabでは、次のGitバージョンがリリースされる前にお客様がすぐに恩恵を受けられるように、この修正をバックポートしました。",[30,407,409],{"id":408},"結果バックアップ時間の大幅な短縮に成功","結果：バックアップ時間の大幅な短縮に成功",[13,411,412],{},"この改善によるパフォーマンスの向上は、まさにこれまでの状況を一変させるものでした。",[37,414,415,425,431,437],{},[40,416,417,420,421,424],{},[43,418,419],{},"バックアップ時間が48時間から41分に短縮","：GitLab最大のリポジトリ（",[88,422,423],{},"gitlab-org/gitlab","）のバックアップを従来のわずか1.4%の時間で作成できるようになりました。",[40,426,427,430],{},[43,428,429],{},"一貫したパフォーマンスの維持","：この修正はリポジトリのサイズに関係なく機能し、安定してスケールします。",[40,432,433,436],{},[43,434,435],{},"効率的なリソースの利用","：バックアップ処理中のサーバー負荷が大幅に軽減されました。",[40,438,439,442],{},[43,440,441],{},"幅広い適用性","：もっとも劇的な改善が見られるのはバックアップの作成ですが、多数の参照を処理するすべてのバンドルベースの操作においてメリットがあります。",[30,444,446],{"id":445},"gitlabを利用するお客様にとってのメリット","GitLabを利用するお客様にとってのメリット",[13,448,449],{},"GitLabを利用する組織は、この改善によって、リポジトリのバックアップとディザスタリカバリ計画方法に関して、即座に次のような具体的なメリットを得られます。",[37,451,452],{},[40,453,454,457,458,461,462,465,466,469],{},[43,455,456],{},"バックアップ戦略の変革","     * 企業チームは、開発ワークフローに影響を与えたり、長期にわたるバックアップ期間を確保したりすることなく、夜間に実施する完全バックアップのスケジュールを確立できます。     * 長期のバックアップ専用の時間を設けなくとも、夜間スケジュール中にバックグラウンドでシームレスに実行できます。  * ",[43,459,460],{},"事業継続性の向上","    * バックアップ時間が数日から数分に短縮されたことで、組織は回復ポイント目標（RPO）を大幅に最小化できます。これはビジネスリスクの軽減につながります。災害が発生した場合でも、数日かからず、数時間の作業で復旧できる可能性があります。  * ",[43,463,464],{},"運用負荷の軽減","     * サーバーリソースの消費を抑えられ、メンテナンス期間が短縮されます。    * バックアップ時間が短縮されるため、コンピューティングコストも削減します。特に処理時間が延びると、コストの増加に直結するクラウド環境においては顕著です。  * ",[43,467,468],{},"将来にわたって活用できるインフラストラクチャ","     * リポジトリの規模が大きくなっても、バックアップ頻度とシステムパフォーマンスのどちらを優先するか選ぶ必要はもうありません。     * コードベースの拡大にあわせて、バックアップ戦略もシームレスに拡張できます。",[13,471,472],{},"組織は、パフォーマンスや完全性を犠牲にしなくても、より堅牢なバックアップ戦略を実施できるようになりました。以前は難しいトレードオフに直面していたものの、今では簡単な方法で運用できます。",[13,474,475,480,481,486],{},[17,476,479],{"href":477,"rel":478},"https://about.gitlab.com/ja-jp/blog/gitlab-18-0-release/",[],"GitLab 18.0","のリリース以降、ライセンスプランに関係なく、GitLabをご利用のお客様は全員、ご紹介した改善点を利用して",[17,482,485],{"href":483,"rel":484},"https://docs.gitlab.com/ja-jp/administration/backup_restore/backup_gitlab/",[],"バックアップ","戦略の立案および実施を行えるようになりました。設定を変更する必要はもうありません。",[30,488,489],{"id":489},"今後の展望",[13,491,492],{},"今回の革新的な改善は、スケーラブルでエンタープライズグレードなGitインフラの提供に向けた、当社の継続的な取り組みの一環です。バックアップの作成時間が48時間から41分に短縮されたことは重要なマイルストーンとなりましたが、引き続きスタック全体においてパフォーマンス上のボトルネックを特定し、対処しています。",[13,494,495],{},"今回の改善をGitのアップストリームプロジェクトにコントリビュートでき、GitLabユーザーだけでなく、広範なGitコミュニティにメリットをもたらせたことを特に誇りに思っています。このような協調的なアプローチにより、改善に対する徹底的なレビューおよび幅広いテストの実施が行われ、誰もがそのメリットを得られるようになります。",[497,498,499],"blockquote",{},[13,500,501,502],{},"GitLabではパフォーマンスを最適化するために、このような深いレベルでインフラに取り組んでいます。ぜひGitLab 18のオンラインリリースイベントにご参加ください。ほかにどのような根本的な機能強化が行われたかをご紹介します。",[17,503,506],{"href":504,"rel":505},"https://about.gitlab.com/ja-jp/eighteen/",[],"今すぐご登録ください！",[508,509,510],"style",{},"html pre.shiki code .s7eDp, html code.shiki .s7eDp{--shiki-default:#6F42C1}html pre.shiki code .sYBdl, html code.shiki .sYBdl{--shiki-default:#032F62}html pre.shiki code .sgsFI, html code.shiki .sgsFI{--shiki-default:#24292E}html pre.shiki code .sYu0t, html code.shiki .sYu0t{--shiki-default:#005CC5}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}",{"title":168,"searchDepth":211,"depth":211,"links":512},[513,514,518,519,520],{"id":32,"depth":211,"text":32},{"id":79,"depth":211,"text":79,"children":515},[516,517],{"id":98,"depth":242,"text":98},{"id":151,"depth":242,"text":152},{"id":408,"depth":211,"text":409},{"id":445,"depth":211,"text":446},{"id":489,"depth":211,"text":489},"engineering","2025-06-05","15年前のGit関数のパフォーマンス上のボトルネックを追跡して修正し、効率性の向上、より強固なバックアップ戦略の導入、リスクの軽減を実現した方法をご紹介します。","md",null,"https://res.cloudinary.com/about-gitlab-com/image/upload/v1750097166/Blog/Hero%20Images/Blog/Hero%20Images/REFERENCE%20-%20display%20preview%20for%20blog%20images%20%282%29_2pKf8RsKzAaThmQfqHIaa7_1750097166565.png",{},"/ja-jp/blog/how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes",{"title":5,"description":523,"ogTitle":5,"ogDescription":523,"noIndex":530,"ogImage":526,"ogUrl":531,"ogSiteName":532,"ogType":533,"canonicalUrls":531},false,"https://about.gitlab.com/blog/how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes","https://about.gitlab.com","記事","how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes","ja-jp/blog/how-we-decreased-gitlab-repo-backup-times-from-48-hours-to-41-minutes",[537,538,539,540,541],"Git","Open source","Product","Performance","DevSecOps platform","BlogPost","R3RywIr-SD421brL333InZA8h6wU09r4K4o7T6EWT58",{"logo":545,"freeTrial":550,"sales":555,"login":560,"items":565,"search":894,"minimal":927,"duo":944,"switchNav":953,"pricingDeployment":964},{"config":546},{"href":547,"dataGaName":548,"dataGaLocation":549},"/ja-jp/","gitlab logo","header",{"text":551,"config":552},"無料トライアルを開始",{"href":553,"dataGaName":554,"dataGaLocation":549},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp&glm_content=default-saas-trial/","free trial",{"text":556,"config":557},"デモをリクエスト",{"href":558,"dataGaName":559,"dataGaLocation":549},"/ja-jp/sales/?contact-topic=request-demo","sales",{"text":561,"config":562},"サインイン",{"href":563,"dataGaName":564,"dataGaLocation":549},"https://gitlab.com/users/sign_in/","sign in",[566,595,697,702,816,872],{"text":567,"config":568,"menu":570},"プラットフォーム",{"dataNavLevelOne":569},"platform",{"type":571,"columns":572},"cards",[573,579,587],{"title":567,"description":574,"link":575},"DevSecOpsに特化したインテリジェントオーケストレーションプラットフォーム",{"text":576,"config":577},"プラットフォームの詳細はこちら",{"href":578,"dataGaName":569,"dataGaLocation":549},"/ja-jp/platform/",{"title":580,"description":581,"link":582},"GitLab Duo Agent Platform","ソフトウェアライフサイクル全体を支えるエージェント型AI",{"text":583,"config":584},"GitLab Duoのご紹介",{"href":585,"dataGaName":586,"dataGaLocation":549},"/ja-jp/gitlab-duo-agent-platform/","gitlab duo agent platform",{"title":588,"description":589,"link":590},"GitLabが選ばれる理由","エンタープライズがGitLabを選ぶ主な理由をご覧ください",{"text":591,"config":592},"詳細はこちら",{"href":593,"dataGaName":594,"dataGaLocation":549},"/ja-jp/why-gitlab/","why gitlab",{"text":596,"left":263,"config":597,"menu":599},"製品",{"dataNavLevelOne":598},"solutions",{"type":600,"link":601,"columns":605,"feature":676},"lists",{"text":602,"config":603},"すべてのソリューションを表示",{"href":604,"dataGaName":598,"dataGaLocation":549},"/ja-jp/solutions/",[606,631,654],{"title":607,"description":608,"link":609,"items":614},"自動化","CI/CDと自動化でデプロイを加速",{"config":610},{"icon":611,"href":612,"dataGaName":613,"dataGaLocation":549},"AutomatedCodeAlt","/ja-jp/solutions/delivery-automation/","automated software delivery",[615,619,622,627],{"text":616,"config":617},"CI/CD",{"href":618,"dataGaLocation":549,"dataGaName":616},"/ja-jp/solutions/continuous-integration/",{"text":580,"config":620},{"href":585,"dataGaLocation":549,"dataGaName":621},"gitlab duo agent platform - product menu",{"text":623,"config":624},"ソースコード管理",{"href":625,"dataGaLocation":549,"dataGaName":626},"/ja-jp/solutions/source-code-management/","Source Code Management",{"text":628,"config":629},"自動化されたソフトウェアデリバリー",{"href":612,"dataGaLocation":549,"dataGaName":630},"Automated software delivery",{"title":632,"description":633,"link":634,"items":639},"セキュリティ","セキュリティを犠牲にすることなくコード作成を高速化",{"config":635},{"href":636,"dataGaName":637,"dataGaLocation":549,"icon":638},"/ja-jp/solutions/application-security-testing/","security and compliance","ShieldCheckLight",[640,644,649],{"text":641,"config":642},"アプリケーションセキュリティテスト",{"href":636,"dataGaName":643,"dataGaLocation":549},"Application security testing",{"text":645,"config":646},"ソフトウェアサプライチェーンセキュリティ",{"href":647,"dataGaLocation":549,"dataGaName":648},"/ja-jp/solutions/supply-chain/","Software supply chain security",{"text":650,"config":651},"ソフトウェアコンプライアンス",{"href":652,"dataGaName":653,"dataGaLocation":549},"/ja-jp/solutions/software-compliance/","software compliance",{"title":655,"link":656,"items":661},"測定",{"config":657},{"icon":658,"href":659,"dataGaName":660,"dataGaLocation":549},"DigitalTransformation","/ja-jp/solutions/visibility-measurement/","visibility and measurement",[662,666,671],{"text":663,"config":664},"可視性と測定",{"href":659,"dataGaLocation":549,"dataGaName":665},"Visibility and Measurement",{"text":667,"config":668},"バリューストリーム管理",{"href":669,"dataGaLocation":549,"dataGaName":670},"/ja-jp/solutions/value-stream-management/","Value Stream Management",{"text":672,"config":673},"分析とインサイト",{"href":674,"dataGaLocation":549,"dataGaName":675},"/ja-jp/solutions/analytics-and-insights/","Analytics and insights",{"title":677,"type":600,"items":678},"GitLabが活躍する場所",[679,685,691],{"text":680,"config":681},"大企業",{"icon":682,"href":683,"dataGaLocation":549,"dataGaName":684},"Building","/ja-jp/enterprise/","enterprise",{"text":686,"config":687},"スモールビジネス",{"icon":688,"href":689,"dataGaLocation":549,"dataGaName":690},"Work","/ja-jp/small-business/","small business",{"text":692,"config":693},"公共部門",{"icon":694,"href":695,"dataGaLocation":549,"dataGaName":696},"Organization","/ja-jp/solutions/public-sector/","public sector",{"text":698,"config":699},"価格",{"href":700,"dataGaName":701,"dataGaLocation":549,"dataNavLevelOne":701},"/ja-jp/pricing/","pricing",{"text":703,"config":704,"menu":706},"関連リソース",{"dataNavLevelOne":705},"resources",{"type":600,"link":707,"columns":711,"feature":805},{"text":708,"config":709},"すべてのリソースを表示",{"href":710,"dataGaName":705,"dataGaLocation":549},"/ja-jp/resources/",[712,745,772],{"title":713,"items":714},"はじめに",[715,720,725,730,735,740],{"text":716,"config":717},"インストール",{"href":718,"dataGaName":719,"dataGaLocation":549},"/ja-jp/install/","install",{"text":721,"config":722},"クイックスタートガイド",{"href":723,"dataGaName":724,"dataGaLocation":549},"/ja-jp/get-started/","quick setup checklists",{"text":726,"config":727},"学ぶ",{"href":728,"dataGaLocation":549,"dataGaName":729},"https://university.gitlab.com/","learn",{"text":731,"config":732},"製品ドキュメント",{"href":733,"dataGaName":734,"dataGaLocation":549},"https://docs.gitlab.com/ja-jp/","product documentation",{"text":736,"config":737},"ベストプラクティスビデオ",{"href":738,"dataGaName":739,"dataGaLocation":549},"/ja-jp/getting-started-videos/","best practice videos",{"text":741,"config":742},"インテグレーション",{"href":743,"dataGaName":744,"dataGaLocation":549},"/ja-jp/integrations/","integrations",{"title":746,"items":747},"検索する",[748,753,758,763,767],{"text":749,"config":750},"お客様成功事例",{"href":751,"dataGaName":752,"dataGaLocation":549},"/ja-jp/customers/","customer success stories",{"text":754,"config":755},"ブログ",{"href":756,"dataGaName":757,"dataGaLocation":549},"/ja-jp/blog/","blog",{"text":759,"config":760},"Demo Hub",{"href":761,"dataGaName":762,"dataGaLocation":549},"/ja-jp/demo-hub/","demo hub",{"text":764,"config":765},"The Source",{"href":766,"dataGaName":757,"dataGaLocation":549},"/ja-jp/the-source/",{"text":768,"config":769},"リモート",{"href":770,"dataGaName":771,"dataGaLocation":549},"https://handbook.gitlab.com/handbook/company/culture/all-remote/","remote",{"title":773,"items":774},"つなげる",[775,780,785,790,795,800],{"text":776,"config":777},"GitLabサービス",{"href":778,"dataGaName":779,"dataGaLocation":549},"/ja-jp/services/","services",{"text":781,"config":782},"コントリビュート",{"href":783,"dataGaName":784,"dataGaLocation":549},"https://contributors.gitlab.com","contribute",{"text":786,"config":787},"コミュニティ",{"href":788,"dataGaName":789,"dataGaLocation":549},"/community/","community",{"text":791,"config":792},"フォーラム",{"href":793,"dataGaName":794,"dataGaLocation":549},"https://forum.gitlab.com/","forum",{"text":796,"config":797},"イベント",{"href":798,"dataGaName":799,"dataGaLocation":549},"/events/","events",{"text":801,"config":802},"パートナー",{"href":803,"dataGaName":804,"dataGaLocation":549},"/ja-jp/partners/","partners",{"config":806,"title":809,"text":810,"link":811},{"background":807,"textColor":808},"url('https://res.cloudinary.com/about-gitlab-com/image/upload/v1777322348/qpq8yrgn8knii57omj0c.png')","#000","GitLabの最新情報","最新の機能と改善点に関する情報をお届けします。",{"text":812,"config":813},"最新情報を読む",{"href":814,"dataGaName":815,"dataGaLocation":549},"/ja-jp/whats-new/","whats new",{"text":817,"config":818,"menu":820},"企業情報",{"dataNavLevelOne":819},"company",{"type":600,"columns":821},[822],{"items":823},[824,829,835,837,842,847,852,857,862,867],{"text":825,"config":826},"GitLabについて",{"href":827,"dataGaName":828,"dataGaLocation":549},"/ja-jp/company/","about",{"text":830,"config":831,"footerGa":834},"採用情報",{"href":832,"dataGaName":833,"dataGaLocation":549},"/jobs/","jobs",{"dataGaName":833},{"text":796,"config":836},{"href":798,"dataGaName":799,"dataGaLocation":549},{"text":838,"config":839},"経営陣",{"href":840,"dataGaName":841,"dataGaLocation":549},"/company/team/e-group/","leadership",{"text":843,"config":844},"ハンドブック",{"href":845,"dataGaName":846,"dataGaLocation":549},"https://handbook.gitlab.com/","handbook",{"text":848,"config":849},"投資家向け情報",{"href":850,"dataGaName":851,"dataGaLocation":549},"https://ir.gitlab.com/overview/default.aspx","investor relations",{"text":853,"config":854},"トラストセンター",{"href":855,"dataGaName":856,"dataGaLocation":549},"/ja-jp/security/","trust center",{"text":858,"config":859},"AI Transparency Center",{"href":860,"dataGaName":861,"dataGaLocation":549},"/ja-jp/ai-transparency-center/","ai transparency center",{"text":863,"config":864},"ニュースレター",{"href":865,"dataGaName":866,"dataGaLocation":549},"/company/contact/#contact-forms","newsletter",{"text":868,"config":869},"プレス",{"href":870,"dataGaName":871,"dataGaLocation":549},"/press/","press",{"text":873,"config":874,"menu":875},"お問い合わせ",{"dataNavLevelOne":819},{"type":600,"columns":876},[877],{"items":878},[879,884,889],{"text":880,"config":881},"お問い合わせはこちら",{"href":882,"dataGaName":883,"dataGaLocation":549},"/ja-jp/sales/","talk to sales",{"text":885,"config":886},"サポートを受ける",{"href":887,"dataGaName":888,"dataGaLocation":549},"https://support.gitlab.com/hc/en-us","support portal",{"text":890,"config":891},"カスタマーポータル",{"href":892,"dataGaName":893,"dataGaLocation":549},"https://customers.gitlab.com/customers/sign_in/","customer portal",{"close":895,"login":896,"suggestions":903},"閉じる",{"text":897,"link":898},"リポジトリとプロジェクトを検索するには、次にログインします",{"text":899,"config":900},"GitLab.com",{"href":563,"dataGaName":901,"dataGaLocation":902},"search login","search",{"text":904,"default":905},"提案",[906,908,913,915,919,923],{"text":580,"config":907},{"href":585,"dataGaName":580,"dataGaLocation":902},{"text":909,"config":910},"コード提案（AI）",{"href":911,"dataGaName":912,"dataGaLocation":902},"/ja-jp/solutions/code-suggestions/","Code Suggestions (AI)",{"text":616,"config":914},{"href":618,"dataGaName":616,"dataGaLocation":902},{"text":916,"config":917},"GitLab on AWS",{"href":918,"dataGaName":916,"dataGaLocation":902},"/ja-jp/partners/technology-partners/aws/",{"text":920,"config":921},"GitLab on Google Cloud",{"href":922,"dataGaName":920,"dataGaLocation":902},"/ja-jp/partners/technology-partners/google-cloud-platform/",{"text":924,"config":925},"GitLabを選ぶ理由",{"href":593,"dataGaName":926,"dataGaLocation":902},"Why GitLab?",{"freeTrial":928,"mobileIcon":932,"desktopIcon":937,"secondaryButton":940},{"text":551,"config":929},{"href":930,"dataGaName":554,"dataGaLocation":931},"https://gitlab.com/-/trials/new/","nav",{"altText":933,"config":934},"GitLabアイコン",{"src":935,"dataGaName":936,"dataGaLocation":931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203874/jypbw1jx72aexsoohd7x.svg","gitlab icon",{"altText":933,"config":938},{"src":939,"dataGaName":936,"dataGaLocation":931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1758203875/gs4c8p8opsgvflgkswz9.svg",{"text":713,"config":941},{"href":942,"dataGaName":943,"dataGaLocation":931},"https://gitlab.com/-/trial_registrations/new?glm_source=about.gitlab.com/ja-jp/get-started/","get started",{"freeTrial":945,"mobileIcon":949,"desktopIcon":951},{"text":946,"config":947},"GitLab Duoの詳細について",{"href":585,"dataGaName":948,"dataGaLocation":931},"gitlab duo",{"altText":933,"config":950},{"src":935,"dataGaName":936,"dataGaLocation":931},{"altText":933,"config":952},{"src":939,"dataGaName":936,"dataGaLocation":931},{"button":954,"mobileIcon":959,"desktopIcon":961},{"text":955,"config":956},"/switch",{"href":957,"dataGaName":958,"dataGaLocation":931},"#contact","switch",{"altText":933,"config":960},{"src":935,"dataGaName":936,"dataGaLocation":931},{"altText":933,"config":962},{"src":963,"dataGaName":936,"dataGaLocation":931},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1773335277/ohhpiuoxoldryzrnhfrh.png",{"freeTrial":965,"mobileIcon":970,"desktopIcon":972},{"text":966,"config":967},"料金ページに戻る",{"href":700,"dataGaName":968,"dataGaLocation":931,"icon":969},"back to pricing","GoBack",{"altText":933,"config":971},{"src":935,"dataGaName":936,"dataGaLocation":931},{"altText":933,"config":973},{"src":939,"dataGaName":936,"dataGaLocation":931},{"title":975,"button":976,"config":980},"GitLab Orbitが登場: AIエージェントのためのコンテキストレイヤー",{"text":591,"config":977},{"href":978,"dataGaName":979,"dataGaLocation":549},"/ja-jp/gitlab-orbit/","orbit",{"layout":981,"disabled":530},"release",{"data":983},{"text":984,"source":985,"edit":991,"contribute":996,"config":1001,"items":1006,"minimal":1215},"GitはSoftware Freedom Conservancyの商標です。当社は「GitLab」をライセンスに基づいて使用しています",{"text":986,"config":987},"ページのソースを表示",{"href":988,"dataGaName":989,"dataGaLocation":990},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/","page source","footer",{"text":992,"config":993},"このページを編集",{"href":994,"dataGaName":995,"dataGaLocation":990},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/content/","web ide",{"text":997,"config":998},"ご協力をお願いします",{"href":999,"dataGaName":1000,"dataGaLocation":990},"https://gitlab.com/gitlab-com/marketing/digital-experience/about-gitlab-com/-/blob/main/CONTRIBUTING.md/","please contribute",{"twitter":1002,"facebook":1003,"youtube":1004,"linkedin":1005},"https://twitter.com/gitlab","https://www.facebook.com/gitlab","https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg","https://www.linkedin.com/company/gitlab-com",[1007,1052,1105,1148,1182],{"title":698,"links":1008,"subMenu":1023},[1009,1013,1018],{"text":1010,"config":1011},"プランの表示",{"href":700,"dataGaName":1012,"dataGaLocation":990},"view plans",{"text":1014,"config":1015},"Premiumを選ぶ理由",{"href":1016,"dataGaName":1017,"dataGaLocation":990},"/ja-jp/pricing/premium/","why premium",{"text":1019,"config":1020},"Ultimateを選ぶ理由",{"href":1021,"dataGaName":1022,"dataGaLocation":990},"/ja-jp/pricing/ultimate/","why ultimate",[1024],{"title":873,"links":1025},[1026,1028,1030,1032,1037,1042,1047],{"text":873,"config":1027},{"href":882,"dataGaName":559,"dataGaLocation":990},{"text":885,"config":1029},{"href":887,"dataGaName":888,"dataGaLocation":990},{"text":890,"config":1031},{"href":892,"dataGaName":893,"dataGaLocation":990},{"text":1033,"config":1034},"ステータス",{"href":1035,"dataGaName":1036,"dataGaLocation":990},"https://status.gitlab.com/","status",{"text":1038,"config":1039},"利用規約",{"href":1040,"dataGaName":1041,"dataGaLocation":990},"/terms/","terms of use",{"text":1043,"config":1044},"プライバシーに関する声明",{"href":1045,"dataGaName":1046,"dataGaLocation":990},"/ja-jp/privacy/","privacy statement",{"text":1048,"config":1049},"Cookie 優先設定",{"dataGaName":1050,"dataGaLocation":990,"id":1051,"isOneTrustButton":263},"cookie preferences","ot-sdk-btn",{"title":596,"links":1053,"subMenu":1062},[1054,1058],{"text":1055,"config":1056},"DevSecOpsプラットフォーム",{"href":578,"dataGaName":1057,"dataGaLocation":990},"devsecops platform",{"text":1059,"config":1060},"AI支援開発",{"href":585,"dataGaName":1061,"dataGaLocation":990},"ai-assisted development",[1063],{"title":1064,"links":1065},"トピック",[1066,1070,1075,1080,1085,1090,1095,1100],{"text":616,"config":1067},{"href":1068,"dataGaName":1069,"dataGaLocation":990},"/ja-jp/topics/ci-cd/","cicd",{"text":1071,"config":1072},"GitOps",{"href":1073,"dataGaName":1074,"dataGaLocation":990},"/ja-jp/topics/gitops/","gitops",{"text":1076,"config":1077},"DevOps",{"href":1078,"dataGaName":1079,"dataGaLocation":990},"/ja-jp/topics/devops/","devops",{"text":1081,"config":1082},"バージョン管理",{"href":1083,"dataGaName":1084,"dataGaLocation":990},"/ja-jp/topics/version-control/","version control",{"text":1086,"config":1087},"DevSecOps",{"href":1088,"dataGaName":1089,"dataGaLocation":990},"/ja-jp/topics/devsecops/","devsecops",{"text":1091,"config":1092},"クラウドネイティブ",{"href":1093,"dataGaName":1094,"dataGaLocation":990},"/ja-jp/topics/cloud-native/","cloud native",{"text":1096,"config":1097},"コーディングのためのAI",{"href":1098,"dataGaName":1099,"dataGaLocation":990},"/ja-jp/topics/devops/ai-for-coding/","ai for coding",{"text":1101,"config":1102},"エージェント型AI",{"href":1103,"dataGaName":1104,"dataGaLocation":990},"/ja-jp/topics/agentic-ai/","agentic ai",{"title":1106,"links":1107},"ソリューション",[1108,1111,1113,1118,1122,1125,1128,1131,1133,1135,1138,1143],{"text":641,"config":1109},{"href":636,"dataGaName":1110,"dataGaLocation":990},"Application Security Testing",{"text":628,"config":1112},{"href":612,"dataGaName":613,"dataGaLocation":990},{"text":1114,"config":1115},"アジャイル開発",{"href":1116,"dataGaName":1117,"dataGaLocation":990},"/ja-jp/solutions/agile-delivery/","agile delivery",{"text":1119,"config":1120},"SCM",{"href":625,"dataGaName":1121,"dataGaLocation":990},"source code management",{"text":616,"config":1123},{"href":618,"dataGaName":1124,"dataGaLocation":990},"continuous integration & delivery",{"text":667,"config":1126},{"href":669,"dataGaName":1127,"dataGaLocation":990},"value stream management",{"text":1071,"config":1129},{"href":1130,"dataGaName":1074,"dataGaLocation":990},"/ja-jp/solutions/gitops/",{"text":680,"config":1132},{"href":683,"dataGaName":684,"dataGaLocation":990},{"text":686,"config":1134},{"href":689,"dataGaName":690,"dataGaLocation":990},{"text":1136,"config":1137},"公共機関",{"href":695,"dataGaName":696,"dataGaLocation":990},{"text":1139,"config":1140},"教育",{"href":1141,"dataGaName":1142,"dataGaLocation":990},"/ja-jp/solutions/education/","education",{"text":1144,"config":1145},"金融サービス",{"href":1146,"dataGaName":1147,"dataGaLocation":990},"/ja-jp/solutions/finance/","financial services",{"title":1149,"links":1150},"リソース",[1151,1153,1155,1157,1161,1163,1166,1168,1170,1172,1174,1176,1178,1180],{"text":716,"config":1152},{"href":718,"dataGaName":719,"dataGaLocation":990},{"text":721,"config":1154},{"href":723,"dataGaName":724,"dataGaLocation":990},{"text":726,"config":1156},{"href":728,"dataGaName":729,"dataGaLocation":990},{"text":731,"config":1158},{"href":1159,"dataGaName":1160,"dataGaLocation":990},"https://docs.gitlab.com/ja-jp","docs",{"text":754,"config":1162},{"href":756,"dataGaName":757,"dataGaLocation":990},{"text":1164,"config":1165},"最新リリース",{"href":814,"dataGaName":815,"dataGaLocation":990},{"text":749,"config":1167},{"href":751,"dataGaName":752,"dataGaLocation":990},{"text":768,"config":1169},{"href":770,"dataGaName":771,"dataGaLocation":990},{"text":776,"config":1171},{"href":778,"dataGaName":779,"dataGaLocation":990},{"text":781,"config":1173},{"href":783,"dataGaName":784,"dataGaLocation":990},{"text":786,"config":1175},{"href":788,"dataGaName":789,"dataGaLocation":990},{"text":791,"config":1177},{"href":793,"dataGaName":794,"dataGaLocation":990},{"text":796,"config":1179},{"href":798,"dataGaName":799,"dataGaLocation":990},{"text":801,"config":1181},{"href":803,"dataGaName":804,"dataGaLocation":990},{"title":1183,"links":1184},"会社情報",[1185,1187,1189,1191,1193,1195,1199,1204,1206,1208,1210],{"text":825,"config":1186},{"href":827,"dataGaName":819,"dataGaLocation":990},{"text":830,"config":1188},{"href":832,"dataGaName":833,"dataGaLocation":990},{"text":838,"config":1190},{"href":840,"dataGaName":841,"dataGaLocation":990},{"text":843,"config":1192},{"href":845,"dataGaName":846,"dataGaLocation":990},{"text":848,"config":1194},{"href":850,"dataGaName":851,"dataGaLocation":990},{"text":1196,"config":1197},"Sustainability",{"href":1198,"dataGaName":1196,"dataGaLocation":990},"/sustainability/",{"text":1200,"config":1201},"ダイバーシティ、インクルージョン、ビロンギング（DIB）",{"href":1202,"dataGaName":1203,"dataGaLocation":990},"/ja-jp/diversity-inclusion-belonging/","Diversity, inclusion and belonging",{"text":853,"config":1205},{"href":855,"dataGaName":856,"dataGaLocation":990},{"text":863,"config":1207},{"href":865,"dataGaName":866,"dataGaLocation":990},{"text":868,"config":1209},{"href":870,"dataGaName":871,"dataGaLocation":990},{"text":1211,"config":1212},"現代奴隷制の透明性に関する声明",{"href":1213,"dataGaName":1214,"dataGaLocation":990},"https://handbook.gitlab.com/handbook/legal/modern-slavery-act-transparency-statement/","modern slavery transparency statement",{"items":1216},[1217,1219,1222],{"text":1038,"config":1218},{"href":1040,"dataGaName":1041,"dataGaLocation":990},{"text":1220,"config":1221},"Cookieの設定",{"dataGaName":1050,"dataGaLocation":990,"id":1051,"isOneTrustButton":263},{"text":1043,"config":1223},{"href":1045,"dataGaName":1046,"dataGaLocation":990},[1225,1239],{"id":1226,"title":7,"body":525,"config":1227,"content":1229,"description":525,"extension":1233,"meta":1234,"navigation":263,"path":1235,"seo":1236,"stem":1237,"__hash__":1238},"blogAuthors/en-us/blog/authors/karthik-nayak.yml",{"template":1228},"BlogAuthor",{"name":7,"config":1230},{"headshot":1231,"ctfId":1232},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659809/Blog/Author%20Headshots/Screenshot_2025-06-04_at_8.49.51%C3%A2__AM.png","3Q6ZKvaiCRw7tFZdDGlecg","yml",{},"/en-us/blog/authors/karthik-nayak",{},"en-us/blog/authors/karthik-nayak","pDQbfmQk6aaJ6PA9L68AzPlzIUBcosTh7WBoq680gpk",{"id":1240,"title":8,"body":525,"config":1241,"content":1242,"description":525,"extension":1233,"meta":1246,"navigation":263,"path":1247,"seo":1248,"stem":1249,"__hash__":1250},"blogAuthors/en-us/blog/authors/manuel-kraft.yml",{"template":1228},{"name":8,"config":1243},{"headshot":1244,"ctfId":1245},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1749659815/Blog/Author%20Headshots/manuel_kraft.png","5q1NADtEqxyoV1F1s6JKDz",{},"/en-us/blog/authors/manuel-kraft",{},"en-us/blog/authors/manuel-kraft","TqWe6Rx9TnEopbWMshRuht-6QCOpGPAMjs1vtlA_93Y",[1252,1259,1266],{"title":1253,"description":1253,"heroImage":1254,"category":521,"date":1255,"authors":1256,"slug":1258,"externalUrl":525},"MCPサーバーとは？仕組みやソフトウェア開発の活用例をわかりやすく解説","https://res.cloudinary.com/about-gitlab-com/image/upload/v1786001428/qedvughylmeposoqm5zs.jpg","2026-08-07",[1257],"GitLab Team","what-is-mcp-server",{"title":1260,"description":1261,"heroImage":1262,"category":521,"date":1263,"authors":1264,"slug":1265,"externalUrl":525},"イテレーションとは？意味や進め方、おすすめの支援ツールを紹介","イテレーションとは、アジャイル開発における「反復」を意味する開発単位です。本記事では、イテレーションの意味やスプリントとの違い、具体的な進め方、成功のポイントをわかりやすく解説します。アジャイル開発を支援するツールもあわせて紹介します。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1785816755/mj23yaguu0gxvbztd6pl.jpg","2026-08-06",[1257],"what-is-iteration",{"title":1267,"description":1268,"heroImage":1269,"category":521,"date":1263,"authors":1270,"slug":1273,"externalUrl":525},"GitLab Self-Hostedで実現するコンフィデンシャルAI","ソースコードをハードウェアで暗号化された境界の外に出すことなく、GitLab DuoのAIコーディングエージェントを開発者に提供します。GPUは不要です。","https://res.cloudinary.com/about-gitlab-com/image/upload/v1773866173/vte9qh8rriznvyclhkes.png",[1271,1272],"Mathias Ewald","Martin Paloncy, Edgeless Systems","confidential-ai-for-gitlab-self-hosted",{"promotions":1275},[1276,1290,1302,1314],{"id":1277,"categories":1278,"header":1280,"text":1281,"button":1282,"image":1287},"ai-modernization",[1279],"ai","AIの真価、組織全体で発揮できていますか？","所要時間は5分以内です",{"text":1283,"config":1284},"AI成熟度スコアを確認する",{"href":1285,"dataGaName":1286,"dataGaLocation":757},"/ja-jp/assessments/ai-modernization-assessment/","modernization assessment",{"config":1288},{"src":1289},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/qix0m7kwnd8x2fh1zq49.png",{"id":1291,"categories":1292,"header":1294,"text":1281,"button":1295,"image":1299},"devops-modernization",[1293,1089],"product","単にツールを管理するだけでなく、イノベーションを提供していますか？",{"text":1296,"config":1297},"DevOps成熟度スコアを確認しましょう",{"href":1298,"dataGaName":1286,"dataGaLocation":757},"/ja-jp/assessments/devops-modernization-assessment/",{"config":1300},{"src":1301},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138785/eg818fmakweyuznttgid.png",{"id":1303,"categories":1304,"header":1306,"text":1281,"button":1307,"image":1311},"security-modernization",[1305],"security","スピードのためにセキュリティを犠牲にしていませんか？",{"text":1308,"config":1309},"セキュリティ成熟度スコアを確認しましょう",{"href":1310,"dataGaName":1286,"dataGaLocation":757},"/ja-jp/assessments/security-modernization-assessment/",{"config":1312},{"src":1313},"https://res.cloudinary.com/about-gitlab-com/image/upload/v1772138786/p4pbqd9nnjejg5ds6mdk.png",{"id":1315,"paths":1316,"header":1319,"text":1320,"button":1321,"image":1326},"github-azure-migration",[1317,1318],"migration-from-azure-devops-to-gitlab","integrating-azure-devops-scm-and-gitlab","チームはGitHubのAzure移行に対応できていますか？","GitHubはすでにAzureを基盤として再構築を進めています。それがあなたのチームにとって何を意味するのか、ご確認ください。",{"text":1322,"config":1323},"GitLabとGitHubの比較を見る",{"href":1324,"dataGaName":1325,"dataGaLocation":757},"/ja-jp/compare/gitlab-vs-github/github-azure-migration/","github azure migration",{"config":1327},{"src":1301},{"header":1329,"blurb":1330,"button":1331,"secondaryButton":1335},"今すぐ開発をスピードアップ","DevSecOpsに特化したインテリジェントオーケストレーションプラットフォームで実現できることをご確認ください。\n",{"text":551,"config":1332},{"href":1333,"dataGaName":554,"dataGaLocation":1334},"https://gitlab.com/-/trial_registrations/new?glm_content=default-saas-trial&glm_source=about.gitlab.com/ja-jp/","feature",{"text":873,"config":1336},{"href":882,"dataGaName":559,"dataGaLocation":1334},1786803771260]