MaterializedView
Data
Trigger an async materialized view refresh
Trigger an asynchronous refresh job for materialized view id. Returns a job ID for tracking.
post/v1/materialized_view/{id}/refresh
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
{
"src_version": 0,
"source_task_size": 5,
"cluster": "cluster",
"identity": {
"api_key": "api_key",
"auth_token": "auth_token"
},
"manifest": "manifest",
"context": {
"key": "context"
},
"id": [
"id",
"id"
],
"max_rows_per_fragment": 6,
"intra_applier_concurrency": 5,
"output_limit": 2,
"concurrency": 1
}Response
Refresh job accepted
Example response
{
"job_id": "job_id",
"context": {
"key": "context"
}
}