投稿時間:2022-08-17 13:24:22 RSSフィード2022-08-17 13:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Googleの「Pixel 7」シリーズがFCCの認証を通過 − UWBは引き続きProモデルのみ https://taisy0.com/2022/08/17/160197.html google 2022-08-17 03:20:51
IT ITmedia 総合記事一覧 [ITmedia Mobile] 「iPhone 14(仮)」はいつ発表される? ラインアップの内訳に変更も? https://www.itmedia.co.jp/mobile/articles/2208/17/news106.html ITmediaMobile「iPhone仮」はいつ発表されるラインアップの内訳に変更も毎年秋にスペシャルを開催し、新型iPhoneなどを発表しているAppleですが、年もその時期が近づいてきました。 2022-08-17 12:37:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] YouTubeで再生された音楽ランキング 3位「INI」、2位「King&Prince」、1位は? https://www.itmedia.co.jp/business/articles/2208/17/news104.html itmedia 2022-08-17 12:35:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] XPPen、13.3型液晶ペンタブ「Artist 13セカンド」を販売開始 https://www.itmedia.co.jp/pcuser/articles/2208/17/news102.html artist 2022-08-17 12:24:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] 「ストリートファイターV」は、今やモバイルPCのCPU内蔵GPUでプレイできるようになってしまった https://www.itmedia.co.jp/pcuser/articles/2208/17/news096.html evojapan 2022-08-17 12:15:00
js JavaScriptタグが付けられた新着投稿 - Qiita 【JavaScript】Cannot read property 'value' of undefined https://qiita.com/mihooo24/items/3a3c85a92d95997de0e7 ertyxvaluexofundefined 2022-08-17 12:53:09
js JavaScriptタグが付けられた新着投稿 - Qiita 【スケジューラ】Qiitaの投稿記事情報を利用したレポーティング https://qiita.com/Miki_Yokohata/items/06becaff259dc6515e23 qiita 2022-08-17 12:34:06
GCP gcpタグが付けられた新着投稿 - Qiita 🔧【Google Spanner】ALTER文の実行できる場所、できない場所 https://qiita.com/eltociear/items/9c67f9df433b7ab84402 tablestmtatlinecolumn 2022-08-17 12:35:06
Azure Azureタグが付けられた新着投稿 - Qiita [Azure Automation] Proxy環境でのHybrid Runbook Worker のセットアップ https://qiita.com/ttuser/items/d91d5f55c19e55e9c450 azureautomation 2022-08-17 12:41:40
技術ブログ Developers.IO TerraformでCodePipeline + CodeCommit作る際にトリガーでちょっとハマった話 https://dev.classmethod.jp/articles/terraform-codepipeline-codecommit-trigger/ codepipeline 2022-08-17 03:11:33
海外TECH DEV Community Advice Generator App using Tailwind CSS and JS https://dev.to/devrohit0/advice-generator-app-using-tailwind-css-and-js-2730 Advice Generator App using Tailwind CSS and JSThis is a Frontend Mentor ChallengeLiveCode ResourcesIn this video we have created a advice generator app with Tailwind CSS and vanilla JS using Advice Slip APII hope you loved this 2022-08-17 03:24:36
海外TECH DEV Community Use AWS App Runner, DynamoDB and CDK to deploy and run a Cloud native Go app https://dev.to/abhirockzz/use-aws-app-runner-dynamodb-and-cdk-to-deploy-and-run-a-cloud-native-go-app-3705 Use AWS App Runner DynamoDB and CDK to deploy and run a Cloud native Go appEarlier I wrote about a Serverless URL shortener application on AWS using DynamoDB AWS Lambda and API Gateway Build a Serverless URL shortener with Go Abhishek Gupta for AWS・Aug ・ min read serverless tutorial go database In this blog post we will deploy that as a REST API on AWS App Runner and continue to use DynamoDB as the database AWS App Runner is a compute service that makes it easy to deploy applications from a container image or source code manage their scalability deployment pipelines and more With the help of a practical example presented in this blog you will Learn about AWS App Runner how to integrate it with DynamoDBRun simple benchmarks to explore the scalability characteristics of your App Runner service as well as DynamoDBApply Infrastructure as Code with AWS CDK Go and deploy the entire stack including the database application and other AWS resources Also see the DynamoDB Go SDK v in action and some of the basic operations such as PutItem GetItem Let s start by deploying the URL shortener applicationBefore you begin make sure you have the Go programming language v or higher and AWS CDK installed Clone the project and change to the right directory git clone cd cdkTo start the deployment Run cdk deploy and provide your confirmation to proceed The subsequent sections will provide a walk through of the CDK code for you to better understand what s going on cdk deployThis will start creating the AWS resources required for our application If you want to see the AWS CloudFormation template which will be used behind the scenes run cdk synth and check the cdk out folderYou can keep track of the progress in the terminal or navigate to AWS console CloudFormation gt Stacks gt DynamoDBAppRunnerStackOnce all the resources are created you should have the DynamoDB table the App Runner Service along with the related IAM roles etc URL shortener service on App RunnerYou should see the landing page of the App Runner service that was just deployed Also look at the Service Settings under Configuration which shows the environment variables configured at runtime by CDK as well as the compute resources VCPU and GB that we specified Our URL shortener is ready The application is relatively simple and exposes two endpoints To create a short link for a URLAccess the original URL via the short linkTo try out the application you need to get the endpoint URL provider by the App Runner service It s available in the stack output in the terminal or the Outputs tab in the AWS CloudFormation console for your Stack First export the App Runner service endpoint as an environment variable export APP URL lt enter App Runner service URL gt exampleexport APP URL Invoke it with a URL that you want to access via a short link curl i X POST d APP URL outputHTTP OKDate Thu Jul GMTContent Length Content Type text plain charset utf ShortCode aeea You should get a JSON response with a short code and see an item in the DynamoDB table as well You can continue to test the application with a few other URLs To access the URL associated with the short code enter the following in your browser http lt enter APP URL gt lt shortcode gt For example when you enter you will be re directed to the original URL You can also use curl Here is an example export APP URL curl i APP URL aeea outputHTTP FoundLocation Date Thu Jul GMTContent Length Auto scaling in actionBoth App Runner and DynamoDB are capable of scaling up and down according to workload AWS App RunnerAWS App Runner automatically scales up the number of instances in response to an increase in traffic and scales them back when the traffic decreases This is based on AutoScalingConfiguration which is driven by the following user defined properties Max concurrency Max size and Min size For details refer to Managing App Runner automatic scalingHere is the auto scale configuration for the URL shortener App Runner Service DynamoDBIn case of On demand mode DynamoDB instantly accommodates your workloads as they ramp up or down to any previously reached traffic level Provisioned mode requires us to specify the number of reads and writes per second that you require for your application but you can use auto scaling to adjust your table s provisioned capacity automatically in response to traffic changes Lets run some testsWe can run a simple benchmarks and witness how our service reacts I will be using a load testing tool called hey but you can also do use Apache Bench etc Here is what we ll do Start off with a simple test and examine the response Ramp up the load such that it breaches the provisioned capacity for the DynamoDB table Update the DynamoDB table capacity and repeat Install hey and execute a basic test requests with workers concurrently as per default settings hey APP URL lt enter the short code gt examplehey This should be well within the capacity of our stack Let s bump it to concurrent workers to execute requests for a sustained period of minutes hey c z m APP URL lt enter the short code gt examplehey c z m How is DynamoDB doing In DynamoDB console under Table capacity metrics check Read usage average units second More importantly check Read throttled events count Since our table was in Provisioned capacity mode with RCU and WCU the requests got throttled and some of them failed Edit the table to change its mode to On demand re run the load test You should not see throttling errors now since DynamoDB will auto scale in response to the load What about App Runner In the Metrics seton in App Runner console check the Active Instances count You can also track the other metrics and experiment with various load capacitiesAlright now that you ve actually seen what the application does and examined the basic scalability characteristics of the stack let s move on to the how But before that Don t forget to delete resourcesOnce you re done to delete all the services simply use cdk destroy AWS CDK code walk through We will go through the keys parts of the NewDynamoDBAppRunnerStack function which defines the entire stack required by the URL shortener application I ve omitted some code for brevity You can refer to the complete code on GitHubWe start by defining a DynamoDB table with shorturl as the Partition key Range Sort key is not required for our case Note that the BillingMode attribute decides the table capacity mode which is Provisioned in this case with RCU and WCU As demonstrated in the previous section this was chosen on purpose func NewDynamoDBAppRunnerStack scope constructs Construct id string props DynamoDBAppRunnerStackProps awscdk Stack dynamoDBTable awsdynamodb NewTable stack jsii String dynamodb short urls table amp awsdynamodb TableProps PartitionKey amp awsdynamodb Attribute Name jsii String shortCodeDynamoDBAttributeName Type awsdynamodb AttributeType STRING BillingMode awsdynamodb BillingMode PROVISIONED ReadCapacity jsii Number WriteCapacity jsii Number RemovalPolicy awscdk RemovalPolicy DESTROY Then we use awsiam NewRole to define a new IAM role and also add a policy that allows App Runner to execute actions in DynamoDB In this case we provide granular permissions GetItem and PutItem apprunnerDynamoDBIAMrole awsiam NewRole stack jsii String role apprunner dynamodb amp awsiam RoleProps AssumedBy awsiam NewServicePrincipal jsii String tasks apprunner amazonaws com nil apprunnerDynamoDBIAMrole AddToPolicy awsiam NewPolicyStatement amp awsiam PolicyStatementProps Effect awsiam Effect ALLOW Actions jsii Strings dynamodb GetItem dynamodb PutItem Resources jsii Strings dynamoDBTable TableArn awsecrassets NewDockerImageAsset allows to create and push our application Docker image to ECR with a single line of code appDockerImage awsecrassets NewDockerImageAsset stack jsii String app image amp awsecrassets DockerImageAssetProps Directory jsii String appDirectory Once all the pieces ready we define the App Runner Service Notice how it references the information required by the application The name of the DynamoDB table defined previously is seeded as TABLE NAME env var required by the application The Docker image that we defined is directly used by the Asset attributeThe IAM role that we defined is attached to the App Runner service as Instance RoleThe instance role is an optional role that App Runner uses to provide permissions to AWS service actions that your service s compute instances need Note that that an alpha version at the time of writing of the L App Runner CDK construct has been used and this is much simple compared to the CloudFormation based L construct It offers a convenient NewService function with which you can define the App Runner Service including the source locally available in this case the IAM roles Instance and Access etc app awscdkapprunneralpha NewService stack jsii String apprunner url shortener amp awscdkapprunneralpha ServiceProps Source awscdkapprunneralpha NewAssetSource amp awscdkapprunneralpha AssetProps ImageConfiguration amp awscdkapprunneralpha ImageConfiguration Environment amp map string string TABLE NAME dynamoDBTable TableName AWS REGION dynamoDBTable Env Region Port jsii Number appPort Asset appDockerImage InstanceRole apprunnerDynamoDBIAMrole Memory awscdkapprunneralpha Memory TWO GB Cpu awscdkapprunneralpha Cpu ONE VCPU app ApplyRemovalPolicy awscdk RemovalPolicy DESTROY Wrap upThis brings us to the end of this blog post You explored a URL shortener application that exposed REST APIs used DynamoDB as its persistent store and deployed it to AWS App Runner Then we looked at how the individual services scaled elastically in response to the workload Finally we also explored the AWS CDK code that made is possible to define the application and its infrastructure as Go code Happy building 2022-08-17 03:06:00
海外科学 NYT > Science New Water Cuts Announced as Colorado River Hits Dangerous Low https://www.nytimes.com/2022/08/16/climate/colorado-river-lake-mead-water-drought.html New Water Cuts Announced as Colorado River Hits Dangerous LowFor now the water use reductions affect only Arizona and Nevada together with Mexico But talks to avoid wider cuts have so far achieved “exactly nothing 2022-08-17 03:28:06
海外科学 NYT > Science Russia Fights Efforts to Declare It an Exporter of ‘Blood Diamonds’ https://www.nytimes.com/2022/08/16/climate/russia-conflict-diamonds-kimberley-process.html Russia Fights Efforts to Declare It an Exporter of Blood Diamonds As a major diamond producer Russia earns billions of dollars that other nations say help finance war The clash exposes the many loopholes in regulation of conflict diamonds 2022-08-17 03:02:01
ニュース @日本経済新聞 電子版 旭化成は2024年度までにデジタル人材を21年度の10倍の2500人に。JFEスチールも約5割増の600人まで増やします。リスキリングを通じた自前の人材育成の動きが広がり始めました。(加藤史子さんらのコメントに反響) ▶ひとこと… https://t.co/aYkbjnLSe2 https://twitter.com/nikkei/statuses/1559738043833241600 2022-08-17 03:05:02
ニュース @日本経済新聞 電子版 韓国の尹大統領「外交対立避け補償」 徴用工問題で https://t.co/S9u31k00sQ https://twitter.com/nikkei/statuses/1559737970290487296 徴用工問題 2022-08-17 03:04:45
ニュース BBC News - Home Infected blood victims to get £100,000 compensation https://www.bbc.co.uk/news/health-62565747?at_medium=RSS&at_campaign=KARANGA interim 2022-08-17 03:21:01
ニュース BBC News - Home Trump arch-enemy Liz Cheney ousted in US primary https://www.bbc.co.uk/news/world-us-canada-62569056?at_medium=RSS&at_campaign=KARANGA trump 2022-08-17 03:29:08
ビジネス ダイヤモンド・オンライン - 新着記事 「反トランプ」のチェイニー氏、共和党予備選で敗北宣言 - WSJ発 https://diamond.jp/articles/-/308178 敗北 2022-08-17 12:06:00
北海道 北海道新聞 W杯南米予選の再試合取りやめ ブラジル―アルゼンチン https://www.hokkaido-np.co.jp/article/718621/ 南米予選 2022-08-17 12:24:20
北海道 北海道新聞 鈴木は4打数1安打1打点 ナショナルズ戦 https://www.hokkaido-np.co.jp/article/718645/ 打点 2022-08-17 12:38:00
北海道 北海道新聞 自民生稲氏が関連施設訪問 旧統一教会、萩生田氏と https://www.hokkaido-np.co.jp/article/718618/ 世界平和 2022-08-17 12:23:37
北海道 北海道新聞 東証、午前終値2万9101円 米景気後退懸念和らぐ https://www.hokkaido-np.co.jp/article/718582/ 日経平均株価 2022-08-17 12:13:56
北海道 北海道新聞 反トランプ急先鋒議員が敗北 チェイニー氏、共和予備選 https://www.hokkaido-np.co.jp/article/718643/ 議員 2022-08-17 12:26:00
北海道 北海道新聞 J1のG大阪が片野坂監督を解任 17位に低迷、後任に松田氏 https://www.hokkaido-np.co.jp/article/718642/ 片野坂知宏 2022-08-17 12:26:00
IT 週刊アスキー ジョイゾー、アルコールチェック管理サービス「ちぇっかる」第1弾としてkintoneで管理する「Jobocoエディション」をリリース https://weekly.ascii.jp/elem/000/004/101/4101909/ joboco 2022-08-17 12:30:00
IT 週刊アスキー 野球・鉄道・キャンプをテーマに大衆芸能を楽しもう! 横浜にぎわい座、趣味をテーマにした演芸会を開催 https://weekly.ascii.jp/elem/000/004/101/4101916/ 大衆芸能 2022-08-17 12:30:00
マーケティング AdverTimes パナソニックハウジングソリューションズ、蒼井優出演のCM第2弾を公開 https://www.advertimes.com/20220817/article393151/ 起用 2022-08-17 03:01:38
海外TECH reddit Anyone else experiencing culture shock in their own country after being in Japan? https://www.reddit.com/r/japanlife/comments/wqe2ck/anyone_else_experiencing_culture_shock_in_their/ 2022-08-17 03:18:33

コメント

このブログの人気の投稿

投稿時間: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件)