Solution: Unable to delete rollup job due to spaces in job ID

Hi,

Posting solution for below issue.

Solution:

  1. Get all tasks.

GET /_tasks

  1. Identify rollup task.

ctrl + f > rollup

  1. Kill the roll up task by task id.

Note: Dont copy value from "id" field. Use entire Id mentioned after "tasks" field.
e.g: "tasks": { "AlphaNumeric values": {

POST /_tasks/task_id/_cancel

  1. Now verify running rollup jobs.

GET /_rollup/job/_all

Thanks,
Akshay