-
Notifications
You must be signed in to change notification settings - Fork 76
Texera Web API Endpoints
Zuozhi Wang edited this page Aug 29, 2017
·
1 revision
HTTP Method | URL | Description |
---|---|---|
POST | /queryplan/execute |
Executing a QueryPlan where the body of the POST request is as described here
|
POST | /planstore |
Adding a plan to the PlanStore
|
GET | /planstore |
Getting all the query plans in the PlanStore
|
GET | /planstore/{plan_name} |
Getting the query plan associated with the URL parameter plan_name in the PlanStore
|
PUT | /planstore/{plan_name} |
Updating the query plan associated with the URL parameter plan_name with the information presented in the body of the request |
DELETE | /planstore/{plan_name} |
Deleting the query plan associated with the URL parameter plan_name in the PlanStore
|