-
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
Publishers should be able to filter the bids entering the auction #12399
Comments
@patmmccann @dgirardi what do you think? |
Right now publishers can choose which bid wins, if they're prepared to write code. It's trivial when using This is not the same as rejecting bids - but all rejecting does is generate an analytics event; it doesn't notify bidders. Rejected bids are also not kept in cache; that seems a contradiction. |
possible dupe of #6453 Would #6453 (comment) solve your concerns? |
perhaps this could be an extension of the recently released #12147
|
@dgirardi I would like the filtered bids to be pushed in the cache and be used in the next auction.
|
If filtered bids are to be kept in cache, is "mark bid as filtered" different from "bid didn't win yet"? It looks the same as loss notifications to me, with the same problem, namely that any bid could still win in the future. Also, if it was filtered from an auction, why would it not be filtered again from the next auction? I think we can separate out the targeting problem (it should be easier to pick any particular bid as winner when using GPT); but I don't understand the goal for analytics. If publishers need to write custom logic to pick this new type of losing bid, does it help them to notify themselves through their analytics? |
@dgirardi yeah we can consider, "mark bid as filtered" NOT different from "bid didn't win yet". Why a filtered bid may win later?
Finding the highest bid for an adslot after custom filtering of bids by publisher should be done by Prebid logic. Pub should not decide which is winning bid. Targeting key-value generation should also be done by Prebid post filtering. Analytics use case: Yes, notifying themselves will be useful to know the impact of the implementation at scale. |
Feature request
After receiving the bids from bidders , there should be a way for publishers to enforce a filtering logic on given bids to decide which bids should be used in auction per slot, discarded bids can be optionally sent to cache.
Use cases:
How?
If not supported already, we can introduce new event that is triggered right before running the auction logic on the received bids
The text was updated successfully, but these errors were encountered: