Expand my Community achievements bar.

Your voice matters! Help shape the future of Adobe Journey Optimizer by sharing your feedback.

Audience count variation in AEP and AJO

Avatar

Level 2

Hi Team,

 

Why there is count difference in AEP and AJO?

 

Example - There are 10K audience count in AEP but in Journey the read audience has only 500 audience count. Where the other audience are getting drop. All the criteria are applied and namespace is also matching.

 

Regards

4 Replies

Avatar

Community Advisor

@YashwanthPo 

May I know the audience evaluation type which is used in the journey?

 

when the Read Audience activity is used, profiles are selected from the profile snapshot data. Cross check the count of the audience for that segment mebership in profile_snapshot_export dataset.

 

 

Avatar

Level 2

May I know the audience evaluation type which is used in the journey? Batch Evaluation

 

Where I can find the profile_snapshot_export dataset. Can I query this dataset?

 

Thank you.

Avatar

Community Advisor

@YashwanthPo profile snapshot is a system generated dataset.

AnuhyaY_0-1741325024384.png

 

count records

SELECT count()
FROM profile_snapshot_export_ID -- replace export id
WHERE segmentMembership['ups']['segment ID'] IS NOT NULL
AND segmentMembership['ups']['segment ID']['status'] IN ('realized')

 

checkout the links for more info https://experienceleague.adobe.com/en/docs/experience-platform/dashboards/query 

https://experienceleaguecommunities.adobe.com/t5/real-time-customer-data-platform/profile-snapshot-a... 

 

 

Avatar

Community Advisor

@YashwanthPo Additionaly, you can run a query to see why the profile didn't enter the journey.

https://experienceleague.adobe.com/en/docs/journey-optimizer/using/reporting/reports/query-examples

Thanks, Sathees