Verify Enhanced Smart Tag Training Has Run | Community
Skip to main content
August 10, 2019
Solved

Verify Enhanced Smart Tag Training Has Run

  • August 10, 2019
  • 1 reply
  • 1935 views

We’ve configured smart content services on our AEM 6.4.5 environment, and are utilizing smart tags. Our next step we’re attempting to take is utilizing enhanced smart tags for some of our company data points. We’ve gone thru the steps listed on the page below to attempt to do some training, but are unsure where to validate that the training has actually occurred.

Adobe Experience Manager Help | Enhanced Smart Tags

We have a folder on 32 tif files that we’ve tagged, and after running the Smart Tag Training workflow against that folder we don’t see any results showing up in the asset report. Is there somewhere in the system to validate that the training workflow actually ran against the assets other then just looking at the reporting?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by suchawla

Hi Ben,

If you are checking on periodic training.

Enable debug logging on com.day.cq.dam.similaritysearch and check on the same. It does have info level messages:

log.info("Periodic tagging job started...");

log.info("Periodic tagging job finished and took {} ms", System.currentTimeMillis() - start);

Further you can confirm auto-tagging schedule by navigating to /system/console/components/com.day.cq.dam.similaritysearch.internal.scheduler.PeriodicAutoTaggingJob and checking the

Properties which lists scheduler.expression in cron job format.

However if you have running through on-demand workflow then too it should log messages at debug level as checked from

com.day.cq.dam.similaritysearch.internal.impl.SimilaritySearchServiceImpl.java

log.debug("Request training for tags: [{}]", Arrays.toString(tagIds));

log.debug("Successfully requested training.");

Hence please validate accordingly and confirm by setting debug level logs for com.day.cq.dam.similaritysearch.

Cheers,

Sumeet Chawla.

1 reply

suchawlaAdobe EmployeeAccepted solution
Adobe Employee
August 11, 2019

Hi Ben,

If you are checking on periodic training.

Enable debug logging on com.day.cq.dam.similaritysearch and check on the same. It does have info level messages:

log.info("Periodic tagging job started...");

log.info("Periodic tagging job finished and took {} ms", System.currentTimeMillis() - start);

Further you can confirm auto-tagging schedule by navigating to /system/console/components/com.day.cq.dam.similaritysearch.internal.scheduler.PeriodicAutoTaggingJob and checking the

Properties which lists scheduler.expression in cron job format.

However if you have running through on-demand workflow then too it should log messages at debug level as checked from

com.day.cq.dam.similaritysearch.internal.impl.SimilaritySearchServiceImpl.java

log.debug("Request training for tags: [{}]", Arrays.toString(tagIds));

log.debug("Successfully requested training.");

Hence please validate accordingly and confirm by setting debug level logs for com.day.cq.dam.similaritysearch.

Cheers,

Sumeet Chawla.