Cancels all running queries on a cube.
curl --request PATCH \
--url http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/runningimport requests
url = "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/running"
response = requests.patch(url)
print(response.text)const options = {method: 'PATCH'};
fetch('http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/running', 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/{cubeName}/running",
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/{cubeName}/running"
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/{cubeName}/running")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/running")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
response = http.request(request)
puts response.read_bodyCancels all running queries on a cube.
Terminates the execution of all currently running queries on the specified cube.
PATCH
/
activeviam
/
pivot
/
rest
/
v10
/
cube
/
query
/
{cubeName}
/
running
Cancels all running queries on a cube.
curl --request PATCH \
--url http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/runningimport requests
url = "http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/running"
response = requests.patch(url)
print(response.text)const options = {method: 'PATCH'};
fetch('http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/running', 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/{cubeName}/running",
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/{cubeName}/running"
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/{cubeName}/running")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:9090/activeviam/pivot/rest/v10/cube/query/{cubeName}/running")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Patch.new(url)
response = http.request(request)
puts response.read_bodyPath Parameters
The name of the cube
Response
All running queries successfully cancelled
Was this page helpful?
Cancels a running query by its ID on a specific cube (Experimental).
Previous
Queries the cube using an MDX query (either SELECT or DRILLTHROUGH).
Next
⌘I