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
LINE Bot & Clova CEK開発者2018大忘年会LT
Search
mochan-tk
December 21, 2018
1
630
LINE Bot & Clova CEK開発者2018大忘年会LT
mochan-tk
December 21, 2018
Tweet
Share
More Decks by mochan-tk
See All by mochan-tk
Azure AI によって広がる開発者の可能性と最新動向/MSBuild AzureAI for Everyone
mochan_tk
0
340
IT活用・自動化にも繋がるLINEの開発者向け テクノロジー紹介 / LINE Technology for External Developer at RPACommunity Event
mochan_tk
0
2.5k
あなたのアプリをもっとスマートに!Azure AIできり拓く新しいアプリ開発の可能性あなたのアプリをもっとスマートに!Azure AIできり拓く新しいアプリ開発の可能性 / talking about Azure AI for LINE API Expert x Microsoft MVP Community Day
mochan_tk
0
120
機械学習の民主化が加速する! 新サービス SageMaker Canvas について /new service sagemaker canvas for reinvent 2021
mochan_tk
0
1.2k
[GitHub Copilot]あなたもコードの自動生成を体験できる! with VSCode/vscodemeetup #17 GitHub Copilot with VS Code
mochan_tk
0
660
Azure OpenAI Service関連について! / cogbot #34 Ignite 2021 Nov Recap about Azure OpenAI Service
mochan_tk
0
460
Azure OpenAI Service関連について! / Microsoft Ignite autumn 2021 about Azure OpenAI Service
mochan_tk
0
1.5k
Getting Started with LINE Notify / SORACOM IoT Meetup #4
mochan_tk
0
3.5k
様々なオンラインイベントを開催して見えたリアルな情報の共有 / comucal#4
mochan_tk
0
1.8k
Featured
See All Featured
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.6k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
Thoughts on Productivity
jonyablonski
69
4.5k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
A Tale of Four Properties
chriscoyier
158
23k
Why Our Code Smells
bkeepers
PRO
336
57k
Designing on Purpose - Digital PM Summit 2013
jponch
117
7.1k
The Power of CSS Pseudo Elements
geoffreycrofte
75
5.5k
Code Review Best Practice
trishagee
67
18k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Transcript
AWS Lambda Layersで Clova開発をちょっと楽にしよう 1 Dec 12th, 2018 -- LINE
Bot & Clova CEK開発者2018大忘年会
自己紹介 もっちゃんでーす 2
Clovaのスキル開発にAWS Lambda使ってますか? 3
Lambda使っている方に朗報です! 便利な新機能が最近発表されました!! 4
その名も AWS Lambda Layers その名もAWS Lambda Layers 5
nodeのモジュールを事前にLambda側に配置が可能 6
layerを作成する 7
layerにアップロードするnodejs.zip作成 以下のコマンドでlayerにアップロードする「nodejs.zip」を作成します。 ついでにLambdaにアップロードする「upload.zip」も作成しています。 ※ 各言語でフォルダ階層は決められている。nodejsは「nodejs/node_modules/」な階層。 https://docs.aws.amazon.com/ja_jp/lambda/latest/dg/configuration-layers.html#configuration-layers-path $ git clone
https://github.com/mochan-tk/clova-handson-20180904.git $ cd clova-handson-20180904 $ git checkout -b lambda-layers origin/lambda-layers $ zip -r upload.zip . $ npm i $ mkdir nodejs && cp -r node_modules nodejs $ zip -r nodejs.zip nodejs 8
nodejs.zipをアップロードする 9
Lambdaからlayerを参照するよう設定 10 Lambdaの画面でさきほど作成したlayerを参照するよう設定。
nodeのモジュールを同梱する必要なし 11 ついでに作成していたupload.zipをアップロードした結果。(nodeの モジュール入れてま せん)
この表示を見ることもなくなるかも? 12 nodeのモジュール同梱でアップロードするとLambda内のエディタが使えなかった。。 こ んな経験ありますよね。。
Clovaのスキル開発をちょっと楽にできる そう、AWSならね 13
ちなみにLambda手動デプロイを自動化する方法 14 • 雑にやり方を公開してます、ちなみに私の公開物は全てパクってOK! ◦ https://github.com/mochan-tk/clova-handson-20180904/tree/lambda-deploy ◦ ↑簡単にCI/CDできる方法 ◦ 他のブランチにも雑なノウハウが(
Typescript化やテストコードの仕組み程度なら入ってます)
15 ご清聴ありがとうございました 良いお年をお迎え下さい!