Delete Acceleration

LLM-friendly URL
POST
https://api.luzmo.com/0.1.0/acceleration

Accelerations represent the configuration for Warped datasets stored by Luzmo in an analytics-optimized data warehouse (for more info, check out this Academy article . When you create an Acceleration, and associate with a dataset (Securable), a scheduled job will be created, which periodically loads data from the source into our system. This can happen in 3 ways:

  • Full Sync: The whole table is queried from the source, and replaced in Luzmo,

  • Delta Sync: After an initial full sync, only the changes since the last synchronization are fetched.

  • Full-Delta Sync: After an initial full sync, only the changes since the last synchronization are fetched, but for every Xth sync, a Full sync is performed.

To use Delta sync or Full-Delta sync, your dataset has to contain some columns for tracking data changes effectively (more info in the Academy article or in the Create Acceleration section).

Delete an Acceleration, which removes the scheduled job and associated dataset data stored in Luzmo. Subsequent queries to the dataset will be routed to the actual source.

Parameters
Expand all Reset
id *UUIDrequired

The unique identifier of the entity

Can be executed by:
Securable Modifier
Can be associated to:
Securable
Did this page help you?
Yes No
Language
Shell
Node
Java
.NET
Python
PHP
Install
npm install @luzmo/nodejs-sdk
Delete an acceleration by its ID.
Example Response
200
400
500
{
  "id": "123e4567-e89b-12d3-a456-426614174000"
}