投稿時間:2022-09-28 18:43:09 RSSフィード2022-09-28 18:00 分まとめ(46件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 東京ソラマチに大型遊具メインの「新たなアソビバ」誕生 23年春オープン https://www.itmedia.co.jp/business/articles/2209/28/news175.html itmedia 2022-09-28 17:45:00
IT ITmedia 総合記事一覧 [ITmedia News] 排気もできるエアコン、パナソニックが発売 https://www.itmedia.co.jp/news/articles/2209/28/news179.html itmedia 2022-09-28 17:39:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 埼玉県の「住み続けたい街」ランキング 3位「鳩山町」、2位「滑川町」、1位は? https://www.itmedia.co.jp/business/articles/2209/28/news167.html itmedia 2022-09-28 17:38:00
IT ITmedia 総合記事一覧 [ITmedia Mobile] 英Nothing、ワイヤレスイヤフォン「Ear (stick)」をチラ見せ Phone (1)の限定バッグも https://www.itmedia.co.jp/mobile/articles/2209/28/news112.html earstick 2022-09-28 17:35:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders グループウェア新版「desknet's NEO V7.1」、アプリ開発機能「AppSuite」に手書き部品などを追加 | IT Leaders https://it.impress.co.jp/articles/-/23833 グループウェア新版「desknetxsNEOV」、アプリ開発機能「AppSuite」に手書き部品などを追加ITLeadersネオジャパンは年月日、グループウェア「desknetsNEO」の新版「V」を発表した。 2022-09-28 17:42:00
js JavaScriptタグが付けられた新着投稿 - Qiita paizaラーニング レベルアップ問題集 Aランクレベルアップメニュー JavaScript 規則的な数列の和 https://qiita.com/ZampieriIsa/items/b821596d1b48939976fe javascript 2022-09-28 17:57:47
js JavaScriptタグが付けられた新着投稿 - Qiita 【JavaScriptとCSS変数】シンプルなダークモードの実装 https://qiita.com/fsd-ssk/items/c28ca60f7be29feeac04 javascript 2022-09-28 17:36:23
Ruby Railsタグが付けられた新着投稿 - Qiita 【Rails】既存Userモデルのカラムと,deviseで生成したUserモデルのカラムが重複し,エラーとなったときの対応 https://qiita.com/takecn/items/9b812ed79d93822ff0ce devise 2022-09-28 17:56:27
Ruby Railsタグが付けられた新着投稿 - Qiita MySQLがうまくいかない〜掲示板作成〜 https://qiita.com/takumi-1016/items/9f2fcac467512bc04d4d mysql 2022-09-28 17:13:31
技術ブログ Developers.IO ความแตกต่างของ Cluster mode ใน ElastiCache for Redis https://dev.classmethod.jp/articles/cluster-mode-differences-in-elasticache-for-redis/ ความแตกต่างของCluster mode ในElastiCache for Redisสวัสดีครับสึคุโบชิครับช่วงนี้ผมได้โอกาสจับElastiCache for Redis บ่อยและพึ่งจะได้ศึกษาเกี่ยวกับCluster mo 2022-09-28 08:30:35
技術ブログ Developers.IO การใช้งาน SSM เชื่อมต่อเข้า EC2 Instance โดยไม่ต้องมี Inbound https://dev.classmethod.jp/articles/using-ssm-connect-to-ec2-instance/ การใช้งานSSM เชื่อมต่อเข้าEC Instance โดยไม่ต้องมีInboundเคยรู้สึกยุ่งยากเวลาต้องมาคอยอัพเดทmyIP ในinbound Security Group เวลาต้องการเข้าใช้งานSSH ของEC Instance 2022-09-28 08:28:56
技術ブログ Developers.IO [Terraform] RDS DB インスタンスに対して AWS Backup の継続的バックアップ(PITR)を取得したら plan に差分が出たので調べてみた https://dev.classmethod.jp/articles/terraform-rds-backup-retention-period/ awsbackup 2022-09-28 08:26:56
海外TECH DEV Community CI/CD pipeline for ECS application https://dev.to/exanubes/cicd-pipeline-for-ecs-application-mn8 CI CD pipeline for ECS applicationAny modern application these days needs to have an automated deployment process Usually it is setup via a webhook other times we need to manually trigger the deployment sometimes even requiring more than one person to approve In this article we will learn how to build a CI CD pipeline for an ECS Fargate application utilising AWS Code Pipeline Code Build and Code Deploy services By the end of this article we will be able to automatically deploy a new version of our application by simply pushing new commits to the master branch of a Github repository Starting pointAs you can see in the diagram we re starting off with a Load Balanced Fargate Cluster inside a VPC The application is secured with an SSL certificate on a custom domain Download code from the previous article about adding SSL certificate to a Fargate app if you d like to follow along Keep in mind you will need a SSL certificate and a hosted zone to get this to work If you d like to see the finished code for this article you can find it on github Configuring Github CredentialsStarting off we need to define the source of our application s sourcecode In this case we re going to use github lib pipeline stack tsinterface Props extends StackProps const secretConfig arn arn aws secretsmanager eu central secret github token id github token export class PipelineStack extends Stack constructor scope Construct id string private readonly props Props super scope id props new GitHubSourceCredentials this code build credentials accessToken SecretValue secretsManager secretConfig id As you can see we re loading up a github token from the Secrets Manager Here s a quick guide on how to generate and store a personal access token This piece of code tells Code Build what credentials to use when communicating with Github API Important to note that AWS allows only one Github credential per account per region Code SourceNow that Code Build is authorized to communicate with GitHub in our name we can define where it should take the code from lib pipeline stack tsconst githubConfig owner exanubes repo ecs fargate ci cd pipeline branch master const source Source gitHub owner githubConfig owner repo githubConfig repo webhook true webhookFilters FilterGroup inEventOf EventAction PUSH andBranchIs githubConfig branch This is how we can subscribe to a Github Webhook that will trigger an event every time someone pushes to a master branch in the ecs fargate ci cd pipeline repo that belongs to exanubes Build spec lib pipeline stack tsprivate getBuildSpec return BuildSpec fromObject version env shell bash phases pre build commands echo logging in to AWS ECR aws version echo AWS STACK REGION echo CONTAINER NAME aws ecr get login password region AWS STACK REGION docker login username AWS password stdin AWS ACCOUNT ID dkr ecr AWS STACK REGION amazonaws com COMMIT HASH echo CODEBUILD RESOLVED SOURCE VERSION cut c echo COMMIT HASH IMAGE TAG COMMIT HASH latest echo IMAGE TAG build commands echo Build started on date echo Build Docker image docker build f CODEBUILD SRC DIR backend Dockerfile t REPOSITORY URI latest backend echo Running docker tag REPOSITORY URI latest REPOSITORY URI IMAGE TAG docker tag REPOSITORY URI latest REPOSITORY URI IMAGE TAG post build commands echo Build completed on date echo Push Docker image docker push REPOSITORY URI latest docker push REPOSITORY URI IMAGE TAG printf name CONTAINER NAME imageUri REPOSITORY URI IMAGE TAG gt docker image definition json artifacts files docker image definition json Lots of cool things happening here First of all the build spec are instructions for Code Build on how it should handle building our projects AWS provides us with some life cycle hooks so we can decide at what point in the life cycle of the build process certain actions should happen The version key pair defines the version of the build spec API is the most recent version at the time of writing Starting out we have a pre build life cycle hook here we re checking our environment logging into docker with ECR credentials and creating an image tag from a commit sha Moving over to the build stage of the life cycle it s time to build the Dockerfile image The repository I m using has both backend and infrastructure code in it so we have to define the path to the Dockerfile as well as the execution context both of which are inside the backend directory Then we just tag it and move over to our post build commands Now we take the REPOSITORY URI variable and the IMAGE TAG generated in the pre build step and we push our image to both the latest tag and our own generated tag in order to keep track of our image versions Last but not least we generate a image definitions file that will hold the name of our container and the image uri This is necessary to substitute our Task Definition s image section with a new image and this will also be the artifact output of Code Build Build config lib pipeline stack tsconst stack Stack of this const buildSpec this getBuildSpec const project new Project this project projectName pipeline project buildSpec source environment buildImage LinuxBuildImage AMAZON LINUX ARM privileged true environmentVariables REPOSITORY URI value props repository repositoryUri AWS ACCOUNT ID value stack account AWS STACK REGION value stack region GITHUB AUTH TOKEN type BuildEnvironmentVariableType SECRETS MANAGER value secretConfig arn CONTAINER NAME value props container containerName Since we know where to look for application sourcecode and we know how to build the app we can now create a Code Build project to put this all together Our Fargate application is running on ARM architecture and unfortunately the version of docker in codebuild does not support defining a platform when building an image This is why we have to explicitly set the buildImage to Linux ARM Platform in the environment settings In the buildspec we re using quite a few environment variables and this is where we set it Some of them will come from other stacks we also have to use the github secret arn that we created in the beginning but also use some stack config For this we re gonna use Stack of this to get the scope of our current stack We also have to update our Props interface as we re relying on components from other stacks lib pipeline stack tsinterface Props extends StackProps repository IRepository service IBaseService cluster ICluster container ContainerDefinition PermissionsAs everything in AWS Code Build needs to have relevant permissions to be able to interface with other services lib pipeline stack tsproject addToRolePolicy new PolicyStatement actions secretsmanager GetSecretValue resources secretConfig arn props repository grantPullPush project grantPrincipal First off we gotta give the Code Build Project access to our github access token from the Secrets Manager It s also going to pull and push to and from the ECR repository Defining pipeline actionsWe can finally start creating the different actions for our pipeline We will have a source action downloading code from Github a build action for building the docker image and pushing it to the ECR repository and to finish it off we ll have a deploy action that will take the output of the build action BuildOutput Artifact and use it to deploy a new version of our application on ECS lib pipeline stack tsconst artifacts source new Artifact Source build new Artifact BuildOutput const pipelineActions source new GitHubSourceAction actionName Github owner githubConfig owner repo githubConfig repo branch githubConfig branch oauthToken SecretValue secretsManager github cdk pipeline output artifacts source trigger GitHubTrigger WEBHOOK build new CodeBuildAction actionName CodeBuild project input artifacts source outputs artifacts build deploy new EcsDeployAction actionName ECSDeploy service props service imageFile new ArtifactPath artifacts build docker image definition json Let s start with defining our artifacts the output of a particular action in the pipeline which will be stored in CodePipeline s S Bucket Each subsequent action will use the previous action s artifact so this is very important In this pipeline we only have two artifacts first one will be the code downloaded from the repository The source Artifact will be the input for the build action and as per the build spec we re going to output the image definition file docker image definition json as build output Artifact This is then used in the deploy action and we re passing that file to be used during deployment Defining pipeline stagesNow that we have everything setup we can finally define the pipeline stages and assign appropriate actions to them lib pipeline stack tsconst pipeline new Pipeline this DeployPipeline pipelineName exanubes pipeline stages stageName Source actions pipelineActions source stageName Build actions pipelineActions build stageName Deploy actions pipelineActions deploy In this simple example we have only one action per stage but nothing s stopping us from adding another action that will run integration tests in the Build stage for example DeploymentNow that our pipeline is ready there s still a few things we need to sort out Because our pipeline needs environment variables such as account id and region we actually have to explicitly pass those to our stacks bin infrastructure stack tsimport getAccountId getRegion resolveCurrentUserOwnerName from exanubes cdk utils async function start Promise lt void gt const owner await resolveCurrentUserOwnerName const account await getAccountId const region await getRegion const env Environment account region const app new cdk App const ecr new EcrStack app EcrStack name env const vpc new VpcStack app VpcStack name env const ecs new ElasticContainerStack app ElasticContainerStack name vpc vpc vpc repository ecr repository env new RouteStack app RouteStack name loadBalancer ecs loadBalancer env new PipelineStack app PipelineStack name repository ecr repository service ecs service cluster ecs cluster container ecs container env Tags of app add owner owner start catch error gt console log error process exit Here we re getting the account and region from utility functions I ve imported from exanubes cdk utils that use AWS SDKv Then I pass them to every stack as it often happens that there are errors when one stack has explicitly set env and others do not so I recommend passing it to all stacks as those errors can be quite difficult to debug sometimes Important to note that we re also passing repository service cluster and container to the pipeline stack as it relies on references to these resources Do make sure that they re available on your ElasticContainerStack instance lib elastic container stack tspublic readonly container ContainerDefinitionpublic readonly service FargateServicepublic readonly cluster ClusterI ve also added an owner tag your account name to each resource for good measure Now we can build and deploynpm run build amp amp npm run cdk deploy allKeep in mind you will have to upload your first image to ECR otherwise deployment will hang on ElasticContainerStack This can be done during the deployment as stacks are deployed in a sequence and ECR is the first one After deploying the infrastructure try and make changes in the app service ts file and see if the automatic deployment works when you push to your repository Don t forget to destroy the stack when you re donenpm run cdk destroy all SummaryIn this article we were able to take our current application infrastructure and add a CI CD pipeline to it First we defined how Code Build should talk to the Github API by defining credentials Then we needed to create a buildspec which would instruct Code Build on how to build our application by utilising different life cycle hooks of the entire process Last but not least we output a BuildOutput Artifact that can then be used by Code Deploy to update our app 2022-09-28 08:12:16
海外TECH Engadget The Polestar 3 electric SUV will debut on October 12th https://www.engadget.com/polestar-3-suv-launch-october-12-081731826.html?src=rss The Polestar electric SUV will debut on October thPolestar s first electric SUV will get its official unveiling on October th a range target of miles and an optional Performance Pack the Swedish company announced The Polestar will launch with premium features like an air suspension active dampers and torque vectoring putting it up against other SUV EVs like the Mercedes Benz EQS Rivian RS and Tesla Model X Like those models it ll be manufactured in the US at Volvo s factory in Charleston South Carolina The company co owned by Volvo and Chinese parent Geely revealed a fair bit of information about the Polestar That includes a new glimpse from the back showing similar but upside down taillights to the Polestar Polestar previously showed off the design from the side in June below nbsp PolestarThe Polestar will come with a rear biased dual motor powertrain similar to the one on the Polestar with electric torque vectoring via a dual clutch system on the rear motor The ride will be controlled by an adaptive dual chamber air suspension and active dampers as standard letting drivers switch between comfort and firm suspension dynamics The dampers will adjust to suit road conditions quot once every two milliseconds quot Polestar said The optional Performance Pack will deliver horsepower and pound feet of torque compared to horsepower for the Model X It also includes Polestar Engineered chassis tuning for the active dampers and air suspension along with interior details like gold seat belts nbsp Previously the company has said that it s shooting for a mile range on the European WLTP cycle so considerably less in EPA terms It ll also include a semi autonomous driving system for highway driving enabled by by NVIDIA tech and a lidar sensor ーVolvo is likely to use similar tech on its next gen EX SUV set to launch on November th Rumors have pegged the Polestar s price at somewhere between and at launch nbsp 2022-09-28 08:17:31
医療系 医療介護 CBnews 措置入院不要の患者、医療保護入院で受け入れも-栃木県が県立病院の業務実績評価書を公表 https://www.cbnews.jp/news/entry/20220928174956 医療保護入院 2022-09-28 18:00:00
医療系 医療介護 CBnews 新型コロナとインフル同時拡大に懸念、日医釜萢氏-インフル事前検査には慎重姿勢示す https://www.cbnews.jp/news/entry/20220928164636 季節性インフルエンザ 2022-09-28 17:15:00
海外ニュース Japan Times latest articles Little to celebrate as Japan and China mark 50 years of ties https://www.japantimes.co.jp/news/2022/09/28/national/politics-diplomacy/china-japan-50th-anniversary-taiwan/ beijing 2022-09-28 17:38:19
海外ニュース Japan Times latest articles Weak yen pulls Japan away from BOJ governor’s radicalism https://www.japantimes.co.jp/news/2022/09/28/business/kuroda-radicalism-weak-yen-discontent/ Weak yen pulls Japan away from BOJ governor s radicalismGovernment intervention to prop up the yen shortly after Haruhiko Kuroda made comments that led to a weakening of the currency highlights the uneasy relationship 2022-09-28 17:25:26
海外ニュース Japan Times latest articles ‘Ironman’ Tamawashi gets his due with second-career Emperor’s Cup https://www.japantimes.co.jp/sports/2022/09/28/sumo/ironman-tamawashi-second-title/ Ironman Tamawashi gets his due with second career Emperor s CupThe year old s victory was the feel good story of the the Autumn Basho but the sport s immediate future remains in flux as young wrestlers struggle to 2022-09-28 17:53:46
海外ニュース Japan Times latest articles Shohei Ohtani sets personal-best MLB hit streak at 12 games https://www.japantimes.co.jp/sports/2022/09/28/baseball/mlb/ohtani-mlb-hit-streak-12/ james 2022-09-28 17:45:23
ニュース BBC News - Home Keir Starmer: Government has lost control of economy https://www.bbc.co.uk/news/uk-politics-63058869?at_medium=RSS&at_campaign=KARANGA labour 2022-09-28 08:46:08
ニュース BBC News - Home Hurricane Ian: Florida fears catastrophic flooding as storm nears https://www.bbc.co.uk/news/world-us-canada-63052558?at_medium=RSS&at_campaign=KARANGA catastrophic 2022-09-28 08:41:41
ニュース BBC News - Home Nord Stream leaks: Sabotage to blame, says EU https://www.bbc.co.uk/news/world-europe-63057966?at_medium=RSS&at_campaign=KARANGA danish 2022-09-28 08:46:08
ニュース BBC News - Home Rupa Huq MP apologises for 'superficially' black remark https://www.bbc.co.uk/news/uk-politics-63050482?at_medium=RSS&at_campaign=KARANGA racist 2022-09-28 08:06:24
GCP Google Cloud Platform Japan 公式ブログ Cloud Next ’22 の Google Workspace 関連イベントにご参加ください https://cloud.google.com/blog/ja/products/workspace/join-google-workspace-at-cloud-next22/ プレゼンターGoogleCloudプロダクトおよびエンジニアリング担当バイスプレジデント兼ゼネラルマネージャーFrankWeigel、Airbusチェンジおよび採用リーダーRhysPhilips氏GoogleWorkspaceを使用して最新で最高水準のアプリケーションを作成するこのセッションでは、GoogleWorkspaceが組織にもたらす拡張性の機会と、それがどのようにビジネスの価値の向上に有益となるかをご紹介します。 2022-09-28 10:00:00
GCP Google Cloud Platform Japan 公式ブログ Bigtable を使った Google による広告のパーソナライズのスケーリング https://cloud.google.com/blog/ja/products/data-analytics/how-google-scales-ad-personalization-with-bigtable/ バッチおよびリアルタイムに近いパーソナライズのための、非常に高いスループットでのアクセス広告配信において重要なパスでの読み込みのための、低レイテンシパーセンタイルでミリ秒未満の検索パーソナライズの遅延を低減するための、広告モデルの高速数秒程度の増分更新Bigtable オフラインでのパーソナライズのための低コスト、高スループットのデータアクセスだけでなく、オンラインデータ処理向けの一貫した低レイテンシのアクセスもサポートするBigtableの汎用性は、まさに広告ワークロードに最適です。 2022-09-28 09:50:00
GCP Google Cloud Platform Japan 公式ブログ Let’s Enhance が NVIDIA AI と GKE を使用して AI ベースの写真編集を強化した仕組み https://cloud.google.com/blog/ja/products/ai-machine-learning/innovative-ai-for-beautifying-images-using-nvidia-gpus-and-gke/ チームワークで夢を現実にLetsEnhanceはGoogleCloudとNVIDIAを使用してリアルタイムの推論のサービングとインフラストラクチャの管理に伴う課題に対処し、AI対応のサービスを安全なGoogleCloudインフラストラクチャの本番環境に大規模に移行することに成功しました。 2022-09-28 09:40:00
GCP Google Cloud Platform Japan 公式ブログ Einride がサーバーレスでスケーリングし、貨物業界を再設計した方法 https://cloud.google.com/blog/ja/products/serverless/how-einride-scaled-with-serverless-and-re-architected-the-freight-industry/ それでも、早くからデジタル化を進めてきた産業界からは、リソース管理を抽象化することで、より高い稼働率や効率的なシステムを実現できるなど、多くの教訓を得ることができました。 2022-09-28 09:30:00
GCP Google Cloud Platform Japan 公式ブログ Cloud Wisdom Weekly: AI / ML がイノベーションを促進し、費用を削減する 4 つの方法 https://cloud.google.com/blog/ja/topics/startups/4-ways-to-innovate-and-save-with-google-cloud-ai-and-ml/ AIプロダクトページで、Translation、Visionなどの他のAPIについて探るおよび、MLAPI向けGoogleCloudSkillsBoostマネージドサービスを使用して、ML開発をスケールし、モデルの本番環境へのデプロイを加速する事前トレーニング済みのモデルは非常に便利ですが、多くの場合、テクノロジー企業やスタートアップは、独自のデータから分析情報を引き出す、または新しいユースケースを一般公開データに適用するには、カスタムモデルを作成する必要があります。 2022-09-28 09:20:00
GCP Google Cloud Platform Japan 公式ブログ Google Cloud でデータベースの暗号化を設計する https://cloud.google.com/blog/ja/topics/inside-google-cloud/architecting-for-database-encryption-on-google-cloud/ GoogleEKMでは、Google外部のサポートされている鍵管理システムで管理されている鍵を使用して、GoogleCloud内のデータを保護できます。 2022-09-28 09:10:00
北海道 北海道新聞 天皇陛下、7カ国元首と会見 皇居、国葬参列で来日 https://www.hokkaido-np.co.jp/article/737405/ 天皇陛下 2022-09-28 17:11:00
ニュース Newsweek 銃創の止血にはタンポン、兵舎はまるで収容所、戦わずして死にそうなロシア徴集兵 https://www.newsweekjapan.jp/stories/world/2022/09/post-99720.php 銃創の止血にはタンポン、兵舎はまるで収容所、戦わずして死にそうなロシア徴集兵新たに戦闘に動員されたロシア兵たちがいかに厳しい状況に置かれているかを示すさまざまな動画が拡散されている。 2022-09-28 17:41:32
ニュース Newsweek 「上海協力機構」を西側諸国は冷笑するが、実は着々と「中国的・同盟」は拡大中 https://www.newsweekjapan.jp/stories/world/2022/09/post-99715.php 新疆での暴力には国外の勢力が国境を越えて関係していた。 2022-09-28 17:31:00
マーケティング MarkeZine サーチとパス・コミュニケーションズ、原宿表参道ビジョンの視聴者数・視認態度等をリアルタイムに可視化 http://markezine.jp/article/detail/40143 視認 2022-09-28 17:30:00
マーケティング MarkeZine 博報堂プロダクツ、公式YouTubeチャンネルを開設 クリエイティブ領域と広告制作のリアルを発信 http://markezine.jp/article/detail/40146 youtube 2022-09-28 17:15:00
IT 週刊アスキー 「白猫」シリーズ最新スマホアプリ『白猫GOLF』キャラクターが躍動するOPムービーが公開! https://weekly.ascii.jp/elem/000/004/106/4106950/ 事前登録 2022-09-28 17:55:00
IT 週刊アスキー 超音速アクションゲームをいち早くプレイしよう! 「ソニックフロンティア」店頭体験会を開催決定 https://weekly.ascii.jp/elem/000/004/106/4106919/ 発売予定 2022-09-28 17:30:00
IT 週刊アスキー ナムコのシステムII基板第1弾タイトル『アサルト』が「アーケードアーカイブス」に登場! https://weekly.ascii.jp/elem/000/004/106/4106940/ nintendo 2022-09-28 17:15:00
マーケティング AdverTimes イオンモバイル、顧客対応を強化 トラブル避け定着図る https://www.advertimes.com/20220928/article397014/ 龍二 2022-09-28 08:38:51
マーケティング AdverTimes 『雪肌精』の商品ライフサイクルを通じたCO2排出量を可視化 消費者理解を促す https://www.advertimes.com/20220928/article397007/ 取り組み 2022-09-28 08:04:11
GCP Cloud Blog JA Cloud Next ’22 の Google Workspace 関連イベントにご参加ください https://cloud.google.com/blog/ja/products/workspace/join-google-workspace-at-cloud-next22/ プレゼンターGoogleCloudプロダクトおよびエンジニアリング担当バイスプレジデント兼ゼネラルマネージャーFrankWeigel、Airbusチェンジおよび採用リーダーRhysPhilips氏GoogleWorkspaceを使用して最新で最高水準のアプリケーションを作成するこのセッションでは、GoogleWorkspaceが組織にもたらす拡張性の機会と、それがどのようにビジネスの価値の向上に有益となるかをご紹介します。 2022-09-28 10:00:00
GCP Cloud Blog JA Bigtable を使った Google による広告のパーソナライズのスケーリング https://cloud.google.com/blog/ja/products/data-analytics/how-google-scales-ad-personalization-with-bigtable/ バッチおよびリアルタイムに近いパーソナライズのための、非常に高いスループットでのアクセス広告配信において重要なパスでの読み込みのための、低レイテンシパーセンタイルでミリ秒未満の検索パーソナライズの遅延を低減するための、広告モデルの高速数秒程度の増分更新Bigtable オフラインでのパーソナライズのための低コスト、高スループットのデータアクセスだけでなく、オンラインデータ処理向けの一貫した低レイテンシのアクセスもサポートするBigtableの汎用性は、まさに広告ワークロードに最適です。 2022-09-28 09:50:00
GCP Cloud Blog JA Let’s Enhance が NVIDIA AI と GKE を使用して AI ベースの写真編集を強化した仕組み https://cloud.google.com/blog/ja/products/ai-machine-learning/innovative-ai-for-beautifying-images-using-nvidia-gpus-and-gke/ チームワークで夢を現実にLetsEnhanceはGoogleCloudとNVIDIAを使用してリアルタイムの推論のサービングとインフラストラクチャの管理に伴う課題に対処し、AI対応のサービスを安全なGoogleCloudインフラストラクチャの本番環境に大規模に移行することに成功しました。 2022-09-28 09:40:00
GCP Cloud Blog JA Einride がサーバーレスでスケーリングし、貨物業界を再設計した方法 https://cloud.google.com/blog/ja/products/serverless/how-einride-scaled-with-serverless-and-re-architected-the-freight-industry/ それでも、早くからデジタル化を進めてきた産業界からは、リソース管理を抽象化することで、より高い稼働率や効率的なシステムを実現できるなど、多くの教訓を得ることができました。 2022-09-28 09:30:00
GCP Cloud Blog JA Cloud Wisdom Weekly: AI / ML がイノベーションを促進し、費用を削減する 4 つの方法 https://cloud.google.com/blog/ja/topics/startups/4-ways-to-innovate-and-save-with-google-cloud-ai-and-ml/ AIプロダクトページで、Translation、Visionなどの他のAPIについて探るおよび、MLAPI向けGoogleCloudSkillsBoostマネージドサービスを使用して、ML開発をスケールし、モデルの本番環境へのデプロイを加速する事前トレーニング済みのモデルは非常に便利ですが、多くの場合、テクノロジー企業やスタートアップは、独自のデータから分析情報を引き出す、または新しいユースケースを一般公開データに適用するには、カスタムモデルを作成する必要があります。 2022-09-28 09:20:00
GCP Cloud Blog JA Google Cloud でデータベースの暗号化を設計する https://cloud.google.com/blog/ja/topics/inside-google-cloud/architecting-for-database-encryption-on-google-cloud/ GoogleEKMでは、Google外部のサポートされている鍵管理システムで管理されている鍵を使用して、GoogleCloud内のデータを保護できます。 2022-09-28 09:10:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)