SlideShare a Scribd company logo
1 of 63
Download to read offline
© COPYRIGHT 2019 FIXER Inc.
GCP の Serverless で
Web アプリ開発
してみよう!
鈴木 章太郎
株式会社 FIXER Technical Fellow, Evangelist
内閣官房 政府 CIO 補佐官(法務省担当)
• 株式会社 FIXER Technical
Fellow, Evangelist
• 内閣官房 政府 CIO 補佐官
(法務省担当)
• 元 Microsoft Technical
Evangelist
自己紹介 – 鈴木章太郎
Twitter : @shosuz
© COPYRIGHT 2019 FIXER Inc.
Agenda
•GCP って何?
•GCP の PaaS, Serverless, Container, mBaaS
•サンプルアプリご紹介
•まとめ
© COPYRIGHT 2019 FIXER Inc.
GCP って何?
© COPYRIGHT 2019 FIXER Inc.
Google Cloud
Platform
• 幅広いアプリケーションを
作成できるモジュール式の
クラウドベースの サービス
のセット
• Web アプリケーション
• API エンドポイント
• モバイルアプリケーション
• ビッグデータアプリケー
ション
© COPYRIGHT 2019 FIXER Inc.
GCP の
PaaS, Serverless,
Container, mBaaS
© COPYRIGHT 2019 FIXER Inc.
Google Cloud Platform
Resources and Services (1 of 2)
• アプリケーションの開発と展開のビルディングブロック
• コンピュート
• ストレージ
• ビッグデータ
• API サービス(エンドポイント、マネージ API)
• 各組織がアプリケーションの開発に集中できるようにする
• Google はインフラストラクチャを管理する
© COPYRIGHT 2019 FIXER Inc.
Google Cloud Platform Resources and Services (2 of 2)
BigQuery
Big Data
Pub/Sub Dataflow Dataproc Datalab
App Services
EndpointsPrediction API Translate API
Compute
Compute EngineApp Engine Container Engine
(GKE)
Storage
Cloud
Storage
Cloud SQL Cloud
Datastore
Bigtable
© COPYRIGHT 2019 FIXER Inc.
Web アプリケーションのトレンドの変化
• これまでの Web アプリケーションの構築
• .NET、Ruby on Rails、Django などのモノリシックな MVC フレームワークを用いた開発が一般的
• ここ数年、単機能の API サーバーを組み合わせて複雑なシステムを構築するマイクロサービス 化
(主に新規構築)
• フロントエンドが HTML + JavaScript で実装され、バックエンドの API サーバーにリクエストする
ことでデータの永続化やビジネスロジックの実行を行う場合、 アプリケーションサーバーは HTML
テンプレートのレンダリングなどを行う必要がない
• こうした考え方を突き詰めていった結果、 アプリケーションサーバーを必要としないサーバーレスアーキ
テクチャが登場
• 関数をクラウド上で動作させるサービス
• AWS Lambda、Azure Functions、GCP Cloud Functions
© COPYRIGHT 2019 FIXER Inc.
Google Serverless - PaaS, mBaaS, Serverless, Containers
Compute
Compute
Engine
App
Engine
Google
Container
Engine
(GKE)
Cloud Run on GKEFirebase
Cloud
Run
Cloud
Functions
App
Engine
Serverless
Compute
© COPYRIGHT 2019 FIXER Inc.
GCP のサーバーレスコンピュート
Firebase
Functions
App
Engine
Apps
Cloud
Functions
Cloud
Run
Containers
Cloud Run
on GKE
完全サーバレス
管理クラスター無し
従量課金
GKE クラスター上
サーバレス
費用は GKE クラスター
に含む
mBaaS
© COPYRIGHT 2019 FIXER Inc.
PaaS の元祖、Google App Engine
• GCP のサービスの中でも歴史あるサービス
• 高いスケーラビリティと高いアベイラビリティ
• Google の多くのサービスは GAE 上で構築されている?
• GAE には大きく2種類の実行環境
• Standard Environment (GAE SE)
• ノンメンテナンス運用できる
• Flexible Environment (GAE FE)
• 柔軟性を保持したままメンテナンスを減らして運用できる
© COPYRIGHT 2019 FIXER Inc.
Google App Engine (GAE)
App
Engine
Apps
https://cloud.google.com/appengine/?hl=ja
https://cloud.google.com/appengine/docs/?hl=ja
https://cloud.google.com/appengine/docs/the-
appengine-environments?hl=ja
https://cloud.google.com/appengine/docs/flexi
ble/dotnet/?hl=ja
https://cloud.google.com/appengine/docs/flexi
ble/dotnet/quickstart?hl=ja
© COPYRIGHT 2019 FIXER Inc.
App Engine フレキ
シブル環境で .NET
を使用するための
クイックスタート
https://cloud.google.com/appengine/docs/flexible/dotne
t/quickstart?hl=ja
© COPYRIGHT 2019 FIXER Inc.
Cloud Functions
• GCP 上で JavaScript で書かれた関数を実行するためのサービス
• 関数はイベントベースで発火する形式
• Google Cloud Storage もしくは Google Cloud Pub/Sub からのイベン
トで呼び出される
• HTTP リクエスト経由での実行も可能
• JavaScript ランタイムとしては Node.js を使用
• 自動的にスケールする仕組み
© COPYRIGHT 2019 FIXER Inc.
Cloud Functions
Functions
Cloud
Functions
https://cloud.google.com/functions/?hl=ja
https://cloud.google.com/functions/docs/?hl=ja
https://cloud.google.com/functions/docs/quickstart-nodejs?hl=ja
https://cloud.google.com/functions/docs/quickstarts?hl=ja
© COPYRIGHT 2019 FIXER Inc.
Google Cloud Run
Cloud
Run
Containers
Cloud Run
on GKE
完全サーバレス
管理クラスター無し
従量課金
GKE クラスター上
サーバレス
費用は GKE クラスター
に含む
https://cloud.google.com/run/docs/quickstarts/build-and-deploy
https://cloud.google.com/run/?hl=ja
https://cloud.google.com/run/docs/quickstarts/prebuilt-deploy?hl=ja
© COPYRIGHT 2019 FIXER Inc.
Firebase とは Google の
アプリ開発プラットフォーム
https://firebase.google.com/?hl=ja
https://cloud.google.com/products/?hl=ja#firebase
© COPYRIGHT 2019 FIXER Inc.
Firebase のミッションは
アプリ開発者の成功を助けること
https://firebase.google.com/?hl=ja
https://cloud.google.com/products/?hl=ja#firebase
© COPYRIGHT 2019 FIXER Inc.
Firebase の提供するサービス
アプリ品質の改善
Crashlytics
Performance
Monitoring
Test Lab
エンゲージメントを促進
Analytics
Predictions
Cloud
Messaging
Remote
Config
A/B Testing
Dynamic
Links
In-App
Messaging
より良いアプリの構築
Auth
Cloud
Functions
Cloud
Firestore
Cloud
Storage
Hosting
Realtime
Database
MLKit
https://cloud.google.com/products/?hl=ja#firebase
© COPYRIGHT 2019 FIXER Inc.
Firebase がサポートするプラットフォーム
iOS Android C++Web Unity
© COPYRIGHT 2019 FIXER Inc.
Firebase を利用した
Web サービス開発
© COPYRIGHT 2019 FIXER Inc.
典型的な Web サービスの構成
iOS
Android
Web
APIサーバー
Compute Engine
認証サービス
Compute Engine
データベース
Compute Engine
© COPYRIGHT 2019 FIXER Inc.
Web サービス開発者の悩みどころ
© COPYRIGHT 2019 FIXER Inc.
もっと便利な手段があるはず…
https://firebase.google.com/products/firestore/?hl=ja
Cloud Firestore
© COPYRIGHT 2019 FIXER Inc.
Cloud Firestore とは
マルチ リージョン対応
強整合性
サーバーレス 容易な同期 オフライン
モード
大規模にスケールすることができる
サーバーレスの NoSQL リアルタイム データベース
https://firebase.google.com/products/firestore/?hl=ja
© COPYRIGHT 2019 FIXER Inc.
Cloud Firestore を利用した構成
Cloud OnAir
iOS
Android
Web
Cloud Firestore
FirebaseAuthentication
これまでのようなインフラ管理は不要!
© COPYRIGHT 2019 FIXER Inc.
Firebase を
利用した
Web サービス
開発
https://codelabs.developers.google.com/codelabs/firebase-web/index.html#0
© COPYRIGHT 2019 FIXER Inc.
アーキテクチャ
Cloud Shell
ユーザ認証
デプロイ
・コマンド実行
・コード記述
・ローカルで動作確認
Cloud FirestoreFirebase Hosting
データ保存
リアルタイム更新
Webアプリに
アクセス
Firebase
Authentication
操作
© COPYRIGHT 2019 FIXER Inc.
https://qiita.com/taketakekaho/items/52b7c196ddbd4cb3c968
Firebaseで1時間で簡単なWebチャットアプリが作れるハンズオン
© COPYRIGHT 2019 FIXER Inc.
Firebase による
サービス改善
© COPYRIGHT 2019 FIXER Inc.
Web サービス改善の契機
機能
(Functional)
非機能
(Non-
Functional)
© COPYRIGHT 2019 FIXER Inc.
Web サイトのパフォーマンスが劣化すると
利益やコンバージョンに対して影響がでる可能性がある
パフォーマンスがビジネスに与える影響
© COPYRIGHT 2019 FIXER Inc.
• アプリの起動時間や HTTP/S
ネットワーク リクエストなど
を自動的に測定する
• アプリのパフォーマンスの改善が
見込める状況を見抜く
• アプリに合わせて Performance
Monitoring をカスタマイズする
• JavaScript SDK を組み込むだけで
利用可能
※ Web 向けは Beta 版
Performance Monitoring
https://firebase.google.com/products/performance/?hl=ja
© COPYRIGHT 2019 FIXER Inc.
FIXER Café アプリご紹介
© COPYRIGHT 2019 FIXER Inc.
de:code 2019 ブレイクアウトセッション (2019.5.30)
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
Firebase
Functions
Firebase Hosting Firebase DB
Stripe
Browser (or PWA App)
Firebase
Authentication
OneSignal
Hosting
Push Notification
PaymentAPI
Auth
Check
Save
Design
Figma
Fixer Café アプリのアーキテクチャ
© COPYRIGHT 2019 FIXER Inc.
Progressive
Web
Applications
© COPYRIGHT 2019 FIXER Inc.
Cashe API:
オフラインのサポート
Push API:
プッシュ通知
Background Sync:
バッググラウンド処理
manifest.json:
スマートフォンへのトップへのアイコン追加
Web App
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
Figma
Progressive Web Framework
Approachable
Composing with Components
© COPYRIGHT 2019 FIXER Inc.
プロトタイピング
© COPYRIGHT 2019 FIXER Inc.
コンポーネントによる構成
© COPYRIGHT 2019 FIXER Inc.
Vue.js
Progressive Web Framework
Approachable
Composing with Components
© COPYRIGHT 2019 FIXER Inc.
SPA(Single Page Application)の基本 – Qiita
https://qiita.com/takanorip/items/82f0c70ebc81e9246c7a より
従来 SPA
SPA とは? Vue.js とは?
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
HTML
JavaScript
CSS
© COPYRIGHT 2019 FIXER Inc.
Nuxt.js
Vue.js Framework
High Performance
Modular
© COPYRIGHT 2019 FIXER Inc.
Firebase
mBaaS
Simple
By Google
© COPYRIGHT 2019 FIXER Inc.
Firebase
Functions
Firebase
Hosting
Firebase DB
Stripe
Browser (or PWA App)
Firebase
Authentication
OneSignal
Hosting
Push Notification
PaymentAPI
Auth
Check
Save
Design
Figma
Fixer Café アプリのアーキテクチャ
© COPYRIGHT 2019 FIXER Inc.
Firebase Authenticationの例
© COPYRIGHT 2019 FIXER Inc.
Express との併用
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
セキュリティルール
API を使った操作
REST API
スキーマAPIの作成
SQL
APIサーバー DB
© COPYRIGHT 2019 FIXER Inc.
Firestore と従来の API サーバ
© COPYRIGHT 2019 FIXER Inc.© COPYRIGHT 2019 FIXER Inc.
Firestore
© COPYRIGHT 2019 FIXER Inc.
Firestore シミュレータ
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
マイクロサービス アーキテクチャ スタイル
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
商品管理
支払い
・・・
おすすめ機能
マイクロサービス アーキテクチャ スタイルに沿って実装
© COPYRIGHT 2019 FIXER Inc.
© COPYRIGHT 2019 FIXER Inc.
• Firebase とは Google のアプリ開発プラットフォーム
• Cloud Firestore を始めとした Firebase サービスを Web サービス
に組み 込むことにより、インフラの管理を大幅に軽減
• Performance Monitoring をウェブサイトに組み込むこと
により自動的にメトリクスを収集
Firebase を利用してアプリケーションにフォーカス
Firebase を使ってみよう!
Google 謹製
ハンズオンコンテンツ
Cloud Firestore Web Codelab
Firebase Performance Monitoring for Web
© COPYRIGHT 2019 FIXER Inc.
まとめ
•Google Cloud Platform を使ってみよう!
•PaaS, mBaaS, Container, …順番に触ってみよう!
•まずは無料版から試しましょう!
© COPYRIGHT 2019 FIXER Inc.

More Related Content

What's hot

Azure kobebase lt-20201120
Azure kobebase lt-20201120Azure kobebase lt-20201120
Azure kobebase lt-20201120Shotaro Suzuki
 
Elastichelps fintechenablesdx usingaibasedautomationand anomalydetection
Elastichelps fintechenablesdx usingaibasedautomationand anomalydetectionElastichelps fintechenablesdx usingaibasedautomationand anomalydetection
Elastichelps fintechenablesdx usingaibasedautomationand anomalydetectionShotaro Suzuki
 
[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送
[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送
[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送Google Cloud Platform - Japan
 
Building modernapplicationwithelasiccloud
Building modernapplicationwithelasiccloudBuilding modernapplicationwithelasiccloud
Building modernapplicationwithelasiccloudShotaro Suzuki
 
Apm enables python app observability
Apm enables python app observabilityApm enables python app observability
Apm enables python app observabilityShotaro Suzuki
 
Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601Shotaro Suzuki
 
Big query and elasticsearch insight at scale
Big query and elasticsearch insight at scaleBig query and elasticsearch insight at scale
Big query and elasticsearch insight at scaleShotaro Suzuki
 
Utilizing elasticcloudforallusecases
Utilizing elasticcloudforallusecasesUtilizing elasticcloudforallusecases
Utilizing elasticcloudforallusecasesShotaro Suzuki
 
Google Cloud Endpoints の紹介
Google Cloud Endpoints の紹介Google Cloud Endpoints の紹介
Google Cloud Endpoints の紹介Taiji Miyamoto
 
Elastic stack_&_cloud_7.11_updates-summary
Elastic stack_&_cloud_7.11_updates-summaryElastic stack_&_cloud_7.11_updates-summary
Elastic stack_&_cloud_7.11_updates-summaryShotaro Suzuki
 
Introduction to extensions and other useful features for developing apps usin...
Introduction to extensions and other useful features for developing apps usin...Introduction to extensions and other useful features for developing apps usin...
Introduction to extensions and other useful features for developing apps usin...Shotaro Suzuki
 
Moving from on prem to managed services with elastic on azure-final
Moving from on prem to managed services with elastic on azure-finalMoving from on prem to managed services with elastic on azure-final
Moving from on prem to managed services with elastic on azure-finalShotaro Suzuki
 
Google Cloud Platform で実現するプロダクションレディ マイクロサービス
Google Cloud Platform で実現するプロダクションレディ マイクロサービスGoogle Cloud Platform で実現するプロダクションレディ マイクロサービス
Google Cloud Platform で実現するプロダクションレディ マイクロサービスGoogle Cloud Platform - Japan
 
Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...
Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...
Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...Shotaro Suzuki
 
Elastic on Azure Integration & Building React UI Based Search App Using Azure...
Elastic on Azure Integration & Building React UI Based Search App Using Azure...Elastic on Azure Integration & Building React UI Based Search App Using Azure...
Elastic on Azure Integration & Building React UI Based Search App Using Azure...Shotaro Suzuki
 
Gpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure ai
Gpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure aiGpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure ai
Gpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure aiShotaro Suzuki
 
2021/03/19 パブリッククラウドを活かす運用プロセス自動化
2021/03/19 パブリッククラウドを活かす運用プロセス自動化2021/03/19 パブリッククラウドを活かす運用プロセス自動化
2021/03/19 パブリッククラウドを活かす運用プロセス自動化Issei Hiraoka
 
Microsoft open tech night 2020 feb18
Microsoft open tech night 2020 feb18Microsoft open tech night 2020 feb18
Microsoft open tech night 2020 feb18Masatomo Ito
 
[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...
[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...
[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...Google Cloud Platform - Japan
 
[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ 〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送
[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ  〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ  〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送
[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ 〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送Google Cloud Platform - Japan
 

What's hot (20)

Azure kobebase lt-20201120
Azure kobebase lt-20201120Azure kobebase lt-20201120
Azure kobebase lt-20201120
 
Elastichelps fintechenablesdx usingaibasedautomationand anomalydetection
Elastichelps fintechenablesdx usingaibasedautomationand anomalydetectionElastichelps fintechenablesdx usingaibasedautomationand anomalydetection
Elastichelps fintechenablesdx usingaibasedautomationand anomalydetection
 
[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送
[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送
[Cloud OnAir] Apigee でかんたん API 管理 2019年12月12日 放送
 
Building modernapplicationwithelasiccloud
Building modernapplicationwithelasiccloudBuilding modernapplicationwithelasiccloud
Building modernapplicationwithelasiccloud
 
Apm enables python app observability
Apm enables python app observabilityApm enables python app observability
Apm enables python app observability
 
Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601
 
Big query and elasticsearch insight at scale
Big query and elasticsearch insight at scaleBig query and elasticsearch insight at scale
Big query and elasticsearch insight at scale
 
Utilizing elasticcloudforallusecases
Utilizing elasticcloudforallusecasesUtilizing elasticcloudforallusecases
Utilizing elasticcloudforallusecases
 
Google Cloud Endpoints の紹介
Google Cloud Endpoints の紹介Google Cloud Endpoints の紹介
Google Cloud Endpoints の紹介
 
Elastic stack_&_cloud_7.11_updates-summary
Elastic stack_&_cloud_7.11_updates-summaryElastic stack_&_cloud_7.11_updates-summary
Elastic stack_&_cloud_7.11_updates-summary
 
Introduction to extensions and other useful features for developing apps usin...
Introduction to extensions and other useful features for developing apps usin...Introduction to extensions and other useful features for developing apps usin...
Introduction to extensions and other useful features for developing apps usin...
 
Moving from on prem to managed services with elastic on azure-final
Moving from on prem to managed services with elastic on azure-finalMoving from on prem to managed services with elastic on azure-final
Moving from on prem to managed services with elastic on azure-final
 
Google Cloud Platform で実現するプロダクションレディ マイクロサービス
Google Cloud Platform で実現するプロダクションレディ マイクロサービスGoogle Cloud Platform で実現するプロダクションレディ マイクロサービス
Google Cloud Platform で実現するプロダクションレディ マイクロサービス
 
Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...
Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...
Introducing the elastic 8.0 release a new era of speed, scale, relevance, and...
 
Elastic on Azure Integration & Building React UI Based Search App Using Azure...
Elastic on Azure Integration & Building React UI Based Search App Using Azure...Elastic on Azure Integration & Building React UI Based Search App Using Azure...
Elastic on Azure Integration & Building React UI Based Search App Using Azure...
 
Gpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure ai
Gpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure aiGpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure ai
Gpu accelerates aimodeldevelopmentandanalyticsutilizingelasticsearchandazure ai
 
2021/03/19 パブリッククラウドを活かす運用プロセス自動化
2021/03/19 パブリッククラウドを活かす運用プロセス自動化2021/03/19 パブリッククラウドを活かす運用プロセス自動化
2021/03/19 パブリッククラウドを活かす運用プロセス自動化
 
Microsoft open tech night 2020 feb18
Microsoft open tech night 2020 feb18Microsoft open tech night 2020 feb18
Microsoft open tech night 2020 feb18
 
[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...
[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...
[Cloud OnAir] Google Compute Engine に Deep Dive! 基本から運用時のベストプラクティスまで 2018年7月1...
 
[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ 〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送
[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ  〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ  〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送
[Cloud OnAir] 事例紹介 : 株式会社マーケティングアプリケーションズ 〜クラウドへのマイグレーションとその後〜 2020年12月17日 放送
 

Similar to Dist 29 gcp_serverless_web_app_development

Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601YorikoYokoyama
 
Monolithtomicroservices
MonolithtomicroservicesMonolithtomicroservices
MonolithtomicroservicesShotaro Suzuki
 
Monolith to microservice
Monolith to microserviceMonolith to microservice
Monolith to microserviceYorikoYokoyama
 
Api and rpa_seminar_april20_osaka
Api and rpa_seminar_april20_osakaApi and rpa_seminar_april20_osaka
Api and rpa_seminar_april20_osakaYuki Hayakawa
 
[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight
[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight
[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonightAmazon Web Services Japan
 
[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight
[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight
[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonightAmazon Web Services Japan
 
Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!
Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!
Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!CData Software Japan
 
PhoneGapの始め方
PhoneGapの始め方PhoneGapの始め方
PhoneGapの始め方akabana
 
Google for モバイル アプリ 15-00- maps apiで、かしこく地図アプリを開発しよう
Google for モバイル アプリ   15-00- maps apiで、かしこく地図アプリを開発しようGoogle for モバイル アプリ   15-00- maps apiで、かしこく地図アプリを開発しよう
Google for モバイル アプリ 15-00- maps apiで、かしこく地図アプリを開発しようGoogle Cloud Platform - Japan
 
Web appsとcleardbで作る簡単webサイト
Web appsとcleardbで作る簡単webサイトWeb appsとcleardbで作る簡単webサイト
Web appsとcleardbで作る簡単webサイトTsukasa Kato
 
AlexaのSmart HomeをAWSで作る方法
AlexaのSmart HomeをAWSで作る方法AlexaのSmart HomeをAWSで作る方法
AlexaのSmart HomeをAWSで作る方法Jun Ichikawa
 
20180221 AWS Black Belt Online Seminar AWS Lambda@Edge
20180221 AWS Black Belt Online Seminar AWS Lambda@Edge20180221 AWS Black Belt Online Seminar AWS Lambda@Edge
20180221 AWS Black Belt Online Seminar AWS Lambda@EdgeAmazon Web Services Japan
 
Mobilitydev2019 10 31_slideshare
Mobilitydev2019 10 31_slideshareMobilitydev2019 10 31_slideshare
Mobilitydev2019 10 31_slideshareTier_IV
 
ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介
ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介
ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介CData Software Japan
 
20160120 gpsロガーアプリを作ろう
20160120 gpsロガーアプリを作ろう20160120 gpsロガーアプリを作ろう
20160120 gpsロガーアプリを作ろう史識 川原
 
CData Sync × Google BigQuery 3ステップで各データソースとのデータ連携を実現
CData Sync × Google BigQuery  3ステップで各データソースとのデータ連携を実現CData Sync × Google BigQuery  3ステップで各データソースとのデータ連携を実現
CData Sync × Google BigQuery 3ステップで各データソースとのデータ連携を実現CData Software Japan
 
[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発
[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発
[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発Yuki Ando
 
Cloud Foundry Summit 2017 Recap
Cloud Foundry Summit 2017 RecapCloud Foundry Summit 2017 Recap
Cloud Foundry Summit 2017 RecapShinya Sasaki
 

Similar to Dist 29 gcp_serverless_web_app_development (20)

Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601Decode19 cd42 fixer_public_0601
Decode19 cd42 fixer_public_0601
 
Monolithtomicroservices
MonolithtomicroservicesMonolithtomicroservices
Monolithtomicroservices
 
Monolith to microservice
Monolith to microserviceMonolith to microservice
Monolith to microservice
 
AWS Black Belt Online Seminar AWS Amplify
AWS Black Belt Online Seminar AWS AmplifyAWS Black Belt Online Seminar AWS Amplify
AWS Black Belt Online Seminar AWS Amplify
 
Api and rpa_seminar_april20_osaka
Api and rpa_seminar_april20_osakaApi and rpa_seminar_april20_osaka
Api and rpa_seminar_april20_osaka
 
[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight
[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight
[CTO Night & Day 2019] グローバルのサービス展開に向けたマルチリージョンアーキテクチャ- #ctonight
 
[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight
[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight
[CTO Night & Day 2019] CTO のための一歩進んだコンテナ入門 #ctonight
 
Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!
Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!
Angular でもっとAPIファースト・もっとモダンデザインなWebアプリケーションを作ろう!
 
PhoneGapの始め方
PhoneGapの始め方PhoneGapの始め方
PhoneGapの始め方
 
GCPの画像認識APIの紹介
GCPの画像認識APIの紹介 GCPの画像認識APIの紹介
GCPの画像認識APIの紹介
 
Google for モバイル アプリ 15-00- maps apiで、かしこく地図アプリを開発しよう
Google for モバイル アプリ   15-00- maps apiで、かしこく地図アプリを開発しようGoogle for モバイル アプリ   15-00- maps apiで、かしこく地図アプリを開発しよう
Google for モバイル アプリ 15-00- maps apiで、かしこく地図アプリを開発しよう
 
Web appsとcleardbで作る簡単webサイト
Web appsとcleardbで作る簡単webサイトWeb appsとcleardbで作る簡単webサイト
Web appsとcleardbで作る簡単webサイト
 
AlexaのSmart HomeをAWSで作る方法
AlexaのSmart HomeをAWSで作る方法AlexaのSmart HomeをAWSで作る方法
AlexaのSmart HomeをAWSで作る方法
 
20180221 AWS Black Belt Online Seminar AWS Lambda@Edge
20180221 AWS Black Belt Online Seminar AWS Lambda@Edge20180221 AWS Black Belt Online Seminar AWS Lambda@Edge
20180221 AWS Black Belt Online Seminar AWS Lambda@Edge
 
Mobilitydev2019 10 31_slideshare
Mobilitydev2019 10 31_slideshareMobilitydev2019 10 31_slideshare
Mobilitydev2019 10 31_slideshare
 
ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介
ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介
ノンコーディング・超高速のApi 開発・運用基盤「cdata api server」のご紹介
 
20160120 gpsロガーアプリを作ろう
20160120 gpsロガーアプリを作ろう20160120 gpsロガーアプリを作ろう
20160120 gpsロガーアプリを作ろう
 
CData Sync × Google BigQuery 3ステップで各データソースとのデータ連携を実現
CData Sync × Google BigQuery  3ステップで各データソースとのデータ連携を実現CData Sync × Google BigQuery  3ステップで各データソースとのデータ連携を実現
CData Sync × Google BigQuery 3ステップで各データソースとのデータ連携を実現
 
[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発
[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発
[AWS DevDay] Cognito / Amplify で加速するエンタープライズのアプリケーション開発
 
Cloud Foundry Summit 2017 Recap
Cloud Foundry Summit 2017 RecapCloud Foundry Summit 2017 Recap
Cloud Foundry Summit 2017 Recap
 

More from Shotaro Suzuki

This is how our first offline technical event in three years was able to succ...
This is how our first offline technical event in three years was able to succ...This is how our first offline technical event in three years was able to succ...
This is how our first offline technical event in three years was able to succ...Shotaro Suzuki
 
Introducing the new features of the Elastic 8.6 release.pdf
Introducing the new features of the Elastic 8.6 release.pdfIntroducing the new features of the Elastic 8.6 release.pdf
Introducing the new features of the Elastic 8.6 release.pdfShotaro Suzuki
 
NET MAUI for .NET 7 for iOS, Android app development
 NET MAUI for .NET 7 for iOS, Android app development  NET MAUI for .NET 7 for iOS, Android app development
NET MAUI for .NET 7 for iOS, Android app development Shotaro Suzuki
 
What's New in the Elastic 8.5 Release
What's New in the Elastic 8.5 ReleaseWhat's New in the Elastic 8.5 Release
What's New in the Elastic 8.5 ReleaseShotaro Suzuki
 
Centralized Observability for the Azure Ecosystem
Centralized Observability for the Azure EcosystemCentralized Observability for the Azure Ecosystem
Centralized Observability for the Azure EcosystemShotaro Suzuki
 
What's New in the Elastic 8.4 Release
What's New in the Elastic 8.4 ReleaseWhat's New in the Elastic 8.4 Release
What's New in the Elastic 8.4 ReleaseShotaro Suzuki
 
Power Apps x .NET ~ Transforming Business Applications with Fusion Development
Power Apps x .NET ~ Transforming Business Applications with Fusion DevelopmentPower Apps x .NET ~ Transforming Business Applications with Fusion Development
Power Apps x .NET ~ Transforming Business Applications with Fusion DevelopmentShotaro Suzuki
 
devreljapan2022evaadvoc-final.pdf
devreljapan2022evaadvoc-final.pdfdevreljapan2022evaadvoc-final.pdf
devreljapan2022evaadvoc-final.pdfShotaro Suzuki
 
elastic-mabl-co-webinar-20220729
elastic-mabl-co-webinar-20220729elastic-mabl-co-webinar-20220729
elastic-mabl-co-webinar-20220729Shotaro Suzuki
 
Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Shotaro Suzuki
 
Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...
Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...
Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...Shotaro Suzuki
 
Building a search experience with Elastic – Introducing Elastic's latest samp...
Building a search experience with Elastic – Introducing Elastic's latest samp...Building a search experience with Elastic – Introducing Elastic's latest samp...
Building a search experience with Elastic – Introducing Elastic's latest samp...Shotaro Suzuki
 
Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...
Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...
Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...Shotaro Suzuki
 
Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...
Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...
Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...Shotaro Suzuki
 
Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...
Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...
Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...Shotaro Suzuki
 
What's New in the Elastic 8.2 Release - Seamless User Experience with Search -
What's New in the Elastic 8.2 Release - Seamless User Experience with Search -What's New in the Elastic 8.2 Release - Seamless User Experience with Search -
What's New in the Elastic 8.2 Release - Seamless User Experience with Search -Shotaro Suzuki
 
Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Shotaro Suzuki
 
Building Software Reliability through Distributed Tracing.pdf
Building Software Reliability through Distributed Tracing.pdfBuilding Software Reliability through Distributed Tracing.pdf
Building Software Reliability through Distributed Tracing.pdfShotaro Suzuki
 
Building a Flutter Development Environment with VSCode and Useful Extensions
Building a Flutter Development Environment with VSCode and Useful ExtensionsBuilding a Flutter Development Environment with VSCode and Useful Extensions
Building a Flutter Development Environment with VSCode and Useful ExtensionsShotaro Suzuki
 
Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Shotaro Suzuki
 

More from Shotaro Suzuki (20)

This is how our first offline technical event in three years was able to succ...
This is how our first offline technical event in three years was able to succ...This is how our first offline technical event in three years was able to succ...
This is how our first offline technical event in three years was able to succ...
 
Introducing the new features of the Elastic 8.6 release.pdf
Introducing the new features of the Elastic 8.6 release.pdfIntroducing the new features of the Elastic 8.6 release.pdf
Introducing the new features of the Elastic 8.6 release.pdf
 
NET MAUI for .NET 7 for iOS, Android app development
 NET MAUI for .NET 7 for iOS, Android app development  NET MAUI for .NET 7 for iOS, Android app development
NET MAUI for .NET 7 for iOS, Android app development
 
What's New in the Elastic 8.5 Release
What's New in the Elastic 8.5 ReleaseWhat's New in the Elastic 8.5 Release
What's New in the Elastic 8.5 Release
 
Centralized Observability for the Azure Ecosystem
Centralized Observability for the Azure EcosystemCentralized Observability for the Azure Ecosystem
Centralized Observability for the Azure Ecosystem
 
What's New in the Elastic 8.4 Release
What's New in the Elastic 8.4 ReleaseWhat's New in the Elastic 8.4 Release
What's New in the Elastic 8.4 Release
 
Power Apps x .NET ~ Transforming Business Applications with Fusion Development
Power Apps x .NET ~ Transforming Business Applications with Fusion DevelopmentPower Apps x .NET ~ Transforming Business Applications with Fusion Development
Power Apps x .NET ~ Transforming Business Applications with Fusion Development
 
devreljapan2022evaadvoc-final.pdf
devreljapan2022evaadvoc-final.pdfdevreljapan2022evaadvoc-final.pdf
devreljapan2022evaadvoc-final.pdf
 
elastic-mabl-co-webinar-20220729
elastic-mabl-co-webinar-20220729elastic-mabl-co-webinar-20220729
elastic-mabl-co-webinar-20220729
 
Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...
 
Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...
Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...
Discover what's new in the Elastic 8.3 release - Find, monitor, and protect e...
 
Building a search experience with Elastic – Introducing Elastic's latest samp...
Building a search experience with Elastic – Introducing Elastic's latest samp...Building a search experience with Elastic – Introducing Elastic's latest samp...
Building a search experience with Elastic – Introducing Elastic's latest samp...
 
Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...
Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...
Developing .NET 6 Blazor WebAssemby apps with Radzen Blazor component library...
 
Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...
Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...
Elastic x Microsoft Azure Integration Evolution - Integrated Monitoring for S...
 
Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...
Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...
Building 3D mobile apps using Power Apps Mixed Reality controls, Azure SQL Da...
 
What's New in the Elastic 8.2 Release - Seamless User Experience with Search -
What's New in the Elastic 8.2 Release - Seamless User Experience with Search -What's New in the Elastic 8.2 Release - Seamless User Experience with Search -
What's New in the Elastic 8.2 Release - Seamless User Experience with Search -
 
Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...
 
Building Software Reliability through Distributed Tracing.pdf
Building Software Reliability through Distributed Tracing.pdfBuilding Software Reliability through Distributed Tracing.pdf
Building Software Reliability through Distributed Tracing.pdf
 
Building a Flutter Development Environment with VSCode and Useful Extensions
Building a Flutter Development Environment with VSCode and Useful ExtensionsBuilding a Flutter Development Environment with VSCode and Useful Extensions
Building a Flutter Development Environment with VSCode and Useful Extensions
 
Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...Application development with c#, .net 6, blazor web assembly, asp.net web api...
Application development with c#, .net 6, blazor web assembly, asp.net web api...
 

Recently uploaded

TSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdfTSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdftaisei2219
 
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Yuma Ohgami
 
論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A surveyToru Tamaki
 
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?akihisamiyanaga1
 
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...Toru Tamaki
 
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineerYuki Kikuchi
 
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...博三 太田
 
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdfAWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdfFumieNakayama
 
SOPを理解する 2024/04/19 の勉強会で発表されたものです
SOPを理解する       2024/04/19 の勉強会で発表されたものですSOPを理解する       2024/04/19 の勉強会で発表されたものです
SOPを理解する 2024/04/19 の勉強会で発表されたものですiPride Co., Ltd.
 
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdfクラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdfFumieNakayama
 
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)UEHARA, Tetsutaro
 
TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案
TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案
TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案sugiuralab
 
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)Hiroki Ichikura
 
論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNetToru Tamaki
 

Recently uploaded (14)

TSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdfTSAL operation mechanism and circuit diagram.pdf
TSAL operation mechanism and circuit diagram.pdf
 
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
Open Source UN-Conference 2024 Kawagoe - 独自OS「DaisyOS GB」の紹介
 
論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey論文紹介:Semantic segmentation using Vision Transformers: A survey
論文紹介:Semantic segmentation using Vision Transformers: A survey
 
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
CTO, VPoE, テックリードなどリーダーポジションに登用したくなるのはどんな人材か?
 
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
論文紹介:Content-Aware Token Sharing for Efficient Semantic Segmentation With Vis...
 
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
自分史上一番早い2024振り返り〜コロナ後、仕事は通常ペースに戻ったか〜 by IoT fullstack engineer
 
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察  ~Text-to-MusicとText-To-ImageかつImage-to-Music...
モーダル間の変換後の一致性とジャンル表を用いた解釈可能性の考察 ~Text-to-MusicとText-To-ImageかつImage-to-Music...
 
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdfAWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
AWS の OpenShift サービス (ROSA) を使った OpenShift Virtualizationの始め方.pdf
 
SOPを理解する 2024/04/19 の勉強会で発表されたものです
SOPを理解する       2024/04/19 の勉強会で発表されたものですSOPを理解する       2024/04/19 の勉強会で発表されたものです
SOPを理解する 2024/04/19 の勉強会で発表されたものです
 
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdfクラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
クラウドネイティブなサーバー仮想化基盤 - OpenShift Virtualization.pdf
 
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
デジタル・フォレンジックの最新動向(2024年4月27日情洛会総会特別講演スライド)
 
TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案
TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案
TataPixel: 畳の異方性を利用した切り替え可能なディスプレイの提案
 
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
【早稲田AI研究会 講義資料】3DスキャンとTextTo3Dのツールを知ろう!(Vol.1)
 
論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet論文紹介:Automated Classification of Model Errors on ImageNet
論文紹介:Automated Classification of Model Errors on ImageNet
 

Dist 29 gcp_serverless_web_app_development

  • 1. © COPYRIGHT 2019 FIXER Inc. GCP の Serverless で Web アプリ開発 してみよう! 鈴木 章太郎 株式会社 FIXER Technical Fellow, Evangelist 内閣官房 政府 CIO 補佐官(法務省担当)
  • 2. • 株式会社 FIXER Technical Fellow, Evangelist • 内閣官房 政府 CIO 補佐官 (法務省担当) • 元 Microsoft Technical Evangelist 自己紹介 – 鈴木章太郎 Twitter : @shosuz
  • 3. © COPYRIGHT 2019 FIXER Inc. Agenda •GCP って何? •GCP の PaaS, Serverless, Container, mBaaS •サンプルアプリご紹介 •まとめ
  • 4. © COPYRIGHT 2019 FIXER Inc. GCP って何?
  • 5. © COPYRIGHT 2019 FIXER Inc. Google Cloud Platform • 幅広いアプリケーションを 作成できるモジュール式の クラウドベースの サービス のセット • Web アプリケーション • API エンドポイント • モバイルアプリケーション • ビッグデータアプリケー ション
  • 6. © COPYRIGHT 2019 FIXER Inc. GCP の PaaS, Serverless, Container, mBaaS
  • 7. © COPYRIGHT 2019 FIXER Inc. Google Cloud Platform Resources and Services (1 of 2) • アプリケーションの開発と展開のビルディングブロック • コンピュート • ストレージ • ビッグデータ • API サービス(エンドポイント、マネージ API) • 各組織がアプリケーションの開発に集中できるようにする • Google はインフラストラクチャを管理する
  • 8. © COPYRIGHT 2019 FIXER Inc. Google Cloud Platform Resources and Services (2 of 2) BigQuery Big Data Pub/Sub Dataflow Dataproc Datalab App Services EndpointsPrediction API Translate API Compute Compute EngineApp Engine Container Engine (GKE) Storage Cloud Storage Cloud SQL Cloud Datastore Bigtable
  • 9. © COPYRIGHT 2019 FIXER Inc. Web アプリケーションのトレンドの変化 • これまでの Web アプリケーションの構築 • .NET、Ruby on Rails、Django などのモノリシックな MVC フレームワークを用いた開発が一般的 • ここ数年、単機能の API サーバーを組み合わせて複雑なシステムを構築するマイクロサービス 化 (主に新規構築) • フロントエンドが HTML + JavaScript で実装され、バックエンドの API サーバーにリクエストする ことでデータの永続化やビジネスロジックの実行を行う場合、 アプリケーションサーバーは HTML テンプレートのレンダリングなどを行う必要がない • こうした考え方を突き詰めていった結果、 アプリケーションサーバーを必要としないサーバーレスアーキ テクチャが登場 • 関数をクラウド上で動作させるサービス • AWS Lambda、Azure Functions、GCP Cloud Functions
  • 10. © COPYRIGHT 2019 FIXER Inc. Google Serverless - PaaS, mBaaS, Serverless, Containers Compute Compute Engine App Engine Google Container Engine (GKE) Cloud Run on GKEFirebase Cloud Run Cloud Functions App Engine Serverless Compute
  • 11. © COPYRIGHT 2019 FIXER Inc. GCP のサーバーレスコンピュート Firebase Functions App Engine Apps Cloud Functions Cloud Run Containers Cloud Run on GKE 完全サーバレス 管理クラスター無し 従量課金 GKE クラスター上 サーバレス 費用は GKE クラスター に含む mBaaS
  • 12. © COPYRIGHT 2019 FIXER Inc. PaaS の元祖、Google App Engine • GCP のサービスの中でも歴史あるサービス • 高いスケーラビリティと高いアベイラビリティ • Google の多くのサービスは GAE 上で構築されている? • GAE には大きく2種類の実行環境 • Standard Environment (GAE SE) • ノンメンテナンス運用できる • Flexible Environment (GAE FE) • 柔軟性を保持したままメンテナンスを減らして運用できる
  • 13. © COPYRIGHT 2019 FIXER Inc. Google App Engine (GAE) App Engine Apps https://cloud.google.com/appengine/?hl=ja https://cloud.google.com/appengine/docs/?hl=ja https://cloud.google.com/appengine/docs/the- appengine-environments?hl=ja https://cloud.google.com/appengine/docs/flexi ble/dotnet/?hl=ja https://cloud.google.com/appengine/docs/flexi ble/dotnet/quickstart?hl=ja
  • 14. © COPYRIGHT 2019 FIXER Inc. App Engine フレキ シブル環境で .NET を使用するための クイックスタート https://cloud.google.com/appengine/docs/flexible/dotne t/quickstart?hl=ja
  • 15. © COPYRIGHT 2019 FIXER Inc. Cloud Functions • GCP 上で JavaScript で書かれた関数を実行するためのサービス • 関数はイベントベースで発火する形式 • Google Cloud Storage もしくは Google Cloud Pub/Sub からのイベン トで呼び出される • HTTP リクエスト経由での実行も可能 • JavaScript ランタイムとしては Node.js を使用 • 自動的にスケールする仕組み
  • 16. © COPYRIGHT 2019 FIXER Inc. Cloud Functions Functions Cloud Functions https://cloud.google.com/functions/?hl=ja https://cloud.google.com/functions/docs/?hl=ja https://cloud.google.com/functions/docs/quickstart-nodejs?hl=ja https://cloud.google.com/functions/docs/quickstarts?hl=ja
  • 17. © COPYRIGHT 2019 FIXER Inc. Google Cloud Run Cloud Run Containers Cloud Run on GKE 完全サーバレス 管理クラスター無し 従量課金 GKE クラスター上 サーバレス 費用は GKE クラスター に含む https://cloud.google.com/run/docs/quickstarts/build-and-deploy https://cloud.google.com/run/?hl=ja https://cloud.google.com/run/docs/quickstarts/prebuilt-deploy?hl=ja
  • 18. © COPYRIGHT 2019 FIXER Inc. Firebase とは Google の アプリ開発プラットフォーム https://firebase.google.com/?hl=ja https://cloud.google.com/products/?hl=ja#firebase
  • 19. © COPYRIGHT 2019 FIXER Inc. Firebase のミッションは アプリ開発者の成功を助けること https://firebase.google.com/?hl=ja https://cloud.google.com/products/?hl=ja#firebase
  • 20. © COPYRIGHT 2019 FIXER Inc. Firebase の提供するサービス アプリ品質の改善 Crashlytics Performance Monitoring Test Lab エンゲージメントを促進 Analytics Predictions Cloud Messaging Remote Config A/B Testing Dynamic Links In-App Messaging より良いアプリの構築 Auth Cloud Functions Cloud Firestore Cloud Storage Hosting Realtime Database MLKit https://cloud.google.com/products/?hl=ja#firebase
  • 21. © COPYRIGHT 2019 FIXER Inc. Firebase がサポートするプラットフォーム iOS Android C++Web Unity
  • 22. © COPYRIGHT 2019 FIXER Inc. Firebase を利用した Web サービス開発
  • 23. © COPYRIGHT 2019 FIXER Inc. 典型的な Web サービスの構成 iOS Android Web APIサーバー Compute Engine 認証サービス Compute Engine データベース Compute Engine
  • 24. © COPYRIGHT 2019 FIXER Inc. Web サービス開発者の悩みどころ
  • 25. © COPYRIGHT 2019 FIXER Inc. もっと便利な手段があるはず… https://firebase.google.com/products/firestore/?hl=ja Cloud Firestore
  • 26. © COPYRIGHT 2019 FIXER Inc. Cloud Firestore とは マルチ リージョン対応 強整合性 サーバーレス 容易な同期 オフライン モード 大規模にスケールすることができる サーバーレスの NoSQL リアルタイム データベース https://firebase.google.com/products/firestore/?hl=ja
  • 27. © COPYRIGHT 2019 FIXER Inc. Cloud Firestore を利用した構成 Cloud OnAir iOS Android Web Cloud Firestore FirebaseAuthentication これまでのようなインフラ管理は不要!
  • 28. © COPYRIGHT 2019 FIXER Inc. Firebase を 利用した Web サービス 開発 https://codelabs.developers.google.com/codelabs/firebase-web/index.html#0
  • 29. © COPYRIGHT 2019 FIXER Inc. アーキテクチャ Cloud Shell ユーザ認証 デプロイ ・コマンド実行 ・コード記述 ・ローカルで動作確認 Cloud FirestoreFirebase Hosting データ保存 リアルタイム更新 Webアプリに アクセス Firebase Authentication 操作
  • 30. © COPYRIGHT 2019 FIXER Inc. https://qiita.com/taketakekaho/items/52b7c196ddbd4cb3c968 Firebaseで1時間で簡単なWebチャットアプリが作れるハンズオン
  • 31. © COPYRIGHT 2019 FIXER Inc. Firebase による サービス改善
  • 32. © COPYRIGHT 2019 FIXER Inc. Web サービス改善の契機 機能 (Functional) 非機能 (Non- Functional)
  • 33. © COPYRIGHT 2019 FIXER Inc. Web サイトのパフォーマンスが劣化すると 利益やコンバージョンに対して影響がでる可能性がある パフォーマンスがビジネスに与える影響
  • 34. © COPYRIGHT 2019 FIXER Inc. • アプリの起動時間や HTTP/S ネットワーク リクエストなど を自動的に測定する • アプリのパフォーマンスの改善が 見込める状況を見抜く • アプリに合わせて Performance Monitoring をカスタマイズする • JavaScript SDK を組み込むだけで 利用可能 ※ Web 向けは Beta 版 Performance Monitoring https://firebase.google.com/products/performance/?hl=ja
  • 35. © COPYRIGHT 2019 FIXER Inc. FIXER Café アプリご紹介
  • 36. © COPYRIGHT 2019 FIXER Inc. de:code 2019 ブレイクアウトセッション (2019.5.30)
  • 37. © COPYRIGHT 2019 FIXER Inc.
  • 38. © COPYRIGHT 2019 FIXER Inc.
  • 39. © COPYRIGHT 2019 FIXER Inc. Firebase Functions Firebase Hosting Firebase DB Stripe Browser (or PWA App) Firebase Authentication OneSignal Hosting Push Notification PaymentAPI Auth Check Save Design Figma Fixer Café アプリのアーキテクチャ
  • 40. © COPYRIGHT 2019 FIXER Inc. Progressive Web Applications
  • 41. © COPYRIGHT 2019 FIXER Inc. Cashe API: オフラインのサポート Push API: プッシュ通知 Background Sync: バッググラウンド処理 manifest.json: スマートフォンへのトップへのアイコン追加 Web App
  • 42. © COPYRIGHT 2019 FIXER Inc.
  • 43. © COPYRIGHT 2019 FIXER Inc. Figma Progressive Web Framework Approachable Composing with Components
  • 44. © COPYRIGHT 2019 FIXER Inc. プロトタイピング
  • 45. © COPYRIGHT 2019 FIXER Inc. コンポーネントによる構成
  • 46. © COPYRIGHT 2019 FIXER Inc. Vue.js Progressive Web Framework Approachable Composing with Components
  • 47. © COPYRIGHT 2019 FIXER Inc. SPA(Single Page Application)の基本 – Qiita https://qiita.com/takanorip/items/82f0c70ebc81e9246c7a より 従来 SPA SPA とは? Vue.js とは?
  • 48. © COPYRIGHT 2019 FIXER Inc.
  • 49. © COPYRIGHT 2019 FIXER Inc. HTML JavaScript CSS
  • 50. © COPYRIGHT 2019 FIXER Inc. Nuxt.js Vue.js Framework High Performance Modular
  • 51. © COPYRIGHT 2019 FIXER Inc. Firebase mBaaS Simple By Google
  • 52. © COPYRIGHT 2019 FIXER Inc. Firebase Functions Firebase Hosting Firebase DB Stripe Browser (or PWA App) Firebase Authentication OneSignal Hosting Push Notification PaymentAPI Auth Check Save Design Figma Fixer Café アプリのアーキテクチャ
  • 53. © COPYRIGHT 2019 FIXER Inc. Firebase Authenticationの例
  • 54. © COPYRIGHT 2019 FIXER Inc.
  • 56. © COPYRIGHT 2019 FIXER Inc. セキュリティルール API を使った操作 REST API スキーマAPIの作成 SQL APIサーバー DB © COPYRIGHT 2019 FIXER Inc. Firestore と従来の API サーバ
  • 57. © COPYRIGHT 2019 FIXER Inc.© COPYRIGHT 2019 FIXER Inc. Firestore
  • 58. © COPYRIGHT 2019 FIXER Inc. Firestore シミュレータ © COPYRIGHT 2019 FIXER Inc.
  • 59. © COPYRIGHT 2019 FIXER Inc. マイクロサービス アーキテクチャ スタイル © COPYRIGHT 2019 FIXER Inc.
  • 60. © COPYRIGHT 2019 FIXER Inc. 商品管理 支払い ・・・ おすすめ機能 マイクロサービス アーキテクチャ スタイルに沿って実装 © COPYRIGHT 2019 FIXER Inc.
  • 61. © COPYRIGHT 2019 FIXER Inc. • Firebase とは Google のアプリ開発プラットフォーム • Cloud Firestore を始めとした Firebase サービスを Web サービス に組み 込むことにより、インフラの管理を大幅に軽減 • Performance Monitoring をウェブサイトに組み込むこと により自動的にメトリクスを収集 Firebase を利用してアプリケーションにフォーカス Firebase を使ってみよう! Google 謹製 ハンズオンコンテンツ Cloud Firestore Web Codelab Firebase Performance Monitoring for Web
  • 62. © COPYRIGHT 2019 FIXER Inc. まとめ •Google Cloud Platform を使ってみよう! •PaaS, mBaaS, Container, …順番に触ってみよう! •まずは無料版から試しましょう!
  • 63. © COPYRIGHT 2019 FIXER Inc.