Best way to delete history

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2015 03:30 AM
I created 100K process records in the H2 database and want to delete. I saw a post to use the deleteHistoricProcessInstance() API. So I wrote the following code
<blockcode>
HistoryService historyService = processEngine.getHistoryService();
HistoricActivityInstanceQuery haiq = historyService.createHistoricActivityInstanceQuery().activityId("testStartEvent");
List<HistoricActivityInstance> hain = haiq.list();
String processInstanceID;
for (int inx=0;inx<hain.size();inx++) {
processInstanceID = hain.get(inx).getProcessInstanceId();
historyService.deleteHistoricProcessInstance(processInstanceID);
}
</blockcode>
This has been running for about an hour. Is there a better way to do this? Should I just delete records with a date range or something?
<blockcode>
HistoryService historyService = processEngine.getHistoryService();
HistoricActivityInstanceQuery haiq = historyService.createHistoricActivityInstanceQuery().activityId("testStartEvent");
List<HistoricActivityInstance> hain = haiq.list();
String processInstanceID;
for (int inx=0;inx<hain.size();inx++) {
processInstanceID = hain.get(inx).getProcessInstanceId();
historyService.deleteHistoricProcessInstance(processInstanceID);
}
</blockcode>
This has been running for about an hour. Is there a better way to do this? Should I just delete records with a date range or something?
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2015 11:09 AM
You are loading ALL 100K objects in memory. That is not going to scale.
That is why paging was invented. The query api supports it.
That is why paging was invented. The query api supports it.
