投稿時間:2022-10-11 22:37:24 RSSフィード2022-10-11 22:00 分まとめ(40件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ Netflix Builds a Custom High-Throughput Priority Queue Backed by Redis, Kafka and Elasticsearch https://www.infoq.com/news/2022/10/netflix-timestone-priority-queue/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Netflix Builds a Custom High Throughput Priority Queue Backed by Redis Kafka and ElasticsearchNetflix recently published how it built Timestone a custom high throughput low latency priority queueing system Netflix built the queuing system using open source components such as Redis Apache Kafka Apache Flink and Elasticsearch Engineers state that they built Timestone since they could not find an off the shelf solution that met all of its requirements By Eran Stiller 2022-10-11 12:30:00
js JavaScriptタグが付けられた新着投稿 - Qiita paizaラーニング レベルアップ問題集 Aランクレベルアップメニュー JavaScript 素数判定 https://qiita.com/ZampieriIsa/items/73b08f90123b90fe2bfa javascript 2022-10-11 21:56:44
Linux Ubuntuタグが付けられた新着投稿 - Qiita Qiitaアカウント作成してみました https://qiita.com/pichunya/items/3bab17c708787e234766 secondar 2022-10-11 21:37:45
AWS AWSタグが付けられた新着投稿 - Qiita Qiitaアカウント作成してみました https://qiita.com/pichunya/items/3bab17c708787e234766 secondar 2022-10-11 21:37:45
Azure Azureタグが付けられた新着投稿 - Qiita Qiitaアカウント作成してみました https://qiita.com/pichunya/items/3bab17c708787e234766 secondar 2022-10-11 21:37:45
Ruby Railsタグが付けられた新着投稿 - Qiita シンプルな例で体感するHotwire (2)Turbo StreamsでHTMLをCRUDする https://qiita.com/shinsuke-kuroki/items/e47821d62567bac4e640 turbostr 2022-10-11 21:03:34
技術ブログ Developers.IO AWS Control Tower のランディングゾーンセットアップ時に OU名が重複していてエラーになったときのリカバリ方法 https://dev.classmethod.jp/articles/how-to-recover-from-ou-duplication-for-control-tower/ awscontroltower 2022-10-11 12:48:54
海外TECH DEV Community Hacktoberfest: No shame in low-code (or no-code)! https://dev.to/denctl/hacktoberfest-no-shame-in-low-code-or-no-code-3nc1 Hacktoberfest No shame in low code or no code IntroductionHello there my internet friends Long time no see I guess As the post tone suggests I haven t been actively writing blog posts for some long time I hope you are all doing great and smashing them cherry keys But anyway What is this post about It is about writing nocode lowcode Hacktoberfest and a little treat for y all Hacktoberfest Lowcode amp NocodeHacktoberfest Hacktoberfest is an event I genuinely love and consider one of the most important for the folks in tech that actually do it as a hobby I m not going to go over what Hacktoberfest is because I know you all know the drill PRs MRs results in a swag pack What I want to talk about though is the benefits of lowcode nocode contributions Well lowcode and nocode contributions sounds a bit well a bit unprofessional right Nope There is nothing unprofessional in these contributions That is because if done right nocode and lowcode contributions can actually boost a project enormously Just to name a few benefits DocumentationCode ReadabilityLegalmoreYou get the idea If you take a look at a repo that does not have a README it is quite hard to understand what to do right Get the unprofessional stigma out of your head and go do some great lowcode nocode contributions Oh you don t know where to start Worry not for I have you covered in the next section Repo DevOps HandbookRepo link hereDevOps Handbook is a repository that is an open source e book A book written by many authors A book that contains the works of wonderful contributors around the world and specifically crafted to be finished during Hacktoberfest The book is constructed of two part I DevOps TheoryII DevOps PracticeDevOps TheoryIn this section the reader gets to know everything there is to know about DevOps what it is what technologies fall into the domain how to become one etc DevOps PracticeWith the reader already having a good fundament on what they need to know before advancing as a DevOps engineer here follows the practical section Each chapter of this section is a technical blog post on how to do certain DevOps tasks And with this being said you have all the info you need to go and start writing chapters yourself ConclusionThanks for reading this and I hope to have motivated you just enough so that you embrace the spirit of Hacktoberfest in your soul If you want to contact me or simply have a friend who shares his thoughts online from time to time make sure to follow me on twitter Happy Hacking P S Here is the link again so you don t have to scroll up Repo link here 2022-10-11 12:30:54
海外TECH DEV Community Advice for Junior Developers https://dev.to/jeroendedauw/advice-for-junior-developers-30am Advice for Junior DevelopersThe blog post mentions and links to many valuable concepts that you can explore further as you see fit It has three sections Generic Advice ーImportant context and motivation for the technical adviceTechnical Advice ーThe main courseRecommended Reading ーLinks to high quality books and blogs that are great for getting startedGeneric Advice for Juniors Code is not the PointAs developers we like writing code Most of us want to be given a nice unambiguous task A fun technical puzzle to solve without paying attention to the rest of the world Put reasonable effort into making sure that you are solving the right problem To quote Peter Drucker There is nothing so useless as doing efficiently that which should not be done at all Gather feedback early and often typically by continuous delivery to real users Be Agile Software development is expensive with the vast majority of the effort of real world projects typically going into maintenance Combine this with the goal being user business outcomes the best code is often no code To quote Bill Gates Measuring programming progress by lines of code is like measuring aircraft building progress by weight See also YAGNI KISS The Last Responsible Moment Software Design MattersDuring the first years of my development career I thought that software design is for software architects or other people with special roles I was focused on getting things done and saw software design and practices such as writing tests as a distraction at best My code worked and I was getting a lot of things done Or so I thought Then I read Clean Code by Robert C Martin This book motivates caring about software design and contains examples and many technical heuristics The most conceptual takeaway is the saying that the only way to go fast is to go well In other words if you make a mess it will slow you down See also TradableQualityHypothesis DesignStaminaHypothesisLearning how to write well designed clean code of course takes time and effort And when you start you will be slower and make mistakes Simple is not Easy Use the BEST PracticesWriting tests tends to be beneficial There are exceptions but most of the time it makes a lot of sense to write automated tests Writing tests is an example of a best practice If you are new to writing tests just follow the best practice and write tests for everything When starting blindly following the best practice will be better than following your own underdeveloped judgment Over time you will learn how to write tests effectively and be able to tell the difference between you have messed up and situations where writing a test is not worth it You will also start to understand the value tests bring on a more visceral level by having experienced the decrease in debugging sessions and the worry free refactoring enabled by your tests After developing your judgment you will be able to transcend the best practice This advice applies to best practices in any area that you are a junior in Automated tests are just an example One big gotcha is that it is not easy to tell the difference between a sensible best practice and something nonsensical or even counterproductive This is made more complicated by most existing code being a mess and by most developers including experienced and senior ones not knowing software design basics This makes having a good mentor extremely valuable Barring that one piece of advice based on my own experiences is to be wary of best practices specific to the community of your language or framework Look for evergreen advice that has been around for decades Technical Advice for JuniorsOur focus will be on technical topics Many other areas are important such as health happiness career and soft skills Knowing how to avoid a technical pitfall won t help you if you are sleep deprived and working on the wrong problem for a toxic boss that underpays you Write TestsWrite automated tests Perhaps write tests before the code such as via Test Driven Development TDD This makes it easy to verify your code is correct in a repeatable manner thus saving you from much manual retresting and from debugging sessions You think test first is difficult Try debug after Perhaps even more importantly tests give you the safety net to refactor your code And continuous refactoring is needed to keep your code clean Without a reliable test suite it is all the more likely that your code will rot Writing tests is difficult if the design of your code is poor such as when using inheritance for code reuse or when using static functions If on the other hand you have SOLID classes with no global dependencies then writing nice tests is not so difficult Test design matters because poorly written tests will slow you down Avoid binding your tests to implementation details of the code under test or to the structure of the system Avoid overusing Mocks and write better Test Doubles Do Not Use Inheritance For Code ReuseThis is one of those best practices that bring to mind the Use the Best Practices section My advice do not use inheritance for code reuse at all when you are starting out It is rarely the right call and can do a lot of harm Favor composition over inheritance Write Object Oriented codeWrite SOLID code that is not STUPID There is so much value in understanding these principles and anti patterns Actually create objects Classes with only static methods are not OO Try to avoid using static code altogether See also my defense of SOLID Write Functional Code Functional programming is not to be confused with imperative structural programming This point is not about fully switching to a functional language You can benefit from using a functional style in your OO language Minimize state especially mutable state and do one thing in your functions See also functional core imperative shell Use Informed DuplicationCopy pasting big chunks of code to multiple places is almost always unwise Any self respecting developer soon learns this and starts to follow some form of Don t Repeat Yourself DRY Unfortunately the well intended pursuit of DRY often leads to overengineering and accidental complexity This is where the counterpart of DRY comes in Write Everything Twice WET The idea behind WET is to only deduplicate on the third occurrence of duplication For a more in depth look at the costs and benefits of deduplication see The Fallacy of DRY Types Names and CommentsTry to write self documenting code and avoid comments Every time you write a comment you should grimace and feel the failure of your ability of expression Robert C MartinComments are dangerous because they can lie The code can change without the comment being updated New code can be added right under the comment The comment might have been wrong or inaccurate in the first place When this happens the comment not only becomes useless it becomes misleading To write self documenting code Do one thing in your functions By doing a single thing in a function you can give it a clear name Feel the need to explain what different sections of your function do by adding comments Instead extract each section into its own well named function Extract till you drop if you can meaningfully extract a function then you probably should Don t be afraid of small functions Command Query Separation Similar to the Single Responsibility Principle for classes The S in SOLID Minimize state Use types Combined with a test suite that executes the code you can rely on the types telling the truth Avoid mixed types Avoid parameters or return values that can be an integer a boolean or a string This naturally happens if you write focused functions that only do one thing Write tests A well written and comprehensive test suite shows you how the production code can be used and how it behaves Clean Code by Robert C Martin has some good rules of thumb about naming and comments Recommended Reading for JuniorsBooks Clean Code book by Robert C Martin Apprenticeship Patterns Guidance for the Aspiring Software Craftsman book Working Effectively with Legacy Code book by Michael Feathers Refactoring Improving the Design of Existing Code book The Software Craftsman bookBlogs MartinFowler com Tons of high quality articles about all things software development EntropyWins wtf Clearly the best blog on the internet See also Recommended Reading for Developers by Jeff AtwoodBonus links Tell Don t Ask Encapsulation best practice Law of Demeter Coupling best practice Domain Driven Design A sizeable toolbox More advanced good to first learn the basics Object Calisthenics Rules that restrict what you can do in programming Nice for learning how to do things differently Pair Programming A great way to learn from each other Code katas Simple programming great for practicing a specific technique or skill such as Test Driven DevelopmentAbout JeroenJeroen De Dauw is CEO of Professional Wiki which provides wiki hosting services He occasionally writes on his software design blog 2022-10-11 12:11:33
Apple AppleInsider - Frontpage News Get up to 44% off Roborock robot vacuums & mops until October 15 https://appleinsider.com/articles/22/10/11/get-up-to-44-off-roborock-robot-vacuums-mops-until-october-15?utm_medium=rss Get up to off Roborock robot vacuums amp mops until October Get great deals on Roborock s lineup of robot vacuum cleaners and mops during the Amazon Prime Early Access Sale starting from October Roborock vacuums are heavily discounted If you want to cut down the amount of cleaning in your home a cleaning robot could be a great help With Roborock offering great deals on a number of its robot vacuums during the Amazon Prime Early Access Sale now is a great opportunity to get a cleaner to save time and effort simultaneously Read more 2022-10-11 12:42:58
Apple AppleInsider - Frontpage News Apple meets India's Airtel to discuss 5G network support https://appleinsider.com/articles/22/10/11/apple-meets-indias-airtel-to-discuss-5g-network-support?utm_medium=rss Apple meets India x s Airtel to discuss G network supportOwners of G enabled iPhones on Bharti Airtel in India may be able to use the high speed cellular connection before the end of as executives from Apple and the carrier prepare to talk about enabling support Mumbai IndiaCarriers in India started the rollout of G services in the country on October but while you can use G service in eight major cities you can t use them with an iPhone That situation is set to change Read more 2022-10-11 12:34:28
Apple AppleInsider - Frontpage News Teens are still excited about iPhone & Apple Watch, less so about VR https://appleinsider.com/articles/22/10/11/teens-are-still-excited-about-iphone-apple-watch-less-so-about-vr?utm_medium=rss Teens are still excited about iPhone amp Apple Watch less so about VRA survey of American teens makes it clear that the next generation is still super excited about the iPhone and more and more of them are strapping an Apple Watch to their wrist Analyst firm Piper Sandler s biannual survey of teenagers in America shows that iPhone ownership is holding at since its last report Teen iPhone purchase intent also remains at Apple Watch ownership has gone up by since early and is now at The percentage of teenagers surveyed who intend to buy an Apple Watch has risen to Read more 2022-10-11 12:03:45
Apple AppleInsider - Frontpage News Amazon's October Prime Day deals: $269 iPad, $235 AirPods Pro 2, $799 MacBook Air & more https://appleinsider.com/articles/22/10/11/amazons-october-prime-day-deals-269-ipad-235-airpods-pro-2-799-macbook-air-more?utm_medium=rss Amazon x s October Prime Day deals iPad AirPods Pro MacBook Air amp moreAmazon s October Prime Day deals are officially live with bonus savings on Apple electronics home goods software and much more Prime SaleFor Apple fans there are special deals on AirPods Apple Watches and MacBooks from Amazon itself ーas well as fantastic savings from Apple Authorized Resellers Read more 2022-10-11 12:50:32
海外TECH Engadget Instant Pots, air fryers and cookers are up to half off for Amazon's October Prime Day https://www.engadget.com/amazon-prime-early-access-sale-instant-pots-air-fryers-cookers-122822343.html?src=rss Instant Pots air fryers and cookers are up to half off for Amazon x s October Prime DayIf you ve been eyeing those Instant Pots or Instant air fryers that everyone seems to have they re on sale as part of Amazon s Prime Early Access Day with savings up to percent Some of the key products include the Instant Vortex quart air fryer oven combo or percent off the Instant pot Duo Plus or percent off and the Instant Pot Crisp in Air Fryer or percent off nbsp Shop Instant Pot deals at AmazonWhile Instant Pot Vortex is an air fryer it also has one touch controls for baking roasting and reheating It allows supports customized programs for specific types of food so you can cook wings potatoes or even cinnamon buns with a single touch Grab the quart model for just or half off the regular price Instant Pot s quart in Duo Plus model is also on sale if what you need is the brand s classic pressure cooker It has dropped to or off the retail retail price The Duo Plus has nine functions in one device and could act as a rice cooker slow cooker yogurt maker steamer sautépan food warmer sous vide and sterilizer in addition to being a pressure cooker It has customizable programs to make cooking ribs cake soup and other types of food a lot easier as well Other notable items include the Instant Pot Crisp in Air Fryer that offers both Air Fryer and pressure cooker options In addition grab the Instant Vortex Pro Air Fryer that also offers rotisserie and convection oven functions for percent off and the Instant Accu Slim Sous Vide that acts as a precision cooker and immersion circulator at percent off Get the latest Amazon Prime Day offers by following EngadgetDeals on Twitter and subscribing to the Engadget Deals newsletter 2022-10-11 12:28:22
海外TECH Engadget The best October Prime Day deals we could find https://www.engadget.com/best-october-prime-day-2022-deals-110011552.html?src=rss The best October Prime Day deals we could findAmazon is kicking off this year s holiday shopping season with its Prime Early Access Sale This Prime Day quot part two quot of sorts is the second members only sale event of the year that Amazon has had in and Prime subscribers will find thousands of items on sale at record low prices This is your opportunity to not only stock up on household essentials while they re discounted but it s also a chance to pick up some holiday gifts for less If you have tech like headphones earbuds laptops streaming devices gaming accessories or other electronics on your list you ll find a bunch of them on sale during this event We ve collected the best tech deals for October Prime Day here so you don t have to go searching for them Sony WH XMBilly Steele EngadgetSony s WH XM have dropped to We gave the headphones a score of for their great sound supreme comfort and hour battery life Buy WH XM at Amazon AirPods Pro nd gen Apple s second generation AirPods Pro at off and down to for this October Prime Day That s the best price we ve seen since launch and we gave them a score of for their improved sound excellent Transparency Mode and solid ANC Buy AirPods Pro nd gen at Amazon Apple TV KThe latest Apple TV K has dropped to While on the expensive side it s a set top box that Apple lovers will appreciate We gave it a score of for its speedy performance Dolby Vision and Atmos support and much improved Siri remote Buy Apple TV K at Amazon Google Pixel aSam Rutherford EngadgetAmazon knocked of Google s Pixel a for this event bringing it down to a record low of We gave the budget friendly smartphone a score of for its attractive design great cameras and long battery life Buy Pixel a at Amazon iPadThe inch iPad is down to We gave it a score of for its improved performance excellent battery life better front facing camera and increased base storage Buy iPad at Amazon Roomba Valentina Palladino EngadgetThe Roomba is on sale for right now which is close to its record low price It earned a spot in our best budget robot vacuum guide for its strong cleaning power slick design and easy to use mobile app This deal is part of a larger iRobot sale for Prime Day that s worth checking out if you want more robo vac options at solid prices Buy Roomba at Amazon Shop iRobot Prime Day dealsSamsung Galaxy Z Fold Sam Rutherford EngadgetThe Galaxy Z Fold is off and down to We gave the flagship foldable a score of for its brighter main screen sleeker hinge updated cameras and much better battery life Buy Galaxy Z Fold at Amazon Samsung Galaxy Z Flip Cherlynn Low EngadgetSamsung s Galaxy Z Flip is off and down to We gave it a score of for its improved battery life added hands free applications and attractive design Buy Galaxy Z Flip at Amazon Google Pixel Buds ProBilly Steele EngadgetGoogle s Pixel Buds Pro are down to a new record low of right now We consider them to be the company s best earbuds yet giving them a score of for their deep punchy bass solid ANC and reliable touch controls Buy Pixel Buds Pro at Amazon Audio Technica ATH MxBTOur current favorite budget headphones Audio Technica s ATH MxBT are on sale for only right now While they don t have ANC they re quite comfortable plus they have multi device support and a hour battery life Buy ATH MxBT at Amazon Echo Show The Echo Show is on sale for or a whopping percent off its usual price If you want a smart alarm clock this is the smart display to get We like its sharp inch display ambient light sensor smart home controls and tap to snooze feature Buy Echo Show at Amazon Fire TV Stick K MaxThe higher end Fire TV Stick K Max has dropped to which is less than usual and a record low On top of all of the features in the standard Fire TV Stick K the Max version also supports WiFi and live picture in picture viewing Buy Fire TV Stick K Max at Amazon Kindle PaperwhiteThe Kindle Paperwhite is on sale for which is close to its record low price The updated model has front lights a sleeker design an adjustable warm light weeks of battery life and Audible support Buy Kindle Paperwhite at Amazon Beats Fit ProBilly Steele EngadgetThe Beats Fit Pro are percent off and down to for this sale We gave them a score of for their comfortable water resistant design good sound quality and ANC and long battery life Buy Beats Fit Pro at Amazon Bose QuietComfort Billy Steele EngadgetBose s QuietComfort headphones have dropped to or off their normal price We gave them a score of for their clear balanced audio improved ANC and long battery life Buy QuietComfort at Amazon Jabra Elite Jabra s excellent Elite earbuds have dropped to or off their normal rate These already affordable buds earned a score of from us for their impressive sound quality good battery life reliable touch controls and comfortable fit Buy Jabra Elite at Amazon Google Nest ThermostatGoogleThe Google Nest Thermostat is back on sale for right now which is one of the lowest prices we ve seen It s an Energy Star certified device that intelligently monitors the temperature in your home and suggests ways you can save money on energy usage You can also control it from your phone changing your home s environment from anywhere at any time Buy Nest Thermostat at Amazon inch LG A OLEDLG s inch A OLED smart TV is cheaper than ever at for this sale This is one of the company s more affordable OLED sets and it runs on LG s a Gen AI Processor K and supports Dolby Vision HDR Game Optimizer and voice controls with Alexa and the Google Assistant Buy LG A OLED at Amazon August WiFi smart lockAugust s th gen WiFi smart lock is down to for this sale We gave it a score of when it first came out thanks to its minimalist design easy installation and mandatory two factor authentication setup Buy August WiFi smart lock at Amazon Samsung Smart Monitor MSamsungSamsung s inch Smart Monitor M is cheaper than ever at right now It plays double duty as a monitor into which you can plug in your laptop and a smart TV with a built in interface that gives you access to Netflix Amazon Prime Video and other streaming services It also has a built in smart home hub for connecting things like smart lights switches and more Buy Samsung Smart Monitor M at Amazon Original Peloton BikePelotonThe original Peloton Bike is more than off and down to for Prime Day It s a compact exercise bike with a built in screen that lets you take a variety of cycling strength yoga and other classes with Peloton s digital membership Also one of the company s latest gadgets the Peloton Guide is on sale for too Buy Peloton Bike at Amazon Buy Peloton Guide at Amazon Blink MiniYou can get two Blink Mini wired security cameras for only for this October Prime Day This camera needs to be plugged in but we like its compact design p recording motion alerts and two way audio Buy Blink Mini pack at Amazon Get the latest Amazon Prime Day offers by following EngadgetDeals on Twitter and subscribing to the Engadget Deals newsletter 2022-10-11 12:05:14
海外TECH Engadget The best October Prime Day deals on headphones, earbuds and audio gadgets https://www.engadget.com/best-october-prime-day-2022-deals-headphones-earbuds-audio-gadgets-120051843.html?src=rss The best October Prime Day deals on headphones earbuds and audio gadgetsWith the holiday season right around the corner you probably have someone on your gift list who could use a new pair of headphones or earbuds You can pick up their gifts for less right now thanks to Amazon Prime Day Early Access which has discounted a number of our favorite audio gadgets from the likes of Sony Bose Jabra Sennheiser and others In addition to wireless headphones and earbuds there are also speakers soundbars and other music makers on sale for the two day shopping event Here are the best deals on audio devices we could find for the Prime Day Early Access Sale AirPods Pro nd gen Billy Steele EngadgetApple s second generation AirPods Pro at off and down to for this October Prime Day That s the best price we ve seen since launch and we gave them a score of for their improved sound excellent Transparency Mode and solid ANC Buy AirPods Pro nd gen at Amazon Sony WH XMBilly Steele EngadgetSony s WH XM have dropped to We gave the headphones a score of for their great sound supreme comfort and hour battery life Buy WH XM at Amazon Google Pixel Buds ProBilly Steele EngadgetGoogle s Pixel Buds Pro are down to a new record low of right now We consider them to be the company s best earbuds yet giving them a score of for their deep punchy bass solid ANC and reliable touch controls Buy Pixel Buds Pro at Amazon Audio Technica ATH MxBTAudio TechnicaOur current favorite budget headphones Audio Technica s ATH MBT are on sale for only right now While they don t have ANC they re quite comfortable plus they have multi device support and a hour battery life Buy ATH MxBT at Amazon Bose QuietComfort Bose s QuietComfort headphones have dropped to or percent off their normal price We gave them a score of for their clear balanced audio improved ANC and long battery life Buy QuietComfort at Amazon Beats Fit ProThe Beats Fit Pro are percent off and down to We gave them a score of for their comfortable water resistant design good sound quality and ANC and long battery life Buy Beats Fit Pro at Amazon Beats Studio BudsThe Beats Studio Buds are on sale for right now or off their usual rate We gave them a score of for their balanced sound hands free Siri controls and quick pairing with both iOS and Android Buy Beats Studio Buds at Amazon AirPods nd gen The original AirPods are down to While they re a bit outdated at this point these are still decent earbuds that we liked for their improved wireless performance and good battery life Buy AirPods nd gen at Amazon Bose The sleek Bose headphones are on sale for right now We gave these cans a score of for their remarkable noise cancellation improved more comfortable design and easy to use touch controls Buy Bose at Amazon Sony LinkBudsBilly Steele EngadgetSony s LinkBuds and Linkbuds S are down to right now We gave the LinkBuds a score of for their unique design reliable controls and automatic speak to pause feature Buy LinkBuds at Amazon Buy LinkBuds S at Amazon Samsung Galaxy Buds ProBilly Steele EngadgetSamsung s original Galaxy Buds Pro are on sale for They earned a score of from us for their comfortable fit wireless charging and good sound quality Buy Galaxy Buds Pro at Amazon Jabra Elite Jabra s excellent Elite earbuds have dropped to or off their normal rate These already affordable buds earned a score of from us for their impressive sound quality good battery life reliable touch controls and comfortable fit Buy Jabra Elite at Amazon Sony WF XMSony s WF XM earbuds are down to right now We gave them a score of for their excellent sound quality good ANC wireless charging capabilities and improved battery life Buy WF XM at Amazon Google Pixel Buds A SeriesBilly Steele EngadgetGoogle s Pixel Buds A Series are on sale for or percent less than usual In addition to their solid sound quality these buds earned a score of from us for their small comfortable design and deep Google Assistant integration Buy Pixel Buds A Series at Amazon Samsung Galaxy Buds Billy Steele EngadgetSamsung s Galaxy Buds have dropped to These much improved earbuds impressed us with their better audio quality adjustable ambient sound mode and tiny comfortable design Buy Galaxy Buds at Amazon Sennheiser Momentum True Wireless Sennheiser s Momentum True Wireless earbuds are on sale for and if you clip the on page coupon you can get an additional off bringing them down to These buds impressed us with their remarkable audio quality and we gave them a score of in part for that as well as their solid ANC and comprehensive companion app Buy Momentum True Wireless at Amazon Jabra Elite tJabra s Elite t earbuds are on sale for or a whopping percent off their normal price We like these true wireless earbuds for their strong ANC comfortable size and wireless charging case Buy Jabra Elite t at Amazon EchoAmazon s Echo smart speaker is on sale for or off its usual price We gave it a score of for its solid audio quality attractive design and its inclusion of a mm audio jack Buy Echo at Amazon JBL Charge Jon Turi EngadgetJBL s Charge is on sale for which is only more than its record low price It earned a spot on our list of favorite portable Bluetooth speakers thanks to its big sound long battery life and USB C port for charging your other devices Buy Charge at Amazon Sony SRS XBSony s compact SRS XB Bluetooth speaker is down to just which is percent off its regular price Not only does it come in a bunch of fun colors but this tiny speaker also has a waterproof IP rated design punchy bass and a hour battery life Buy Sony SRS XM at Amazon Get the latest Amazon Prime Day offers by following EngadgetDeals on Twitter and subscribing to the Engadget Deals newsletter 2022-10-11 12:00:51
Cisco Cisco Blog Afriagrimark: How small-scale farmers in Africa get goods to market through a unique platform https://blogs.cisco.com/csr/afriagrimark-how-small-scale-farmers-in-africa-get-goods-to-market-through-a-unique-platform people 2022-10-11 13:00:00
Cisco Cisco Blog Half a Life Well Lived at Cisco: 22 Years and Counting https://blogs.cisco.com/wearecisco/half-a-life-well-lived-at-cisco-22-years-and-counting place 2022-10-11 12:00:52
金融 RSS FILE - 日本証券業協会 新規公開に際して行う株券の個人顧客への配分状況 https://www.jsda.or.jp/shiryoshitsu/toukei/shinkikoukai/index.html 新規公開 2022-10-11 13:00:00
ニュース BBC News - Home Bank of England in fresh emergency move to calm markets https://www.bbc.co.uk/news/business-63211743?at_medium=RSS&at_campaign=KARANGA bonds 2022-10-11 12:43:32
ニュース BBC News - Home Lucy Letby trial: Alleged killer nurse interrupted by mum, trial told https://www.bbc.co.uk/news/uk-england-merseyside-63214073?at_medium=RSS&at_campaign=KARANGA hears 2022-10-11 12:40:32
ニュース BBC News - Home Call for urgent victim rights review after sexsomnia rape case https://www.bbc.co.uk/news/uk-63175418?at_medium=RSS&at_campaign=KARANGA cases 2022-10-11 12:11:50
ニュース BBC News - Home Jamie Oliver: Give more children free school meals https://www.bbc.co.uk/news/education-63214021?at_medium=RSS&at_campaign=KARANGA children 2022-10-11 12:30:50
北海道 北海道新聞 塩野義ワクチン申請年内に 9月末からずれ込み https://www.hokkaido-np.co.jp/article/743823/ 塩野義製薬 2022-10-11 21:25:00
北海道 北海道新聞 70年代に本紙「職員室から」執筆 松川さんコラム一冊に 小樽市教委に寄贈 遺族作成 https://www.hokkaido-np.co.jp/article/743814/ 小樽市内 2022-10-11 21:19:00
北海道 北海道新聞 NZ、牛のげっぷに課税へ 25年、農業団体は猛反発 https://www.hokkaido-np.co.jp/article/743760/ 首相 2022-10-11 21:20:22
北海道 北海道新聞 上川管内101人感染 新型コロナ https://www.hokkaido-np.co.jp/article/743589/ 上川管内 2022-10-11 21:19:02
北海道 北海道新聞 南幌の小型機墜落、事故調査官派遣へ 運輸安全委 https://www.hokkaido-np.co.jp/article/743785/ 空知管内 2022-10-11 21:18:31
北海道 北海道新聞 「二刀流への強い希望、魅力高まった」 日本ハム、日体大・矢沢を1位指名へ https://www.hokkaido-np.co.jp/article/743790/ 日本ハム 2022-10-11 21:16:24
北海道 北海道新聞 三谷幸喜さんらに菊池寛賞 信濃毎日新聞の取材班も https://www.hokkaido-np.co.jp/article/743779/ 菊池寛賞 2022-10-11 21:01:15
北海道 北海道新聞 TERUの絵が間近に カフェ美鈴函館空港店に展示 https://www.hokkaido-np.co.jp/article/743803/ 函館空港 2022-10-11 21:10:00
ニュース Newsweek プーチンが密かに準備を進める「水中からの核攻撃」 https://www.newsweekjapan.jp/stories/world/2022/10/post-99823.php 「同潜水艦は、さまざまな科学的な問題を解決し、捜索・救助活動を展開するように設計されており、深海用の救助船や自律型無人機も搭載可能だ」発射実験はプーチンの「決意表明」専門家はポセイドンについて、年にロシア海軍に配備される予定だとしているが、米国防総省情報局の元当局者であるレベッカ・コフラーは本誌への寄稿の中で、その発射実験から、ロシア政府の心理状態が読み取れると述べた。 2022-10-11 22:01:12
ニュース Newsweek NFL観戦のキム・カーダシアン、スクリーンに映っただけで大ブーイング https://www.newsweekjapan.jp/stories/culture/2022/10/nfl-5.php 「キム・カーダシアンはラムズの試合で大画面に映し出され、大ブーイングを浴びた。 2022-10-11 21:20:00
GCP Cloud Blog Introducing Software Delivery Shield for end-to-end software supply chain security https://cloud.google.com/blog/products/devops-sre/introducing-software-delivery-shield-from-google-cloud/ Introducing Software Delivery Shield for end to end software supply chain securityOrganizations and their software delivery pipelines are continually exposed to growing cyberattack vectors Coupled with the massive adoption of open source software which now helps power nearly all of our public infrastructure and is highly prevalent in most proprietary software businesses around the world are more vulnerable than ever Today s organizations need to be more vigilant in protecting their software development infrastructure and processes Development and IT teams are all asking for a better way to secure the software supply chain across the code people systems and processes that contribute to development and delivery of the software For many years Google has been working with the developer community the public sector and our partners to establish industry wide standards and frameworks like Supply Chain Levels for Software Artifacts SLSA for enhancing software supply chain security And just last year as part of Google s billioncommitment to advancing cybersecurity we pledged to protect key open source components that are crucial to the health of our public infrastructure and companies around the world  Answering the software supply chain security call To further help our customers improve their software supply chain security we re now excited to announce Software Delivery Shield This is a fully managed software supply chain security solution that offers a modular set of capabilities to help equip developers DevOps and security teams with the tools they need to build secure cloud applications Software Delivery Shield spans across a family of Google Cloud services from developer tooling to runtimes like GKE Cloud Code Cloud Build Cloud Deploy Artifact Registry Binary Authorization and more Software Delivery Shield includes capabilities across five different areas to address security concerns along the software supply chain application development software “supply continuous integration CI and continuous delivery CD production environments and policies It also allows for an incremental adoption path so organizations can tailor the solution to their specific needs choosing the preferred tools to start with based on their existing environment and security priorities Develop fast securelyTo help protect software from the beginning ーat the development stage ーwe re excited to introduce a new service in Preview at Google Cloud Next Cloud Workstations which provides fully managed development environments on Google Cloud With Cloud Workstations developers can access secure fast and customizable development environments via a browser anytime and anywhere with consistent configurations and customizable tooling At the same time IT and security administrators can easily provision scale manage and secure the development environments on Google Cloud s infrastructure A critical part of Software Delivery Shield Cloud Workstations plays a key role in “shifting security to the left by enhancing the security posture of the application development environment With built in security measures such as VPC Service Controls no local storage of source code private ingress egress forced image updates and IAM access policies Cloud Workstations helps address common local development security pain points like code exfiltration privacy risks and inconsistent configurations  In addition to helping secure dev environments with Cloud Workstations we re also giving developers tools to code fast and more securely from their laptops Cloud Code our family of IDE plugins now features Source Protect in Preview Source Protect gives developers real time security feedback as they work in their IDEs identifying issues such as vulnerable dependencies and license reporting This kind of quick and actionable feedback can allow developers to promptly make corrections to their code saving time from costly future fixes Safeguard the software supply Securing the software supply ーbuild artifacts and application dependencies ーis another critical step in improving software supply chain security The pervasive use of open source software makes this problem particularly challenging  While working together with the broader community on establishing guidelines and frameworks to increase open source security as a whole we are also bringing more services to help address this challenge directly In May we introduced Assured Open Source Software service currently in Preview Assured OSS is Google s first “curated open source where we are adding a layer of accountability on top of today s free or “as is open source A key part of the Software Delivery Shield solution Assured OSS provides access to open source software packages that have been curated and vetted by Google These packages are built in our secured pipelines and are regularly scanned analyzed and fuzz tested for vulnerabilities With Assured OSS the security team can be much more confident knowing their developers are using vetted open source dependencies This service now provides over curated packages across Java and Python with verified provenance It automatically generates Software Bill of Materials SBOM  an inventory of all components and dependencies involved in the application development and delivery identifying where there could be a potential risk With Software Delivery Shield DevOps teams can store manage and secure the build artifacts in Artifact Registry and also proactively detect vulnerabilities with the integrated scanning provided by Container Analysis to which we ve added support for more language packs In addition to scanning the base images it can now do on push vulnerability scanning of Maven and Go containers as well as for non containerized Maven packages currently in Preview  Lock down the CI CD pipelineBad actors can attack software supply chains by compromising CI CD pipelines That s why we re always working to strengthen the security posture of our CI and CD platforms Cloud Build our fully managed CI platform and Cloud Deploy our fully managed CD platform As key parts of the Software Delivery Shield solution both platforms come with built in security features such as granular IAM controls VPC Service Controls isolated and ephemeral environments and approval gates to help DevOps teams better govern the build and deployment process  Cloud Build now officially supports SLSA Level builds implementing SLSA level best practices by default In addition to providing ephemeral and isolated build environments Cloud Build can now generate authenticated and non falsifiable build provenance for both containerized applications and non containerized Maven and Python packages as well as display security insights for built applications  Help protect applications in productionStrengthening the security posture of the runtime environments is another critical part of securing the software supply chain Google Kubernetes Engine GKE and Cloud Run our leading runtime platforms for containerized applications both come with baked in security features to help protect applications while they are running  We re excited to announce new built in security posture management capabilities for GKE currently in Preview to help identify and fix security concerns in GKE clusters and workloads Based on industry standards and the GKE team s security expertise GKE now provides detailed assessments assigns severity ratings and advises on the security posture of the clusters and workloads including insights into OS vulnerabilities and workload configurations The GKE dashboard now clearly points out which workloads are affected by a security concern and then provides actionable guidance to address it Beyond the dashboard GKE can also log security posture concerns to Cloud Logging while security event information can be routed to services like the ticketing systems or a security information and event management SIEM system through Pub Sub eventing For customers of our Cloud Run serverless platform we are introducing new enhancements to Cloud Run s security panel It now displays software supply chain security insights such as SLSA build level compliance info build provenance and vulnerabilities found in running services currently in Preview  Build a chain of trust through policy  Beyond enhancing the security posture at each stage of the software delivery lifecycle Software Delivery Shield features a trust based policy engine to help establish maintain and verify a chain of trust across the entire supply chain  Binary Authorization is a deploy time security control that can ensure only trusted container images are deployed on GKE or Cloud Run With Binary Authorization DevOps or security teams can require images to be signed by trusted authorities during the development process and then enforce signature validation when deploying By enforcing validation they can gain tighter control over the container environment by ensuring only verified images are integrated into the build and release process Get started todaySoftware supply chain security is a complicated challenge Software Delivery Shield offers an end to end solution to help protect the integrity of software from attacks that can take many shapes and forms along the software supply chain With this collection of tools across many of our cloud services organizations can get started today and incrementally adopt better security measures big or small based on existing environment and security priorities towards holistic software supply chain security Different services of Software Delivery Shield work together to help protect your software supply chain from development to production To learn more about Software Delivery Shield check out the solution page andfollow the doc links there to get started right away and activate any of the relevant products and capabilities within the toolset Watch this Next session to get a quick overview of Software Delivery Shield  To try out capabilities that are currently in Private Preview please fill out this form  If you are interested in learning more about software supply chain security in general please contact us or reach out to your sales representative to schedule a software supply chain security workshop Related ArticleHow SLSA and SBOM can help healthcare s cybersecurity resiliencyThere s more to securing healthcare technology than just data privacy Here s why resilient healthcare security needs SBOM and SLSA Read Article 2022-10-11 12:07:00
GCP Cloud Blog Developers - Build, learn, and grow your career faster with Google Cloud https://cloud.google.com/blog/topics/training-certifications/discover-the-google-cloud-skills-boost-annual-subscription-benefits/ Developers Build learn and grow your career faster with Google CloudTo help developers build faster learn faster and grow their career faster with Google Cloud we are excited to announce three developer initiatives today a new Google Cloud Skills Boost annual subscription with expanded developer benefits no cost GoogleClout challenges and the Google Cloud Fly Cup Challenge happening during Google Cloud Next in partnership with the Drone Racing League DRL  Training made easy wherever you areA recent survey noted that the number of individuals learning to code online increased from in to in Last year we were the first cloud provider to launch a learning subscription to help address the developer skills shortage We committed to equipping million people with cloud skills with Google Cloud Skills Boost which provides learners with online courses skills development and certifications Google Cloud Skills Boost is available for learners globally and offers training resources in languages including Arabic Bahasa Brazilian Portuguese Chinese English French German Hebrew Italian Japanese Korean Polish Spanish Turkish and Ukrainian With Google Cloud Skills Boost our goal is to make it easier to get started and grow their cloud skills Introducing the new Google Cloud Skills Boost annual subscriptionTo build on this work today we re enhancing the Google Cloud Skills Boost annual subscription by introducing Innovators Plus a new suite of developer benefits available under the existing year subscription  Built for developers who are looking to accelerate their professional skills and business growth this package provides extensive training and certification benefits including live learning events Google Cloud credits and certification exam vouchers Other leading cloud providers limit offers to learning content and labs or have no developer targeted offering at all Through this new Google Cloud Skills Boost annual subscription developers get the added access rewards and recognition they ve been asking for as they level up their cloud skills  The expanded Google Cloud Skills Boost annual subscription with Innovators Plus offers a comprehensive range of benefits including Access to hands on labs skill badges and courses Google Cloud creditsA Google Cloud certification exam voucherBonus Google Cloud credits after the first certification earned each yearLive learning events led by Google Cloud expertsQuarterly technical briefings hosted by Google Cloud executivesNew Google Cloud learning challenges to build skills In addition to the Google Cloud Skills Boost annual subscription we ve introduced other new learning challenges to make learning about Google Cloud technologies fun and rewarding  Take your cloud skills to new heights with the Google Cloud Fly Cup ChallengeWe recently announced the Google Cloud Fly Cup Challenge created in partnership with The Drone Racing League DRL to celebrate the new era of tech driven sports Using DRL race data and Google Cloud analytics tools like BigQuery and Cloud SQL developers of any skill level will be able to predict race outcomes and provide tips to DRL pilots to help enhance their season performance Participants will compete for a chance to win an all expenses paid trip to the season finale of the DRL World Championship Race and be crowned the champion on stage Register here to join the race to become the DRL champion today Flex your GoogleClout and win the hottest book in cloudJust in time for Next developers can demonstrate their cloud knowledge against participants worldwide in new GoogleClout challenges ーno cost minute micro competitions Here s how it works Work on the six new challenges in the GoogleClout game by October Optional Share your scores on social media using the GoogleClout hashtagIf you complete all six challenges you ll receive a special badge on your Developer Profile plus an electronic copy of Priyanka Vergadia s bestselling book “Visualizing Google Cloud Grow your career faster with Google CloudThe demand for qualified experts is huge But what exactly does that mean for you In Skillsoft s list of the top highest paying IT certifications Google Cloud certifications rank among the top for the th year in a row By building your technical expertise on Google Cloud you can grow your skills and your career faster Ready to get started Visit Google Cloud Skills Boost to start your annual subscription and unlock Innovators Plus benefits Register for Next and discover more about the Google Cloud Fly Cup and GoogleClout challenges in the Developer Zone Subject to eligibility limitations Innovators Plus requires you to use a Google Account and a Developer Profile For customers in the EEA the UK and Switzerland Innovators Plus is restricted to business or professional use Related ArticleRead Article 2022-10-11 12:06:00
GCP Cloud Blog Introducing the next evolution of Looker, your unified business intelligence platform https://cloud.google.com/blog/products/data-analytics/looker-next-evolution-business-intelligence-data-studio/ Introducing the next evolution of Looker your unified business intelligence platformAs consumers we all benefit from unprecedented access to data in everything we do from finding answers on the web to navigating a new city to picking the best place to eat dinner But at work it s not that easy Instead of having answers to questions at our fingertips getting those answers is a costly IT project awayーand when we get the answers they only raise new questions that you then need to get back into the IT queue to answer  Just as Google s mission is to organize the world s information and make it universally accessible and useful Looker aims to do the same for your business data making it easy for users to get insights and for you to build insight powered applications That vision is our north star for business intelligence at Google Cloud which is why we acquired Looker in and why we have big plans for the next few years  Today we are unifying our business intelligence product family under the Looker umbrella Looker is the name you ll hear us use when talking about our Google Cloud business intelligence products as we bring together Looker Data Studio and core Google technologies like artificial intelligence AI and machine learning ML And starting today Data Studio is now Looker Studio With this complete enterprise business intelligence suite we will help you go beyond dashboards and infuse your workflows and applications with the intelligence needed to help make data driven decisions Expanding the power and reach of LookerLooker Studio helps make it easy for everyone to do self service analytics It currently supports more than data sources with a catalog surpassing connectors making it simple to explore data from different sources with just a few clicks and without ever needing IT In addition to the functionality customers already know and love Looker Studio plans to evolve to include a complete user interface for working with data modeled in Looker  As a first step on this journey we are happy to announce that access to Looker data models from Looker Studio is available in preview today This capability allows customers to explore trusted data via the Looker modeling layer For the first time customers can easily combine both self service analytics from ad hoc data sources and trusted data that has already been vetted and modeled in Looker We love what our users have accomplished with Looker Studio from tracking NBA MVP Award votes and the location of the International Space Station to breaking down the pumpkin spice economy and the video gaming industry To support these vast and diverse use cases we will continue to make Looker Studio available at no cost At the same time many of our customers require enterprise focused features to use Looker Studio as part of their data stack while also addressing their governance and compliance requirements To meet this customer demand we are pleased to announce the availability of Looker Studio Pro  Customers who upgrade to Looker Studio Pro will get new enterprise management features team collaboration capabilities and SLAs This is only the first release and we ve developed a roadmap of capabilities starting with Dataplex integration for data lineage and metadata visibility that our enterprise customers have been asking for  When Looker joined Google Cloud one of the primary goals was to bring business intelligence closer to core Google Cloud technologies As a major step on that journey we are pleased to announce Looker Google Cloud core in preview today This new version of Looker will be available in the Google Cloud Console and is deeply integrated with core cloud infrastructure services such as key security and management services  Open data means open business intelligence tooInsights everywhere doesn t just mean everywhere in Looker Our customers want an open data cloud that breaks down silos whether that s analytics business intelligence or machine learning Just as we ve already done with our BigQuery data warehouse we are committed to integrating Looker with as many Google and partner products as our customers need  For example we are deeply integrating Looker and Google Workspace so insights are available in the familiar productivity tools you use every day This will provide easy access via spreadsheets and other documents to consistent trusted answers from curated data sources across your organization Looker integration with Google Sheets is in preview now with plans for full release in the first half of  To continue to meet our customers where they are in their open data cloud journey we are working to connect other popular business intelligence offerings as well That connection can allow visualization tools including Tableau and Power BI to easily analyze trusted data from Looker Additionally Looker continues to be an open platform and we are expanding our partnerships from the modeling layer right into the user experience To demonstrate that we are also pleased to announce a new partnership with Sisu Data Often your data will tell you when something unusual has happened but finding out why can take hours or days even for skilled data scientists Our partnership with Sisu Data will help automate finding root causes faster than traditional approaches This deep integration will enable a smooth experience for more customers Real data real intelligence real impactOur customers use Looker for both internal business intelligence and to create embedded data products Mercado Libre a retailer in Latin America with a geographically diverse workforce uses Looker and BigQuery to enable accelerated fulfillment In the first half of alone they were able to deliver of shipments in less than hours  Another customer Wpromote is one of Adweek s fastest growing digital marketing agencies They rebuilt the infrastructure they use to run every aspect of their business using Looker and BigQuery “We wanted to build a system with no ceiling where the only limitation would be our vision and our ability to execute Wpromote Chief Technology Officer Paul Dumais said “Everything that you can do from the Looker UI can be done via API So much of our everyday lives revolve around data and that s especially true when it comes to the way we work Data provides us with a wealth of knowledge but without the right tools sometimes it can be overwhelming expensive and can take far too long The new unified Looker product family helps you make the most of your data delivering a better experience for your teams and ultimately a better experience for your customers ーtoday and long into the future To learn more about our other advances and announcements in the data cloud announcements you can read more here on the Google Cloud Blog Related ArticleRead Article 2022-10-11 12:05:00
GCP Cloud Blog Advancing digital sovereignty on Europe's terms https://cloud.google.com/blog/products/identity-security/advancing-digital-sovereignty-on-europes-terms/ Advancing digital sovereignty on Europe x s termsIn September we unveiled “Cloud On Europe s Terms an ambitious commitment to deliver cloud services that provide the highest levels of digital sovereignty while enabling the next wave of growth and transformation for European organizations We ve since seen increasing demand from customers and policymakers for digital sovereignty solutions  Working closely with our European customers partners policy makers and governments today at Google Cloud Next we re pleased to share that we ve delivered and are continuing to develop a broad portfolio of Sovereign Solutions that can support European customers current and emerging sovereignty needs as they progress their digital transformation  Google Cloud Sovereign Solutions come from these efforts to understand evolving sovereignty requirements We ve heard from numerous customers that they would prefer to work with local partners in their transformation journey and that s why we have established partnerships including T Systems in Germany SNS in France Minsait in Spain and Telecom Italia in Italy  Sovereign Controls by T Systems is now generally available and Local Controls by SNS the Thales Google partnership is now available in Preview You can expect more region and market announcements in the coming months  Google Cloud Sovereign SolutionsOur Sovereign Solutions are designed to support data operational and software sovereignty requirements increasing customer control and transparency for sensitive data moving to the cloud For example Sovereign Solutions can help support compliance with European regulations such as GDPR and legal rulings such as Schrems II Google Cloud Sovereign Solutions comprise Sovereign Controls which can help organizations more easily manage vital data sovereignty goals as well as Supervised Cloud and Hosted Cloud options to help address operational and software sovereignty concerns The range of Google Cloud Sovereign SolutionsThe market is already making valuable use of our offerings In September employee communication platform Haiilo said it would rely on the Sovereign Cloud from T Systems and Google in the future Oliver Queck vice president at T Systems International said that Sovereign Solutions can help drive digital transformation “T Systems and Google Cloud are building and delivering sovereign cloud services for European enterprises from the public and business sectors Our common goal support all organizations in migrating their workloads to the cloud through more innovation flexibility performance and data security Let s look at each of the product offerings  Sovereign ControlsSovereign Controls for Google CloudToday customers can meet many data sovereignty requirements using Google Cloud controls delivered directly by Google Cloud through Assured Workloads for EU or through our local partners These Sovereign Controls can help organizations Create and maintain workloads with data residency controls in Europe for core customer content at rest with processes that help limit personnel access to core customer content to EU persons located in the EU Maintain comprehensive visibility and control over administrative access to the data and workloads Encrypt data with keys that they or someone appointed by them control and manage outside of Google s infrastructure through our Cloud External Key Manager At Google Cloud we firmly believe that the control of encryption keys is the strongest and most effective technical measure against extraterritorial requests for data that can be offered to cloud customers today To achieve sufficient control keys must be kept outside of the cloud provider infrastructure and coupled to a strong key access justification mechanism  Queck added that Sovereign Controls can help balance data management and control requirements with the drive to innovate “With Sovereign Controls by T Systems we have developed a cloud solution that allows you to securely host your sensitive data and implement supplementary data protection measures that can help meet the requirements of European data protection authorities without losing on scalability or elasticity In other words you retain full control over your data software and operations and still benefit from all the advantages of the Google Cloud especially the innovation power he said Sovereign Controls for Google WorkspaceCustomers sovereignty requirements also extend to the digital tools they use to collaborate and communicate We recently announced Sovereign Controls for Google Workspace which will provide digital sovereignty capabilities for organizations to control limit and monitor transfers of data to and from the EU starting at the end of with additional capabilities delivered throughout This commitment builds on existing Client side encryption  Data regions and Access Controls capabilities in Workspace Supervised CloudOur forthcoming Supervised Cloud offerings will be managed and operated by partners to support data sovereignty and operational sovereignty needs for specialized and highly sensitive data We are in the process of designing and building these offerings aligned with local regulations in France as well as strong customer needs in Germany with our respective partners SNS and T Systems  Cyprien Falque managing director of SNS a Thales and Google Cloud partnership spoke about plans for their forthcoming solution and ways for customers to begin their journey to the cloud now  “SNS mission is to help public and private organizations in France benefit from the power of Google Cloud while protecting their sensitive data in compliance with the criteria of the French Trusted Cloud Our Local Controls offering is a first step and a first milestone this year before a future solution in compliance with the French Trusted Cloud criteria which we are working on in parallel Our objective is to be among the first to make such an offering available for certification based on hyperscale cloud technology Falque said Hosted CloudFinally there are some customers and workloads that have a strict need to support disconnected operations To help meet these software sovereignty requirements we will offer Hosted Cloud services which are part of Google Cloud s Distributed Cloud offerings Google Distributed Cloud Hosted does not require connectivity to Google Cloud at any time to manage infrastructure services APIs or tooling LuxConnect is a Luxembourg based IT provider whose mission is to strengthen the country s IT infrastructure and to increase international Internet connectivity in order to drive progress and innovation LuxConnect CEO Paul Konsbruck said that he is looking forward to the availability of Sovereign Cloud solutions that can complement existing IT services including Hosted Cloud “Digital sovereignty is becoming more and more important to us and to our customers across Europe as we work to support their digital transformation initiatives The ability to keep data within strict boundaries and maintain local operations further enable efforts in Luxembourg to serve for example as “data embassies protecting vital data and services that are essential to the smooth running of a country on their behalf thereby reducing the potential impact of cyberattacks he said “We are closely following the efforts of Google Cloud to develop and offer Hosted Cloud solutions that can complement our data center connectivity and HPC offerings Expanding the Sovereign Solutions ISV ecosystemIt s also clear from our discussions with Cloud customers and partners that the ability to meet sovereignty requirements must include support for the applications they use to power their businesses and drive innovation To this end today we are thrilled to announce that more than Independent Software Vendors ISVs from Europe and around the world have joined the new Google Cloud Ready Sovereign Solutions program with the intent of bringing their products to Google Cloud Sovereign Solution environments These partners include Aiven Broadcom Symantec Cloud Software Group Citrix Climate Engine Commvault Confluent Datadog DataIKU Dell Technologies Elastic Fortinet Gitlab Iron Mountain LumApps MongoDB NetApp OpenText Palo Alto Networks Pega Systems Siemens SUSE Thales Thought Machine Veeam and VMware  Learn moreWe ll continue to listen to our customers and key stakeholders across Europe who are setting policy and helping shape requirements for customer control of data Our goal is to make Google Cloud the best possible place for sustainable digital transformation for European organizations on their terms ーbut also for others around the world and there is much more to come Related ArticleStrengthening our European data sovereignty offerings with Assured Workloads for EUAssured Workloads for EU on Google Cloud is now generally available to help address customer requirements for data residency and data sov Read Article 2022-10-11 12:04:00
GCP Cloud Blog Building the most open and extensible platform for hybrid work https://cloud.google.com/blog/products/workspace/how-google-workspace-is-building-the-open-hybrid-work-platform/ Building the most open and extensible platform for hybrid workFlexible ways of working have become second nature for people everywhere especially for the more than million customers that use Google Workspace in their offices homes or on mobile devices However the rise of hybrid work has also demonstrated the importance of choice People don t want to be locked into a single app or in a closed environment They want to use productivity tools like email video conferencing and chat in a seamless way with other critical apps that perform functions like helping to stay in touch with customers visualizing data managing projects building creative designs and much more Enabling all of those products to work well together ーwithout boundaries or walled gardens ーis essential to helping teams and organizations maximize hybrid work This week at Google Cloud Next we re taking significant steps towards making Google Workspace the most open and extensible productivity platform for users worldwide Today we re launching third party smart chips in Docs along with new integrations and enhanced API capabilities for Meet Chat and Spaces delivering entirely new ways to use third party applications within or alongside Google Workspace allowing organizations to get more value from the solutions they ve already invested in The new integrations are with some of the most popular enterprise applications in use today ーAO Docs Asana Atlassian Figma LumApps Miro Tableau and Zendesk ーand will help transform the way people work every day Together with our partners we re enabling an open ecosystem for hybrid work and ensuring that Google Workspace s most helpful features don t stay proprietary  Bringing smart chips to popular third party applicationsWhen we launched smart canvas we gave Google Workspace users the ability to bring the people and information they needed into Docs through simple mentions creating interactive mentions of people files meetings templates and more Today we re expanding smart chips to our ecosystem of partners allowing our users to add even more rich data more context and critical information right into the flow of their work With these new third party smart chips you will be able to tag and see critical information from partner applications using mentions and easily insert interactive information and previews from third party apps directly into a Google Doc Bring your favorite third party data into Docs with smart chipsSeveral of our partners including AO Docs Atlassian Asana Figma Miro Tableau and ZenDesk are now developing third party smart chips to add more value to your Google Docs experience AODocs a fast growing content services platform is creating a smart chip that will allow you to link to and interact with controlled documents using AODocs content management capabilities within Google Docs Asana the leading work management platform is creating smart chips that will enable you to see and manage your tasks and projects easily within a Doc Atlassian a leading provider of team collaboration and productivity software is creating smart chips for both its Jira and Confluence apps enabling you to visualize key details for your project plans directly in a Doc Figma a design platform for teams who build products together is using smart chips to embed helpful information about brainstorms diagrams and prototypes that are foundational to a product design project into Docs The chips provide a visual thumbnail of the project so you can easily tell what you re clicking into Tableau the analytics platform is building a new smart chip that will enable Google Docs users to see a live preview of data visualizations and related dashboard metadata  Miro the leading visual collaboration platform is creating smart chips that will enable you to transform a Miro link into a useful visual frame of reference that gives preview title and other information needed to get a quick summary of your work in a visual format Zendesk the popular customer service platform is building smart chips to show users all the relevant and pertinent information for a given Zendesk ticket without leaving Google Docs  These new smart chip experiences from our partners are examples of the value and innovation we can provide to users and organizations by committing to openness and extensibility  Smart chips will be available to developers to build out their app integrations in the coming weeks and will be available to all users in Docs starting January  Adding third party capabilities to Google MeetGoogle Meet is more than just a video conferencing tool ーit s a hub for collaboration Earlier this year we rolled out the capability to join meetings and present directly from Google Docs Sheets and Slides to make it easier for people to work together in real time  We also built an integration with Miro allowing you to initiate collaboration on Miro whiteboards directly from a Meet call Now we re extending that capability to more third party applications Two new tools for developers ーthe Google Meet API and Google Meet add on SDK ーwill enable our partners to bring their apps together with Google Meet providing new seamless ways for our customers to use their favorite tools with Google Meet With our new Meet add on SDK partners can bring the power and functionality of their apps into Meet where users can then collaborate using other products without leaving the meeting space For example Figma is utilizing this SDK to bring its popular design and whiteboarding capabilities into Google Meet Our shared customers will now be able to collaborate within Figma in real time during Google Meet video calls See and hear co workers as you collaborate in FigmaWe re also announcing new Meet API that will enable users to schedule and launch meetings directly from third party applications These APIs will also enable users to see whether a meeting is currently live and who is currently in the meeting ーall without leaving the application of their choice Asana is working to bring the new Meet API together with Drive APIs to create or link to an existing Google Meet meeting directly from a task in Asana In addition we re working with Asana to explore functionality that would allow users to add tasks to a meeting create a clear agenda for the team and assign pre work so teams arrive prepared for a purposeful meeting We believe that together Asana and Google Meet can make meetings more actionable by helping users prepare and host results focused meetings Figma is working on bringing Figma and Figjam files right into Meet with this new Meet integration giving teams the ability to brainstorm and build designs together right in the flow of a meeting All participants can contribute and engage through Meet so more voices are heard and projects move forward faster  We re also making it easy for people to find and launch partner applications within Google Meet Joint partner and Workspace customers will be able to discover and install Meet add ons directly within the Meet UI ーeven during a live meeting And of course partners can register their apps in the Google Workspace Marketplace helping them reach millions of Workspace users The Google Meet API will be available for early access later this year and the Meet add on SDK will be available for early access by the end of Bringing partner applications into Google Chat and SpacesDevelopers already use our Chat and Spaces APIs to add new experiences to Google Workspace For instance they are enabling third party applications to automatically add people to Chat Spaces in time sensitive critical scenarios like incident response  Now we re expanding the Chat and Spaces APIs to enable more functionality between Google Chat and our partners applications Soon these apps will be able to automatically create direct messages or group chats programmatically These apps will also be able to read and write Chat messages without requiring a user to launch an app further extending the capabilities to allow for contextual understanding of conversations  For example imagine you re discussing an upcoming project with your team in a space and when you start working on the project in a given app the app suggests adding a related link or Doc based on the Chat conversation An app could also automatically copy all messages from one space to another to ensure important messages are shared as broadly as possible with your team  These are just a few ways partner apps using the Chat and Spaces APIs will be able to enhance user experiences in Chat Several of our partners are already leveraging these Chat and Spaces APIs to create unique Chat experiences  Asana is currently using the new Chat and Spaces APIs to notify users and act on Asana tasks right from Google Chat including actions such as marking a task complete reassigning a task or even creating an entirely new task all without leaving Google Chat LumApps the widely used employee experience platform is building a new integration with Chat that will enable our joint users to launch a private Google Chat with another employee directly from their LumApps user directory Bringing together these two common use cases ーfinding a coworker and initiating a conversation ーhelping Google Workspace and LumApps customers communicate more seamlessly and quickly Integrating LumApps with Google ChatSome capabilities for the Chat and Spaces APIs are already available in the Developer Preview Program with more APIs launching in the next few weeks Make sure you check out the Developer Preview Program for more details The power of an ecosystemWe re committed to making Google Workspace the most capable open and extensible platform for users and delivering a product that reflects reality for workers today work doesn t get done in a single application or a legacy suite of programs anymore Together with our partners we can deliver more helpful flexible tools create best in class capabilities for hybrid work and enable entirely new ways of communicating and collaborating You can learn more about Google Workspace add ons and integrations here our partner applications here and read more about the benefits of modernizing legacy office programs here  You can also express interest in partnering with Google Workspace here 2022-10-11 12:03:00
GCP Cloud Blog What's new in Google Cloud databases: More unified. More open. More intelligent. https://cloud.google.com/blog/products/databases/unifying-expanding-optimizing-databases-next22/ What x s new in Google Cloud databases More unified More open More intelligent Every organization is going through some form of digital transformation and serving their customers in new ways Modern conveniences have taught consumers that their experience is paramount ーno matter how big or small the company or how complex the problem Powering these digital experiences are operational databases the backbone of most applications The quality of the customer experience is critically dependent on how reliable scalable performant and secure these operational databases are  At Google Cloud our mission is to accelerate every organization s ability to digitally transform A large part of that is helping our customers and partners innovate faster with a unified open and intelligent data cloud platform At Google Cloud Next we re excited to announce new Google Cloud databases capabilities that enable more opportunities for growth and innovation within your organization The four key areas we ve focused on are  Building a unified and integrated data cloud for transactional and analytical dataBreaking free from legacy databases and our commitment to open ecosystems and standardsInfusing AI and machine learning across data driven workflowsEmpowering builders to be more productive and impactfulUnifying transactional and analytical data Traditionally data architectures have separated transactional and analytical workloads including their underlying databases ーand for good reason Transactional databases are optimized for fast reads and writes while analytical databases are optimized for aggregating large data sets Because these systems are largely decoupled it can create many inefficiencies Enterprises struggle to piece together disparate data solutions they spend valuable time managing complex data pipelines and they expend a lot of effort replicating data between databases Ultimately they find it difficult to build intelligent data driven applications  At Google Cloud we re uniquely positioned to solve this problem because of how we ve architected our data platform Our transactional and analytical databases are built on a highly scalable distributed storage system with disaggregated compute and storage and high performance Google owned global networking This combination allows us to provide tightly integrated data cloud services across Cloud Spanner Cloud Bigtable AlloyDB for PostgreSQL and BigQuery We re excited to announce the Preview of Bigtable change streams for easy data replication Bigtable is a highly performant fully managed NoSQL database service that processes over billion requests per second at peak and has more than exabytes of data under management With change streams you can track writes updates and deletes to Bigtable databases and replicate them to downstream systems such as BigQuery Change streams helps support real time analytics event based architectures and multicloud operational database deployments This capability joins recently launched Spanner change streams  We also recently announced Datastream for BigQuery in Preview which provides easy replication of data from operational database sources such as AlloyDB PostgreSQL MySQL and Oracle directly into BigQuery with a few simple clicks With a serverless auto scaling architecture Datastream allows you to easily set up an Extract Load Transform ELT pipeline for low latency data replication enabling real time insights in BigQuery Datastream enables real time insights in BigQuery with just a few steps Greater freedom and flexibility with open source and open standardsIn recent years organizations have become unwilling to tolerate opaque costs restrictive licensing and vendor lock in and we re seeing them increasingly adopt open source databases and open standards In particular PostgreSQL has emerged as a leading alternative to legacy proprietary databases because of its rich functionality ecosystem extensions and enterprise readiness To make sure we support your workloads we offer three PostgreSQL options First AlloyDB for PostgreSQL is a PostgreSQL compatible database currently in preview that delivers the performance availability scale and functionality needed to support commercial grade workloads In our performance tests AlloyDB is more than x faster than standard PostgreSQL for transactional workloads We re excited to announce a major expansion of the AlloyDB partner ecosystem with more than partner solutions to support business intelligence analytics data governance observability and system integration We also recently announced that our Database Migration Service supports migration of PostgreSQL databases to AlloyDB in preview This service helps you migrate to AlloyDB from any PostgreSQL database ーwhether it s on premises self managed on Google Cloud or on another cloud ーin an easy to use secure and serverless manner and with minimal downtime The second PostgreSQL offering is Cloud SQL for PostgreSQL a fully managed up to date version of PostgreSQL for easy lift and shift migrations or new application development We support the most popular PostgreSQL extensions and over database flags and you get the same experience of open source PostgreSQL with the strong management availability and security of Cloud SQL It s no surprise that Cloud SQL is used by more than of the top Google Cloud customers New customers can get started with a Cloud SQL free trial Finally Spanner our globally distributed relational database with strong external consistency and up to availability offers a PostgreSQL interface that lets you take advantage of familiar tools and skills from the PostgreSQL ecosystem We re continuing to prioritize PostgreSQL compatibility of Spanner and are excited to announce a key milestone ーthe Spanner PostgreSQL interface now supports its first group of PostgreSQL ecosystem drivers starting with Java JDBC and Go pgx This support can reduce the cost of migrating apps to Spanner using off the shelf PostgreSQL drivers your developers already use And to further democratize access to Spanner we recently announced free trial instances Infusing AI and machine learning across data driven workflowsAI and machine learning ML are critical to data driven transformations helping you get more value from your data Among their many benefits AI and ML tools can help recognize patterns enhance and improve operational capabilities with new insights and create compelling customer experiences Most companies face significant hurdles not only trying to build ML models but also integrating them into applications without extensive coding and specialized AI ML skills Harnessing AI and ML in workflows of all kinds should be easy especially within your data platform  At Google Cloud we ve invested in AI and ML technologies for both database system optimizations to make our services more intelligent and for AI and ML service integrations For database system optimizations capabilities such as Cloud SQL cost recommenders and AlloyDB autopilot make it easier for database administrators and DevOps teams to manage performance and capacity for large fleets of databases  In addition to infusing AI and ML into our databases we ve been focused on providing integration with Vertex AI Google Cloud s machine learning platform to enable model inferencing directly within the database transaction We re excited to announce in preview the integration of Vertex AI with Spanner You can now use a simple SQL statement in Spanner to call a machine learning model in Vertex AI With this integration AlloyDB and now Spanner can allow data scientists to build models easily in Vertex AI and developers to access these models using the SQL query language For example retailers need to detect fraudulent transactions during the checkout process and take appropriate action With the Vertex AI integration you can simply call the fraud detection ML model in the Spanner query using a function like ML PREDICT Predict fraudulent transactions in retail checkout process using Vertex AI integrationEmpowering builders to be more productiveBuilding testing and deploying apps is cumbersome Plus even after an app is built maintaining it requires regular monitoring performance tuning scaling and security patching ーall of which distract developers from strategic initiatives As a result organizations can be slow to innovate and may fall behind their competition That s why we prioritize the developer experience and are excited to share the latest advancements we re making in Firestore Cloud SQL and Spanner Developers love Firestore because of how fast they can build an app end to end More than million databases have been created in Firestore and Firestore applications power more than billion monthly active end users using Firebase Auth But what happens when the application grows We want to ensure developers can focus on productivity even when their apps are experiencing hyper growth To achieve this we ve made three updates to Firestore all aimed at supporting growth and reducing costs  For applications using Firestore as a backend as a service we ve removed the limits for write throughput and concurrent active connections Now if your app becomes an overnight success you can be confident that Firestore will scale smoothly Additionally we re rolling out the COUNT function in preview next week which gives you the ability to perform cost efficient scalable count aggregations This capability supports use cases like counting the number of friends a user has or determining the number of documents in a collection Finally to help you efficiently manage storage costs we ve introduced time to live TTL which enables you to pre specify when documents should expire and can rely on Firestore to automatically delete expired documents We re also making advancements to security and performance in Cloud SQL and Spanner Now it can be easier to detect diagnose and prevent database performance problems with Cloud SQL Query Insights for MySQL also available for PostgreSQL We recently introduced PostgreSQL System Insights in preview and are excited to announce two additional types of Cloud SQL recommenders Security recommenders continuously detect security vulnerabilities and check for risky security configurations such as a public IP address with broad access or unencrypted connections Performance recommenders meanwhile help identify and resolve common misconfigurations that increase the risk of performance degradation or downtime  We recently launched Query insights for Spanner which provides pre built dashboards for quickly diagnosing query performance issues In addition lock and transaction insights for Spanner coming Q will help troubleshoot lock contention issues on Spanner that can slow down applications You can easily correlate row ranges columns and sample transactions contending for locks and debug high latency transactions using granular metrics Pre built dashboards to troubleshoot high latencies due to lock contentions in Spanner Tap into new possibilitiesThe future of data has endless possibilities and we re excited to partner with you to help accelerate your data driven business transformation  Tune into Next for more details on the announcements and get inspired by learning how companies like MLB PLAID Forbes DaVita Credit Karma and Box are innovating with Google Cloud databases Related ArticleLatest database innovations for transforming the customer experienceGoogle Cloud adds Spanner free trial instances and fine grained access control Datastream for BigQuery and PostgreSQL database migratio Read Article 2022-10-11 12:02:00
GCP Cloud Blog 20+ Cloud Networking innovations unveiled at Google Cloud Next https://cloud.google.com/blog/products/networking/networking-announcement-at-google-cloud-next22/ Cloud Networking innovations unveiled at Google Cloud NextNetworking is the foundational fabric that allows organizations to thrive in a digital business world Today at Next we are announcing a series of innovations to our Google Cloud networking services all designed to meet customers where they are with AI ML powered services and built in security  We start with a planet scale network that is continually expanding to reach more customers At regions zones and network edge locations across countries and territories the Google Cloud Network offers services that allow customers to easily migrate modernize secure and observe their workloads “As enterprises continue to migrate new and established workloads to public cloud they are recognizing that network architectures infrastructure and operating models must be modernized In a cloud context the network truly is the digital nervous system providing secure and ubiquitous connectivity for business resilience and digital experiences With these latest enhancements and additions to its network and security portfolio Google Cloud is responding to the need for simplified cloud migrations through network modernization which is integral to the success of enterprise digital transformation said Brad Casemore Research VP Datacenter and Multicloud Networks IDC  Let s take a closer look at all the enhancements we announced today also covered in our Networking session MOD   Simplify migrationsAs customers migrate services to the cloud they may face connectivity and security challenges Private Service Connect connects services across VPC networks that are in different groups teams projects or organizations over an encrypted connection Today we are announcing the following Private Service Connect enhancements in Preview   L PSC provides consumer controlled security routing and telemetry to help enable more flexible and consistent policy for all servicesPrivate Service Connect over interconnect provides support for on prem traffic through Cloud Interconnects to PSC endpointsPrivate Service Connect for hybrid environments can enable producers and consumers to securely connect and access managed services from cloud or on premIntegration with new partner managed services from Confluent Databricks DataStax Grafana and NeoJ enabling customers to easily consume data and analytics services You can learn more about Private Service Connect and these enhancements here  Customers with High Performance Computing HPC workloads are migrating to the cloud to leverage exponential gains in IOPS Workloads such as scale out analytics AI ML and financial risk modeling and simulation demand the highest compute and network performance We are introducing the preview of Gbps networking for the new C virtual machine family offering x the bandwidth of the C family and line rate encryption using the open source PSP Security Protocol  Accelerate modernization When it comes to the network modernization takes on many forms For some customers it s about application modernization and for others it s about modernizing with cloud and reaching more customers through content delivery networks CDNs Here are just a few of the ways we re helping Google Cloud customers modernize their network infrastructure  Content Delivery Network Earlier this year we introduced Media CDN which leverages the same infrastructure as YouTube to enable exceptional video on demand and live streaming experiences through caching presence across cities and countries and territories Paramount Global is one of the world s largest producers of premium entertainment content and has adopted Media CDN  “Streaming is one of the key growth areas for Paramount Global When we migrated traffic onto Media CDN we observed consistently superior performance and offload metrics Partnering with Google Cloud enables us to provide our subscribers with the highest quality viewing experience says Chris Xiques SVP of Video Technology Group at Paramount Global Media CDN now supports the Live Stream API to ingest and package source content into HTTP Live Streaming and DASH formats for optimized live streaming We are enabling two new developer friendly integrations in Preview for Media CDN Dynamic Ad Insertion with Google Ad Manager which provides customized video ad placements and third party Ad Insertion using our Video Stitcher API for personalized ad placement With these options content producers can introduce additional monetization and personalization opportunities to their streaming services  For advanced customization we are introducing the Preview of Network Actions for Media CDN a fully managed serverless solution based on open source web assembly that enables programmability for customers to deploy their own code directly in the request response path at the edge Using Network Actions customers can unlock a wide variety of custom use cases such as security controls cache offload custom logs and more  Many customers are rethinking and modernizing their CDNs and migrating to cloud based solutions to minimize costs and maximize end to end performance AppLovin which provides an industry leading mobile app platform is one such customer that migrated to Cloud CDN for improved performance  “AppLovin powers many of the world s most popular mobile apps and game studios Partnering with Google Cloud has enabled us to expand our platform globally and reach more users quickly We tripled our traffic in days with millions of requests per second and saw a reduction in latency with Google Cloud Load Balancing and Cloud CDN says Omer Hasan VP of Operations at AppLovin  Today we are adding dynamic compression to Cloud CDN to further accelerate applications by significantly reducing the size of responses transferred from the edge to a client Dynamic compressionaccelerates page load times and reduces egress traffic for better performance and efficiency  Container networking Customers running network intensive Enterprise and Telco workloads in container network functions CNFs can use high performance dataplane and multi networking under the umbrella of Network Function Optimizer Network Function Optimizer in Preview delivers enhanced networking capabilities that allow customers to connect multiple container network functions apply labels for selection and to steer the traffic to them High performance networking in Google Distributed Cloud Edge platform leverages capabilities such as DPDK and SR IOV for faster packet processing Protect with built in securityGoogle Cloud offers a comprehensive network security solution to help protect your cloud infrastructure Cloud Firewall and Cloud Armor are two of those tools Expanding Cloud FirewallGoogle Cloud Firewall helps customers achieve a zero trust network posture via a fully distributed cloud native firewall service with advanced protection capabilities and granular controls We are expanding our Cloud Firewall product line and introducing two new tiers Cloud Firewall Essentials and Cloud Firewall Standard  The new Cloud Firewall Standard in Preview offers expanded policy objects for firewall rules that can simplify configuration and micro segmentation to help protect your cloud infrastructure and workloads It includes the following types of objects whose contents are built and auto updated by Google Google Cloud Threat Intelligence with five types of curated lists one of which is known malicious IPs Domain Name FQDN  and Geo location based objects which together combine to offer robust and highly scalable protection  Cloud Firewall Essentials is our current foundational tier of firewall capabilities We recently introduced new configuration structures Global and Regional Network Firewall Policies which havebuilt in IAM controls may be applied across VPCs and support batch rules updates In addition we announced IAM governed Tags enabling scalable micro segmentation policies that follow the workload Both of these features are now generally available And we have added Address Group objects in Preview to help simplify automation and infrastructure as code operations The combination of IAM governed Tags in Cloud Firewall Essentials the dynamic objects in Cloud Firewall Standard Address Groups and our existing hierarchical firewall rules helps customers run a very flexible least privilege self service environment that enforces pinpoint policy with greater simplicity and decreased operational cycles You can hear more about Cloud Firewall at Next session MOD Cloud Armor named a Strong PerformerWe ve also extended the capabilities of another network security product Google Cloud Armor which helps protect web applications services and APIs from both DDoS attacks and web application exploit attempts You can now configure the ML based Adaptive Protection capability which recently detected and protected a customer from the largest L DDoS attack to date hear more in session SEC to automatically deploy its proposed rules We ve also enhanced tuning for preconfigured WAF rules adding field exclusion signature opt in and expanded JSON content type support all now in Preview Preconfigured WAF rules using the latest ModSecurity Core Rule Set v covering the OWASP Top web app vulnerability risks are now generally available  And we are pleased to share that Google Cloud Armor was named a Strong Performer in The Forrester Wave Web Application Firewalls Q report linked here This is our initial debut in the WAF Wave and it s encouraging to see the third party recognition for the product in this market segment Observe detect and recommendThroughout the customer journey observability is a key enabler of successful network migration modernization and security Network Intelligence Center our real time observability platform continues to expand its ability to help customers tame operational complexity Here are several enhancements to Network Intelligence Center  Network Analyzer now generally available automatically learns and monitors customers network deployment specifically to detect mis configurations and drifts on network topology firewall rules routes load balancers and connectivity to services and applications Customers can set alerts on insights with log based alerting and programmatically access the data with the Recommender API  Performance Dashboard now provides visibility into latency measurements for Google Cloud to Internet traffic at per project and global levels This visibility helps customers plan the placement of their Google Cloud resources and overall network architecture  Network Topology is enhanced with a new “top talkers view so that customers can quickly identify and monitor their top contributors to egress and optimize the architecture for performance and cost Firewall Insights launched new enhancements to provide IPv rule coverage and custom insight refresh cycle to generate shadowed rule insights for projects  Innovating at all layers of the stackFrom startups born in the cloud to enterprises migrating to the cloud companies are leveraging the ubiquity of cloud everywhere as a catalyst to shape expand and accelerate their digital transformation At Google Cloud we are working side by side with customers to simplify their cloud journey with innovations at all layers of the networking and security stack to open new possibilities Check out these Cloud Networking sessions from Google Cloud NEXT to learn more Related ArticleRead Article 2022-10-11 12:01: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件)