You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change createQuery handler POST /ui/queries
Add payload param: asyncExec to the , reflect changes in openapi spec.
Keep existing functionality of sync execution when asyncExec=false,
Run query asynchronously when asyncExec=true
Add for future use DELETE /ui/queries handler, aborts running query by query_id
or it can be PATCH /ui/queries, expecting additional payload arg: abort=true/false
Since we implemented async execution earlier in this PR https://github.com/Embucket/embucket/pull/1637, and closed issue https://github.com/Embucket/embucket/issues/1609 we need to support it in UI as well.
Proposal
createQueryhandlerPOST /ui/queriesAdd payload param:
asyncExecto the , reflect changes in openapi spec.Keep existing functionality of sync execution when
asyncExec=false,Run query asynchronously when
asyncExec=trueDELETE /ui/querieshandler, aborts running query by query_idor it can be
PATCH /ui/queries, expecting additional payload arg:abort=true/false