Cancels a running query by its ID on a specific cube (Experimental).
curl --request PATCH \
--url http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}import requests
url = "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}"
response = requests.patch(url)
print(response.text)const options = {method: 'PATCH'};
fetch('http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "9090",
CURLOPT_URL => "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}"
req, _ := http.NewRequest("PATCH", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
response = http.request(request)
puts response.read_bodyCancels a running query by its ID on a specific cube (Experimental).
Terminates the execution of a specific query identified by its query ID on the specified cube.
The query must be running on the specified cube for the cancellation to succeed.
Experimental: This endpoint is experimental and may change in future releases.
PATCH
/
activeviam
/
pivot
/
rest
/
v10
/
cube
/
query
/
running
/
{cubeName}
/
{queryId}
Cancels a running query by its ID on a specific cube (Experimental).
curl --request PATCH \
--url http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}import requests
url = "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}"
response = requests.patch(url)
print(response.text)const options = {method: 'PATCH'};
fetch('http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "9090",
CURLOPT_URL => "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}"
req, _ := http.NewRequest("PATCH", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:9090/activeviam/pivot/rest/v10/cube/query/running/{cubeName}/{queryId}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
response = http.request(request)
puts response.read_bodyWas this page helpful?
⌘I