Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Can we override the Campaign's priority dynamically?

Avatar

Level 3

We have a requirement from client, the major ask from them is to change the priority of campaigns while campaigns are running? And can we define our own custom priorities additional to OOTB.

For example:

If Campaign A is running with High Priority and Campaign B is running with Low Priority. After some time, we change the priority of Campaign A to low and Campaign B to high.

Will this change in priority taken into consideration by campaign dynamically?

Another question is, can the priorities of deliveries be overridden after the delivery is prepared? Example : If in a campaign, total 1000 deliveries were targeted, after some deliveries are sent, say 250, we want to change the priority of the delivery and wants campaign to send the remaining deliveries as per new priority. Is this possible?

How to achieve these two scenarios? Can we customize this code?

My thought is to update the delivery priority via script code. But, I am unsure if campaign picks that up while the delivery is running.

Vipul RaghavAmit_KumarAdhiyan​ - Any thoughts here? Please?

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi uagnihotri,

Can you please clarify, when you say Campaign priority, you actually mean delivery priority? As far as my knowledge goes, I've never seen Campaign priority. Will wait for you to clarify that.

Following points are in terms of delivery priority.

  • When you analyze the delivery, priority for it is set at the time when editing it initially.
  • Deliveries that sit inside Campaign (nms:operation) are governed by this priority setting.
  • operationMgt (Campaign Jobs) workflow is responsible for initiating the analysis of these deliveries as scheduled or requested by the marketer.
  • operationMgt at a given time can process X number of deliveries only. This setting X is an option value called NmsOperation_LimitConcurrency. 1528744_pastedImage_52.png
  • By default, it is 10 but then you can increase this number depending upon the infrastructure you have and the amount of load your database can handle.
  • When say you have more than X deliveries all scheduled for analysis or send initiation concurrently, operationMgt will pick the first X out of those after sorting them according to that priority.
  • After that point onwards, MTA randomply picks the delivery parts to process them and priority has no role to play here.

Now coming to your questions

If Campaign A is running with High Priority and Campaign B is running with Low Priority. After some time, we change the priority of Campaign A to low and Campaign B to high.

Will this change in priority taken into consideration by campaign dynamically?

I'm not sure if Campaign has a priority but if you want to do this on delivery, you will have to reanalyze it to take effect

Another question is, can the priorities of deliveries be overridden after the delivery is prepared? Example : If in a campaign, total 1000 deliveries were targeted, after some deliveries are sent, say 250, we want to change the priority of the delivery and wants campaign to send the remaining deliveries as per new priority. Is this possible?

A delivery becomes readonly, once you prepare it. However, it will not stop you from updating the attributes using an API call or workflow. Will it take effect? No as for that you need to re-analyze the delivery. If a delivery is already going out, priority has no control over it as MTA picks delivery parts that are available, randomly.

How to achieve these two scenarios? Can we customize this code?

It cannot be done.

Regards,

Vipul

View solution in original post

2 Replies

Avatar

Correct answer by
Employee Advisor

Hi uagnihotri,

Can you please clarify, when you say Campaign priority, you actually mean delivery priority? As far as my knowledge goes, I've never seen Campaign priority. Will wait for you to clarify that.

Following points are in terms of delivery priority.

  • When you analyze the delivery, priority for it is set at the time when editing it initially.
  • Deliveries that sit inside Campaign (nms:operation) are governed by this priority setting.
  • operationMgt (Campaign Jobs) workflow is responsible for initiating the analysis of these deliveries as scheduled or requested by the marketer.
  • operationMgt at a given time can process X number of deliveries only. This setting X is an option value called NmsOperation_LimitConcurrency. 1528744_pastedImage_52.png
  • By default, it is 10 but then you can increase this number depending upon the infrastructure you have and the amount of load your database can handle.
  • When say you have more than X deliveries all scheduled for analysis or send initiation concurrently, operationMgt will pick the first X out of those after sorting them according to that priority.
  • After that point onwards, MTA randomply picks the delivery parts to process them and priority has no role to play here.

Now coming to your questions

If Campaign A is running with High Priority and Campaign B is running with Low Priority. After some time, we change the priority of Campaign A to low and Campaign B to high.

Will this change in priority taken into consideration by campaign dynamically?

I'm not sure if Campaign has a priority but if you want to do this on delivery, you will have to reanalyze it to take effect

Another question is, can the priorities of deliveries be overridden after the delivery is prepared? Example : If in a campaign, total 1000 deliveries were targeted, after some deliveries are sent, say 250, we want to change the priority of the delivery and wants campaign to send the remaining deliveries as per new priority. Is this possible?

A delivery becomes readonly, once you prepare it. However, it will not stop you from updating the attributes using an API call or workflow. Will it take effect? No as for that you need to re-analyze the delivery. If a delivery is already going out, priority has no control over it as MTA picks delivery parts that are available, randomly.

How to achieve these two scenarios? Can we customize this code?

It cannot be done.

Regards,

Vipul

Avatar

Level 3

Hi Vipul,

Thanks for your reply. Sorry, I assumed workflow priority as campaign priority. You have answered my question already.

Regards

Utkarsh