TD Client
The TD-API REST API has a series of wrapper libraries that make it easy to leverage the TD API natively.
The basic functions enabled in each TD Client library can be found below. For specific implimentation syntax, examples, and language specific API Reference, please select the programming language below.
Descripton | API Call (or REST Call) |
---|---|
return a list of databases | database/list |
return a list of jobs | job/list |
show a table | table/show/:database/:table |
return a list of tables | table/list/:database |
swap the content of two tables | swap/:database/:table1/:table2 |
issue a query | job/issue/:type/:database |
show the status of a specific job | job/status/:job_id |
show status and logs of a specific job | job/show/:job_id |
kill a running job | job/kill/:job_id |
returns the result of a specific job | job/result/:job_id?format=msgpack.gz |