Table
Data
Trigger an async column backfill job
Trigger an asynchronous backfill job for a computed column on table id. The column must be a virtual (UDF-backed) column. Returns a job ID for tracking.
post/v1/table/{id}/backfill_column
Path parameters
idstring required
string identifier of an object in a namespace, following the Lance Namespace spec. When the value is equal to the delimiter, it represents the root namespace. For example, v1/namespace/$/list performs a ListNamespace on the root namespace.
Query parameters
delimiterstring
An optional delimiter of the string identifier, following the Lance Namespace spec. When not specified, the $ delimiter must be used.
Request body
Example request
{
"max_checkpoint_size": 5,
"cluster": "cluster",
"min_checkpoint_size": 1,
"read_version": 2,
"manifest": "manifest",
"column": "column",
"branch": "branch",
"concurrency": 0,
"num_frags": 9,
"checkpoint_size": 3,
"commit_granularity": 2,
"task_size": 7,
"batch_checkpoint_flush_interval_seconds": 5.637376656633329,
"identity": {
"api_key": "api_key",
"auth_token": "auth_token"
},
"context": {
"key": "context"
},
"where": "where",
"id": [
"id",
"id"
],
"intra_applier_concurrency": 6
}Response
Backfill job accepted
Example response
{
"job_id": "job_id",
"context": {
"key": "context"
}
}