Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Activation event & frequency of flag updation for accurate AB test

I am trying to run an experiment to change the behavior of a element on app's step-3. In order for data to be accurate,I was planning to put activation event as event which completes step-2. Now firebase remote config values are fetched when app first starts so there's no way the app would get updated remote config value for the flag to be used on step-3 if I set step-2 completion as an activation event. If I fetch and activate the flag value every-time I use a flag,that would go over limit of 5 times in 60 minutes. What is best way to go around this problem?

like image 512
lalchetian Avatar asked Feb 27 '19 12:02

lalchetian


People also ask

What does activation mean in marketing?

Marketing activation is the execution of campaigns, events, and experiences that generate awareness of your brand. Done well, marketing activation resonates with your audience. The activation process focuses on enhancing the path to purchase for customers, often through an interactive experience.

What is activation example?

Activation (or bioactivation) may also mean the process or state of becoming more effective in carrying out a particular function. For instance, the activation of an enzyme would make the latter perform its specific biological function. Another example is when an inactive prodrug is converted into an active metabolite.

What is an activation experience?

What Is An Experiential Activation? Experiential activations are branded, consumer-focused, promotional experiences that are the highlight of experiential marketing campaigns.

What does activation mean in sales?

What is sales activation? Sales activation is just another name for conversion. It happens when a prospective customer decides it's finally time to make a purchase.


1 Answers

So the activation event for ABT only causes users who trigger it to start getting counted in the experiment, it does not activate the actual config values when triggered. You should be able to fetch and activate on app start and then by using the activation event on step 2 the user may be entered into the experiment and get the step 3 behavior change.

This article talks about about RC activation https://firebase.googleblog.com/2017/01/firebase-remote-config-loading.html

And the docs here go into a bit more detail on ABT activation events https://firebase.google.com/docs/ab-testing/abtest-config

like image 178
fenmarel Avatar answered Nov 12 '22 07:11

fenmarel