Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.

Mass Terminate Process Instances

Avatar

Former Community Member

Is it possible to Terminate Process Instances On Mass.  i.e. 100,000+ Process Instances in one go?

I'm guessing that I'm going to need to break into the java API, unless someone can suggest otherwise:

http://help.adobe.com/en_US/livecycle/9.0/programLC/help/index.htm?content=001110.html

1 Reply

Avatar

Level 10

There are few ways to do that:

  1. You can use Java API (as you mentioned); can be called within a Java Program
  2. Use WebService API; can be called from within any server side program (e.g. .Net /JSP/Servlet/PHP etc)
  3. You may directly update the status of each process in Database (Highly not-recommended)

PS: If you want to permanently delete the records from Database, use Process Purge Tool. I hope this will work only on COMPLETED process instances.

Nith