Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Carton 1.0 at OSCON 2013
Search
Tatsuhiko Miyagawa
July 25, 2013
Technology
11
2.2k
Carton 1.0 at OSCON 2013
Introducing what's new in Carton at O'Reilly Open Source Convention 2013.
Tatsuhiko Miyagawa
July 25, 2013
Tweet
Share
More Decks by Tatsuhiko Miyagawa
See All by Tatsuhiko Miyagawa
Carmel at YAPC::EU 2015
miyagawa
0
490
Carton at London Perl Workshop 2013
miyagawa
0
250
Managing CPAN dependencies with Carton
miyagawa
0
270
What's new in Carton and cpanm at YAPC::Asia 2013
miyagawa
6
1.2k
cpanm 1.6 at OSDC.TW
miyagawa
6
1.3k
10 more things to be ripped off
miyagawa
7
1.3k
Ruby; Exported
miyagawa
1
940
10 Years: LL, you and me
miyagawa
2
180
Plack 1.0 announcement at OSCON
miyagawa
1
250
Other Decks in Technology
See All in Technology
ABEMA のコンテンツ制作を最適化!生成 AI x クラウド映像編集システム / abema-ai-editor
cyberagentdevelopers
PRO
1
180
生成AIの強みと弱みを理解して、生成AIがもたらすパワーをプロダクトの価値へ繋げるために実践したこと / advance-ai-generating
cyberagentdevelopers
PRO
1
180
独自ツール開発でスタジオ撮影をDX!「VLS(Virtual LED Studio)」 / dx-studio-vls
cyberagentdevelopers
PRO
1
180
初心者に Vue.js を 教えるには
tsukuha
5
390
Product Engineer Night #6プロダクトエンジニアを育む仕組み・施策
hacomono
PRO
1
470
話題のGraphRAG、その可能性と課題を理解する
hide212131
4
1.5k
ExaDB-D dbaascli で出来ること
oracle4engineer
PRO
0
3.6k
AWS re:Inventを徹底的に楽しむためのTips / Tips for thoroughly enjoying AWS re:Invent
yuj1osm
1
570
Amazon_CloudWatch_ログ異常検出_導入ガイド
tsujiba
4
1.6k
GitHub Universe: Evaluating RAG apps in GitHub Actions
pamelafox
0
180
LeSSに潜む「隠れWF病」とその処方箋
lycorptech_jp
PRO
2
120
【若手エンジニア応援LT会】AWSで繋がり、共に成長! ~コミュニティ活動と新人教育への挑戦~
kazushi_ohata
0
180
Featured
See All Featured
Teambox: Starting and Learning
jrom
132
8.7k
Keith and Marios Guide to Fast Websites
keithpitt
408
22k
Product Roadmaps are Hard
iamctodd
PRO
48
10k
Put a Button on it: Removing Barriers to Going Fast.
kastner
59
3.5k
Scaling GitHub
holman
458
140k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
41
2.1k
Art, The Web, and Tiny UX
lynnandtonic
296
20k
Visualization
eitanlees
144
15k
Six Lessons from altMBA
skipperchong
26
3.5k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
48k
Speed Design
sergeychernyshev
24
570
Mobile First: as difficult as doing things right
swwweet
222
8.9k
Transcript
Carton 1.0 managing CPAN deps the right way Tatsuhiko Miyagawa
@miyagawa O'Reilly OSCON 2013 Wednesday, July 24, 13
Me • Tatsuhiko Miyagawa • Lives in San Francisco •
{github,twitter,CPAN}/miyagawa Wednesday, July 24, 13
Managing CPAN Dependencies Wednesday, July 24, 13
How many CPAN modules your app depends on? Wednesday, July
24, 13
When is the last time upgrading a CPAN module broke
your app? Wednesday, July 24, 13
Case Study: Web App Development Wednesday, July 24, 13
You’re writing a new web app using as many CPAN
modules. Wednesday, July 24, 13
Get them from CPAN, install on your machine. Wednesday, July
24, 13
john@local> cpanm Web::Framework installed LWP-‐5.912 installed Plack-‐0.9980 installed Web-‐Framework-‐1.10 Wednesday,
July 24, 13
Test it... Wednesday, July 24, 13
Works? Ship it! Wednesday, July 24, 13
What if ... Wednesday, July 24, 13
• Jul 2nd: Started working on project • using Web::Framework
1.1 • Jul 9th: Finished version 1.0 • Jul 10-15th: internal beta, QA • Jul 16th: Deploy to the production Wednesday, July 24, 13
• Jul 2nd: Started working on project • using Web::Framework
1.1 • Jul 9th: Finished version 1.0 • Jul 10-15th: internal beta, QA • Jul 15th: Web::Framework 1.2 is released • Jul 16th: Deploy to the cloud/production Wednesday, July 24, 13
root@prod> cpanm Web::Framework installed LWP-‐5.912 installed Plack-‐0.9980 installed Web-‐Framework-‐1.20 Wednesday,
July 24, 13
Web::Framework 1.2 API changes! Wednesday, July 24, 13
Wednesday, July 24, 13
Wednesday, July 24, 13
“Upgrading CPAN modules broke my app” Wednesday, July 24, 13
Dependencies are part of your app. Wednesday, July 24, 13
a solution cpanm 1.6 Wednesday, July 24, 13
> cpanm Web::
[email protected]
installed Web-‐Framework-‐1.10 Wednesday, July 24, 13
> cpanm Web::Framework~">= 1.0, < 1.2" installed Web-‐Framework-‐1.19 Wednesday, July
24, 13
♥ MetaCPAN Wednesday, July 24, 13
a solution cpanfile + cpanm 1.6 Wednesday, July 24, 13
> cat cpanfile requires 'Web::Framework', '== 1.10'; > cpanm -‐-‐installdeps
. installed Web-‐Framework-‐1.10 Wednesday, July 24, 13
cpanfile DSL to describe prereqs Wednesday, July 24, 13
requires 'Catalyst', '5.8000'; recommends 'JSON::XS', '2.0'; on 'test' =>
sub { requires 'Test::More', '>= 0.96' }; on 'develop' => sub { recommends 'Devel::NYTProf'; }; feature 'sqlite' => sub { requires 'DBD::SQLite'; }; Wednesday, July 24, 13
inspired by: gemfile(5) Wednesday, July 24, 13
Backward compatible to: Module::Install(::DSL) Wednesday, July 24, 13
Converted to to: CPAN::Meta::Prereqs Wednesday, July 24, 13
Toolset Module::CPANfile Module::Install::CPANfile Dist::Zilla plugins Wednesday, July 24, 13
Supported by dzil, Milla & cpanm 1.6 Wednesday, July 24,
13
cpanfile + cpanm • Simple • Yet powerful and flexible
way to describe dependencies and version requirements • Version control cpanfile Wednesday, July 24, 13
caveats • Locking each dependency with specific version is tedious
work • Can only lock direct dependencies • MetaCPAN as SPOF • No easy/reliable way to fallback Wednesday, July 24, 13
Many other solutions Needs servers, Needs databases Too simple, Too
complicated, etc. Wednesday, July 24, 13
the Solution Wednesday, July 24, 13
Carton https://github.com/miyagawa/carton Wednesday, July 24, 13
Inspired by... Wednesday, July 24, 13
Wednesday, July 24, 13
Basic idea: Describe CPAN dependencies snapshot tarball pathnames Wednesday, July
24, 13
Built on top of: cpanfile + cpanm 1.6 Wednesday, July
24, 13
• App-specific local environment • Fast and safe install with
caches • Dep-tree analysis, including versions • Freezing module versions • Conservative updates • Easy Redeployment, Rollback • Single-file, VCS friendly Wednesday, July 24, 13
Local perl environment Using local::lib and cpanm -L Each app
has an isolated local library path Wednesday, July 24, 13
Fast and safe install Saves MYMETA.json and install meta info
Wednesday, July 24, 13
Dep tree analysis Rebuild the dependency tree from snapshot Checks
if anything is missing/superfluous Wednesday, July 24, 13
Freezing versions Versions are saved in snapshots including dependencies Wednesday,
July 24, 13
Easy Redeployment Reinstall exactly the same set of modules on
another prod/development machines. Wednesday, July 24, 13
Conservative Update Modules won't be upgraded unless it is required,
or manually updated. Wednesday, July 24, 13
Single-file, VCS friendly You can add cpanfile.snapshot to git update
whenever you update modules "Dependencies are part of your app." Wednesday, July 24, 13
Safe and easy rollback revert the lock file and redeploy
Wednesday, July 24, 13
DEMO Wednesday, July 24, 13
Deployment with Carton Wednesday, July 24, 13
@local> carton install @local> git commit cpanfile.snapshot @local> git push
@remote> carton install -‐-‐deployment @remote> carton exec plackup ... Wednesday, July 24, 13
Example: github.com/miyagawa/cpanmetadb-perl capistrano, Server::Starter, carton, plackup (twiggy) Wednesday, July 24,
13
PaaS/Cloud github.com/miyagawa/heroku-buildpack-perl Wednesday, July 24, 13
Wednesday, July 24, 13
http://weblog.bulknews.net Wednesday, July 24, 13
Support to come! Dokku, DotCloud, Travis CI, Cloud Foundry etc.
Wednesday, July 24, 13
carton 1.0 later this week Wednesday, July 24, 13
> cpanm -‐-‐dev Carton Wednesday, July 24, 13
Towards 1.1 • Inject patched versions (DarkPAN) • Install from
github • bootstrap with fatpack Wednesday, July 24, 13
github.com/miyagawa/carton irc.perl.org #carton Wednesday, July 24, 13
speakerdeck.com /miyagawa Wednesday, July 24, 13
Questions? Wednesday, July 24, 13