I’m creating task using TaskService using below snippet.
**Task task = taskService.newTask();**
** task.setName(taskName);**
** task.setParentTaskId(taskParentId);**
** task.setDescription(taskDescription);**
** task.setCategory(taskCategory);**
** taskService.saveTask(task);**
I have got a requirement where I need to create multiple tasks(1000) but taskService.saveTask() is taking too much time to create these many tasks. Tried exploring the Activiti APIs but couldn’t find any API related to bulk task creation. Is there any support for bulk task creation? If not, can someone share an alternative to handle this scenario?