-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Support for loading the ad but not firing the billing notifications #4494
Comments
This is a big project. Getting bidders to split the body and the tracking could take a while. What would the 'fetch' actually do? I get that the goal is having assets in browser cache, but it's unclear to me how that's feasible.
|
I know it's a big project; my hope is new members joining at the leader tier are both committing resources to the project and are very interested in the outcome of this issue The whole community will benefit from a variety of scenarios in which ads can be preassembled to some degree so they are ready to display before the billing event is fired. I imagine that's why the IAB added burl to the spec. |
This might be smaller than originally scoped; we could delay the callBurl portion of rendering functions to wait for a trigger of some sort. |
Here's a tentative proposal for how this could work:
Currently we deal with Lines 552 to 556 in cb1a982
Many other adapters beside PBS set |
Updated proposal:
|
Hey @dgirardi, had some interest in working on this ticket. What do you think of the following? (I took your proposal above and expanded upon point #5):
Note: For now, was thinking that the new visibilityForBilling module doesn't need to be behind configuration (via pbjs.setConfig({ ... }), etc.). Thinking at the moment just having the module included in core and simply listening for flagged ad units with deferBilling set to true would be ok? |
I would keep point 5 separate; visibility is not trivial and I expect it would double the scope alone. As long as we still provide the new |
Thanks for the feedback. Keeping the visibility logic separate sounds like it makes sense to me |
Wanted to post a quick update on this ticket, I had to shift focus over the past few weeks to work on a handful of other internal PubMatic tickets, but will resume work on this ticket this week (on the updated proposal above: #4494 (comment)) and also #9531 |
Type of issue
Feature Request
Description
Many publishers can now pre-fetch ads in a Lazy Load scenario before rendering them. https://developers.google.com/doubleclick-gpt/reference#googletag.PubAdsService_enableLazyLoad
The goal of this is so that the render can be quicker and viewability is improved.
In the case of an ad in an exit intent pop-up, conducting an auction and rendering an ad before the user exits is quite difficult.
In prebid, if a publisher wanted the browser to start fetching an ad before the publisher is ready to show it, it would just call the adm. However, if the publisher does this too early, they will have low viewability on the unit.
However, if an adapter were to separate billing events from the adm, as per section F of OpenRTB 3.0 updates at https://iabtechlab.com/wp-content/uploads/2017/09/OpenRTB-3.0-Draft-Framework-for-Public-Comment.pdf and https://github.com/InteractiveAdvertisingBureau/openrtb/blob/master/OpenRTB%20v3.0%20FINAL.md the browser could begin to fetch resources for the ad before the billing events were fired.
We could then write separate fetch and render functions and only fire the billing events on render. Another scenario is the billing events only fire on in view impressions.
A final scenario is a publisher could fetch an ad before calling dfp and render if dfp chose the ad in its response. A publisher may want to do this for all bids over a certain threshold, or other scenarios where the publisher predicts prebid is likely to be the chosen dfp order.
Also, #2246 seems to recognize burl, but doesn't seem to add support for calling fetch methods before render methods; so I am not sure how a publisher can take advantage of the burl information now.
The text was updated successfully, but these errors were encountered: