Posts

Amazon S3 Express One Zone now supports request metrics in Amazon CloudWatch - devamazonaws.blogspot.com

Amazon S3 Express One Zone, a high performance S3 storage class for latency-sensitive applications, now supports request metrics in Amazon CloudWatch. You can use request metrics to track performance and monitor the operational health of applications that use S3 Express One Zone. In addition to existing storage metrics, you can now use request metrics to monitor request counts, data transfer volumes, error rates, and latency measurements at minute-level granularity. These request metrics are available through the CloudWatch console, S3 console, S3 API, and AWS CLI.  CloudWatch request metrics for S3 Express One Zone are available in all  AWS Regions where the storage class is available . For pricing information, visit the  CloudWatch pricing page . To learn more, visit the  S3 Express One Zone overview page  and  documentation . Post Updated...

AWS HealthOmics introduces VPC-connected workflows - devamazonaws.blogspot.com

AWS HealthOmics announces VPC-connected workflows, giving customers the ability to run bioinformatics pipelines that access AWS resources across regions and public internet resources through a customer’s Virtual Private Cloud (VPC). With this launch, life sciences customers no longer need to migrate their data and dependencies to the same AWS Region as their workflow before running analyses. AWS HealthOmics is a HIPAA-eligible service that helps accelerate scientific breakthroughs at scale with fully managed bioinformatics workflows. This launch enables life sciences customers to develop and test bioinformatics workflows more quickly. Customers can design workflows that access publicly-hosted data sets as well as AWS resources in different regions without making changes to the workflow code or migrating data between regions. Customers can use new Configuration APIs to specify a VPC configured to access public internet resources to which HealthOmics can send and receive network traffi...

Amazon Athena launches Capacity Reservations in additional regions - devamazonaws.blogspot.com

Amazon Athena now offers Capacity Reservations in additional commercial AWS Regions. Capacity Reservations give you dedicated serverless capacity for your most important workloads. When you use Capacity Reservations, your queries run in isolation from other workloads in your account, and you control how many queries run concurrently. Capacity Reservations is now available in US West (N. California), Africa (Cape Town), Asia Pacific (Hong Kong), Asia Pacific (Hyderabad), Asia Pacific (Jakarta), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Asia Pacific (Osaka), Asia Pacific (Seoul), Asia Pacific (Thailand), Asia Pacific (Taipei), Canada (Central), Canada West (Calgary), Europe (Frankfurt), Europe (London), Europe (Milan), Europe (Paris), Europe (Zurich), and Mexico (Central). To learn more, see Manage query processing capacity in the Athena User Guide. Post Updated on March 30, 2026 at 08:30PM

AWS Elemental MediaTailor now available in Europe (London) - devamazonaws.blogspot.com

AWS Elemental MediaTailor is now available in the Europe (London) AWS Region. MediaTailor is a personalized ad insertion and channel assembly service that enables video providers to serve targeted ads in live and on-demand video streams using server-side ad insertion (SSAI) and Server Guided Ad Insertion (SGAI), delivering a broadcast-quality viewing experience without the buffering or ad blockers associated with client-side ad insertion. With this expansion, customers serving viewers in Northern Europe can now run ad insertion workloads closer to their audience, reducing ad decisioning latency and improving ad fill rates. Customers using SSAI or SGAI workflows benefit from lower-latency ad stitching and ad tracking closer to their European viewers, and customers already using MediaTailor in Europe (Ireland) gain an additional region for redundancy and increased capacity. To learn more, visit the AWS Elemental MediaTailor product page or the AWS Elemental MediaTailor User Guide...

[MS] A question about the maximimum number of values in a registry key raises questions about the question - devamazonaws.blogspot.com

A customer wanted to know the maximum number of values that can be stored in a single registry key. They found that they ran into problems when they reached a certain number of values, which was well over a quarter million. Okay, wait a second. Why are you adding over a quarter million values to a registry key!? The customer explained that they mark every file in their installer as msidb­Component­Attributes­Shared­Dll­Ref­Count , to avoid the problem described in the documentation . And when I said every file, I really meant every file . Not just DLLs, but also text files, GIFs, XML files, everything. Just the names of the keys adds up to over 30 megabytes. Since their product supports multiple versions installed side-by-side, installing multiple versions of their product accumulates values in the HKEY_ LOCAL_ MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ SharedDLLs registry key. The customer saw the story about problems if you forget to mark a shared file as msidb­Compo...

Access Cluster Insights through the Amazon OpenSearch Service Console and Amazon EventBridge events - devamazonaws.blogspot.com

Amazon OpenSearch Service extends access to Cluster Insights through the AWS Management Console, in addition to the existing OpenSearch UI Dashboards. This launch makes it easier to review performance and resilience recommendations and make necessary configuration changes, all within the same Console. In addition, Cluster Insights now publishes insights as events to Amazon EventBridge. Cluster insights presents curated insights of a cluster’s operational health along with actionable recommendations to help prevent issues before they affect the stability or performance of the cluster. You can continue to use OpenSearch UI Dashboards for more detailed metrics, including index and shard-level data and top-N query analysis. In addition, with this release, you can monitor insights through Amazon EventBridge events. Cluster Insights is available at no additional cost for OpenSearch versions 2.17 or later in all Regions where OpenSearch Service is available. View the complete list of supp...

[MS] Writing Azure service-related unit tests with Docker using Spring Cloud Azure - devamazonaws.blogspot.com

In this post, we explore how to write Azure service-related unit tests for Spring Boot projects using Docker and Spring Cloud Azure. What is Spring Cloud Azure? Spring Cloud Azure is an open-source project that makes it easier to use Azure services in Spring applications. For more information about this topic, see the user guide . Why use Docker for unit testing? Using Docker for unit testing provides an easy way to test Azure-related features without provisioning real Azure resources. It helps you quickly verify your code changes locally and ensures that your application works as expected before deploying to Azure. Examples Azure Storage Blob Using Docker Compose Add the following dependency to your pom.xml file: <properties> <version.spring.cloud.azure>7.1.0</version.spring.cloud.azure> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.azure.spring</groupId> ...