Python
import requests url = "https://{FUSION HOST}/api/collections/{collection}/partitions/_scheduledCallback" response = requests.post(url) print(response.json())
Perform scheduled background maintenance on partitions for a given collection, such as preemptively creating partitions and deleting expired partitions.
Collection ID.
Was this page helpful?