Background Jobs - Run On Demand Table Maintenance
Note
This API is in preview.
Run on-demand table maintenance job instance.
Required Delegated Scopes
Lakehouse.Execute.All or Item.Execute.All
Microsoft Entra supported identities
This API supports the Microsoft identities listed in this section.
Identity | Support |
---|---|
User | Yes |
Service principal | No |
Managed identities | No |
Interface
POST https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/lakehouses/{lakehouseId}/jobs/instances?jobType={jobType}
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
lakehouse
|
path | True |
string uuid |
The Lakehouse item ID. |
workspace
|
path | True |
string uuid |
The workspace ID. |
job
|
query | True |
string |
TableMaintenance job type. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
executionData | True |
Execution data to configure the table maintenance job. |
Responses
Name | Type | Description |
---|---|---|
202 Accepted |
Request accepted, job execution is in progress. Headers
|
|
Other Status Codes |
Common error codes:
|
Examples
Run table maintenance with optimize enabled and vacuum disabled.
Sample request
POST https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/lakehouses/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances?jobType=TableMaintenance
{
"executionData": {
"tableName": "table1",
"optimizeSettings": {}
}
}
Sample response
Location: https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/items/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances/f2d65699-dd22-4889-980c-15226deb0e1b
Retry-After: 60
Run table maintenance with optimize Z-Order and vacuum enabled for schema enabled lakehouse.
Sample request
POST https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/lakehouses/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances?jobType=TableMaintenance
{
"executionData": {
"tableName": "table1",
"schemaName": "dbo",
"optimizeSettings": {
"vOrder": true,
"zOrderBy": [
"tipAmount"
]
},
"vacuumSettings": {
"retentionPeriod": "7:01:00:00"
}
}
}
Sample response
Location: https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/items/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances/f2d65699-dd22-4889-980c-15226deb0e1b
Retry-After: 60
Run table maintenance with optimize Z-Order and vacuum enabled.
Sample request
POST https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/lakehouses/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances?jobType=TableMaintenance
{
"executionData": {
"tableName": "table1",
"optimizeSettings": {
"vOrder": true,
"zOrderBy": [
"tipAmount"
]
},
"vacuumSettings": {
"retentionPeriod": "7:01:00:00"
}
}
}
Sample response
Location: https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/items/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances/f2d65699-dd22-4889-980c-15226deb0e1b
Retry-After: 60
Definitions
Name | Description |
---|---|
Error |
The error related resource details object. |
Error |
The error response. |
Error |
The error response details. |
Optimize |
Table maintenance optimization settings. |
Run |
Run on demand lakehouse table maintenance instance payload |
Table |
Run on demand lakehouse table maintenance instance payload |
Vacuum |
Table maintenance vacuum settings. |
ErrorRelatedResource
The error related resource details object.
Name | Type | Description |
---|---|---|
resourceId |
string |
The resource ID that's involved in the error. |
resourceType |
string |
The type of the resource that's involved in the error. |
ErrorResponse
The error response.
Name | Type | Description |
---|---|---|
errorCode |
string |
A specific identifier that provides information about an error condition, allowing for standardized communication between our service and its users. |
message |
string |
A human readable representation of the error. |
moreDetails |
List of additional error details. |
|
relatedResource |
The error related resource details. |
|
requestId |
string |
ID of the request associated with the error. |
ErrorResponseDetails
The error response details.
Name | Type | Description |
---|---|---|
errorCode |
string |
A specific identifier that provides information about an error condition, allowing for standardized communication between our service and its users. |
message |
string |
A human readable representation of the error. |
relatedResource |
The error related resource details. |
OptimizeSettings
Table maintenance optimization settings.
Name | Type | Description |
---|---|---|
vOrder |
boolean |
The V-Order settings. True - Enabled, False - Disabled. |
zOrderBy |
string[] |
A list of column names to Z-Order the data by. If not provided, Z-Ordering isn't applied. |
RunOnDemandTableMaintenanceRequest
Run on demand lakehouse table maintenance instance payload
Name | Type | Description |
---|---|---|
executionData |
Execution data to configure the table maintenance job. |
TableMaintenanceExecutionData
Run on demand lakehouse table maintenance instance payload
Name | Type | Description |
---|---|---|
optimizeSettings |
Configures the optimization settings of the maintenance job. To skip table optimization, leave this parameter empty. |
|
schemaName |
string |
Name of the schema under which the table is created. This property is applicable only for a schema enabled Lakehouse. Max length of 128 character alphanumeric string with underscores. |
tableName |
string |
Name of the table to run maintenance on. Max length of 256 character alphanumeric string with underscores. |
vacuumSettings |
Configures the vacuum settings of the maintenance job. To skip table vacuum, leave this parameter empty. |
VacuumSettings
Table maintenance vacuum settings.
Name | Type | Description |
---|---|---|
retentionPeriod |
string |
Overrides the default retention period. Unreferenced files or data files associated with delta table versions older than the specified retention period are removed. This value should follow the pattern of |