At the moment, we’re saying AWS RTB Material, a totally managed service function constructed for real-time bidding (RTB) promoting workloads. The service helps promoting expertise (AdTech) corporations seamlessly join with their provide and demand companions, resembling Amazon Adverts, GumGum, Kargo, MobileFuse, Sovrn, TripleLift, Viant, Yieldmo and extra, to run high-volume, latency-sensitive RTB workloads on Amazon Net Providers (AWS) with constant single-digit millisecond efficiency and as much as 80% decrease networking prices in comparison with commonplace networking prices.
AWS RTB Material offers a devoted, high-performance community atmosphere for RTB workloads and associate integrations with out requiring colocated, on-premises infrastructure or upfront commitments. The next diagram reveals the high-level structure of RTB Material.

AWS RTB Material additionally contains modules, a functionality that helps prospects deliver their very own and associate functions securely into the compute atmosphere used for real-time bidding. Modules assist containerized functions and basis fashions (FMs) that may improve transaction effectivity and bidding effectiveness. At launch, AWS RTB Material contains modules for optimizing site visitors administration, bettering bid effectivity, and rising bid response charges, all working inline throughout the service for constant low-latency execution.
The expansion of programmatic promoting has created a necessity for low-latency, cost-efficient infrastructure to assist RTB workloads. AdTech corporations course of hundreds of thousands of bid requests per second throughout publishers, supply-side platforms (SSPs), and demand-side platforms (DSPs). These workloads are extremely delicate to latency as a result of most RTB auctions should full inside 200–300 milliseconds and require dependable, high-speed trade of OpenRTB requests and responses amongst a number of companions. Many corporations have addressed this by deploying infrastructure in colocation information facilities close to key companions, which reduces latency however provides operational complexity, lengthy provisioning cycles, and excessive prices. Others have turned to cloud infrastructure to realize elasticity and scale, however they typically face complicated provisioning, partner-specific connectivity, and long-term commitments to realize value effectivity. These gaps add operational overhead and restrict agility. AWS RTB Material solves these challenges by offering a managed non-public community constructed for RTB workloads that delivers constant efficiency, simplifies associate onboarding, and achieves predictable value effectivity with out the burden of sustaining colocation or customized networking setups.
Key capabilities
AWS RTB Material introduces a managed basis for working RTB workloads at scale. The service offers the next key capabilities:
- Simplified connectivity to AdTech companions – Once you register an RTB Material gateway, the service routinely generates safe endpoints that may be shared with chosen companions. Utilizing the AWS RTB Material API, you may create optimized, non-public connections to trade RTB site visitors securely throughout completely different environments. Exterior Hyperlinks are additionally out there to attach with companions who aren’t utilizing RTB Material, resembling these working on premises or in third-party cloud environments. This strategy shortens integration time and simplifies collaboration amongst AdTech members.
- Devoted community for low-latency promoting transactions – AWS RTB Material offers a managed, high-performance community layer optimized for OpenRTB communication. It connects AdTech members resembling SSPs, DSPs, and publishers via non-public, high-speed hyperlinks that ship constant single-digit millisecond latency. The service routinely optimizes routing paths to take care of predictable efficiency and scale back networking prices, with out requiring handbook peering or configuration.
- Pricing mannequin aligned with RTB economics – AWS RTB Material makes use of a transaction-based pricing mannequin designed to align with programmatic promoting economics. Clients are billed per billion transactions, offering predictable infrastructure prices that align with how promoting exchanges, SSPs, and DSPs function.
- Constructed-in site visitors administration modules – AWS RTB Material contains configurable modules that assist AdTech workloads function effectively and reliably. Modules resembling Charge Limiter, OpenRTB Filter, and Error Masking aid you management request quantity, validate message codecs, and handle response dealing with instantly within the community path. These modules execute inline throughout the AWS RTB Material atmosphere, sustaining network-speed efficiency with out including application-level latency. All configurations are managed via the AWS RTB Material API, so you may outline and replace guidelines programmatically as your workloads scale.
Getting began
At the moment, you can begin constructing with AWS RTB Material utilizing the AWS Administration Console, AWS Command Line Interface (AWS CLI), or infrastructure-as-code (IaC) instruments resembling AWS CloudFormation and Terraform.
The console offers a visible entry level to view and handle RTB gateways and hyperlinks, as proven on the Dashboard of the AWS RTB Material console.

You can too use the AWS CLI to configure gateways, create hyperlinks, and handle site visitors programmatically. Once I began constructing with AWS RTB Material, I used the AWS CLI to configure every part from gateway creation to hyperlink setup and site visitors monitoring. The setup ran inside my Amazon Digital Personal Cloud (Amazon VPC) endpoint whereas AWS managed the low-latency infrastructure that related workloads.
To start, I created a requester gateway to ship bid requests and a responder gateway to obtain and course of bid responses. These gateways act as safe communication factors throughout the AWS RTB Material.
# Create a requester gateway with required parameters
aws rtbfabric create-requester-gateway
--description "My RTB requester gateway"
--vpc-id vpc-12345678
--subnet-ids subnet-abc12345 subnet-def67890
--security-group-ids sg-12345678
--client-token "unique-client-token-123"
# Create a responder gateway with required parameters
aws rtbfabric create-responder-gateway
--description "My RTB responder gateway"
--vpc-id vpc-01f345ad6524a6d7
--subnet-ids subnet-abc12345 subnet-def67890
--security-group-ids sg-12345678
--dns-name responder.instance.com
--port 443
--protocol HTTPS
After each gateways have been energetic, I created a hyperlink from the requester to the responder to ascertain a non-public, low-latency communication path for OpenRTB site visitors. The hyperlink dealt with routing and cargo balancing routinely.
# Requester account making a hyperlink from requester gateway to a responder gateway
aws rtbfabric create-link
--gateway-id rtb-gw-requester123
--peer-gateway-id rtb-gw-responder456
--log-settings '{"applicationLogs:{"sampling":"errorLog":10.0,"filterLog":10.0}}'
# Responder account accepting a hyperlink from requester gateway to responder gateway
aws rtbfabfic accept-link
--gateway-id rtb-gw-responder456
--link-id link-reqtoresplink789
--log-settings '{"applicationLogs:{"sampling":"errorLog":10.0,"filterLog":10.0}}'
I additionally related with exterior companions utilizing Exterior Hyperlinks, which prolonged my RTB workloads to on-premises or third-party environments whereas sustaining the identical latency and safety traits.
# Create an inbound exterior hyperlink endpoint for an exterior associate to ship bid requests to
aws rtbfabric create-inbound-external-link
--gateway-id rtb-gw-responder456
# Create an outbound exterior hyperlink for sending bid requests to an exterior associate
aws rtbfabric create-outbound-external-link
--gateway-id rtb-gw-requester123
--public-endpoint "https://my-external-partner-responder.com"
To handle site visitors effectively, I added modules instantly into the information path. The Charge Limiter module managed request quantity, and the OpenRTB Filter validated message codecs inline at community velocity.
# Connect a price limiting module
aws rtbfabric update-link-module-flow
--gateway-id rtb-gw-responder456
--link-id link-toresponder789
--modules '{"identify":"RateLimiter":"moduleParameters":{"rateLimiter":{"tps":10000}}}'
Lastly, I used Amazon CloudWatch to watch throughput, latency, and module efficiency, and I exported logs to Amazon Easy Storage Service (Amazon S3) for auditing and optimization.
All configurations will also be automated with AWS CloudFormation or Terraform, permitting constant, repeatable deployment throughout a number of environments. With RTB Material, I may deal with optimizing bidding logic whereas AWS maintained predictable, single-digit millisecond efficiency throughout my AdTech companions.
For extra particulars, discuss with the AWS RTB Material Consumer Information.
Now out there
AWS RTB Material is offered at the moment within the following AWS Areas: US East (N. Virginia), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Tokyo), Europe (Frankfurt), and Europe (Eire).
AWS RTB Material is frequently evolving to handle the altering wants of the AdTech trade. The service expands its capabilities to assist safe integration of superior functions and AI-driven optimizations in real-time bidding workflows that assist prospects simplify operations and enhance efficiency on AWS. To study extra about AWS RTB Material, go to the AWS RTB Material web page.
– Betty
