SINK
All tql scripts must end with one of the sink functions.
The basic SINK function might be INSERT() which write the incoming records onto machbase-neo database. CHART() function can render various charts with incoming records. JSON() and CSV() encode incoming data into proper formats.

INSERT()
Syntax: INSERT( [bridge(),] columns..., table() [, tag()] )
INSERT() stores incoming records into specified database table by an ‘INSERT’ statement for each record.
bridge()bridge(’name’) optional.columnsstring column list.table()table(’name’) specify the destination table name.tag()tag(’name’) optional, applicable only to tag tables.
Write records to machbase that contains tag name.
| |
Write records to machbase with same tag name by adding “name” field by PUSHVALUE().
| |
Write records to machbase with same tag name by using tag() option if the destination is a tag table.
| |
Insert records into bridged database.
| |
APPEND()
Syntax: APPEND( table() )
APPEND() stores incoming records into specified database table via the ‘append’ method of machbase-neo.
table()table(string) specify destination table
| |
CSV()
Syntax: CSV( [tz(), timeformat(), precision(), rownum(), heading(), delimiter(), nullValue() ] )
Makes the records of the result in CSV format. The values of the records become the fields of the CSV lines.
The end of the data is identified by the last two consecutive newline characters (\n\n).
For example, if a record was {key: k, value:[v1,v2]}, it generates an CSV records as v1,v2.
tztz(name) time zone, default istz('UTC')timeformattimeformat(string) specify the format how represents datetime fields, default istimeformat('ns')rownumrownum(boolean) adds rownum columnprecisionprecision(int) specify precision of float fields,precision(-1)means no restriction,precision(0)converts to integerheadingheading(boolean) add fields names as the first rowdelimiterdelimiter(string) specify fields separator other than the default comma(,).nullValue()specify substitution string for the NULL value, default isnullValue('NULL'). Since v8.0.14substituteNullsubstitute(string) specify substitution string for the NULL value, default issubstituteNull('NULL'). (deprecated, replaced bynullValue())cache()cache result data. see Cache Result Data for details. Since v8.0.43
| |
1,10
2,20
3,30 | |
x,x10
1,10
2,20
3,30 | |
x|x10
1|10
2|20
3|30 | |
A|123
B|***
C|234JSON()
Syntax: JSON( [transpose(), tz(), timeformat(), precision(), rownum(), rowsFlatten(), rowsArray() ] )
Generates JSON results from the values of the records.
transposetranspose(boolean) transpose rows and columns, it is useful that specifyingtranspose(true)for the most of chart libraries.tztz(name) time zone, default istz('UTC').timeformattimeformat(string) specify the format how represents datetime fields, default istimeformat('ns').rownum*rownum(boolean)` adds rownum column.precisionprecision(int) specify precision of float fields,precision(-1)means no restriction,precision(0)converts to integer.rowsFlattenrowsFlatten(boolean) reduces the array dimension of the rows field in the JSON object. IfJSON()hastranspose(true)androwsFlatten(true)together, it ignoresrowsFlatten(true)and onlytranspose(true)affects on the result. Since v8.0.12rowsArrayrowsArray(boolean) produces JSON that contains only array of object for each record. TherowsArray(true)has higher priority thantranspose(true)androwsFlatten(true). Since v8.0.12cache()cache result data. see Cache Result Data for details. Since v8.0.43
| |
{
"data": {
"columns": [ "x" ],
"types": [ "double" ],
"rows": [ [ 1, 10 ], [ 2, 20 ], [ 3, 30 ] ]
},
"success": true,
"reason": "success",
"elapse": "228.541µs"
} | |
{
"data": {
"columns": [ "x", "x10" ],
"types": [ "double", "double" ],
"cols": [ [ 1, 2, 3 ], [ 20, 30, 40 ] ]
},
"success": true,
"reason": "success",
"elapse": "121.375µs"
} | |
{
"data": {
"columns": [ "x", "x10" ],
"types": [ "double", "double" ],
"rows": [ 1, 10, 2, 20, 3, 30 ]
},
"success": true,
"reason": "success",
"elapse": "130.916µs"
} | |
{
"data": {
"columns": [ "x", "x10" ],
"types": [ "double", "double" ],
"rows": [ { "x": 1, "x10": 10 }, { "x": 2, "x10": 20 }, { "x": 3, "x10": 30 } ]
},
"success": true,
"reason": "success",
"elapse": "549.833µs"
}NDJSON()
Syntax: NDJSON( [tz(), timeformat(), rownum()] )
Since v8.0.33
Generates NDJSON results from the values of the records.
NDJSON (Newline Delimited JSON) is a format for streaming JSON data where each line is a valid JSON object. This is useful for processing large datasets or streaming data because it allows you to handle one JSON object at a time.
The end of the data is identified by the last two consecutive newline characters (\n\n).
tztz(name) time zone, default istz('UTC').timeformattimeformat(string) specify the format how represents datetime fields, default istimeformat('ns').rownum*rownum(boolean)` adds rownum column.cache()cache result data. see Cache Result Data for details. Since v8.0.43
| |
{"NAME":"neo_load1","ROWNUM":1,"TIME":"2024-09-06 14:46:19.852","VALUE":4.58}
{"NAME":"neo_load1","ROWNUM":2,"TIME":"2024-09-06 14:46:22.853","VALUE":4.69}
{"NAME":"neo_load1","ROWNUM":3,"TIME":"2024-09-06 14:46:25.852","VALUE":4.69}MARKDOWN()
Generates a table in markdown format or HTML.
Syntax: MARKDOWN( [ options... ] )
tz(string)time zone, default istz('UTC')timeformat(string)specify the format how represents datetime fields, default istimeformat('ns')html(boolean)produce result by HTML renderer, defaultfalserownum(boolean)show rownum columnprecisionprecision(int) specify precision of float fields,precision(-1)means no restriction,precision(0)converts to integer.brief(boolean)omit result rows,brief(true)is equivalent withbriefCount(5)briefCount(limit int)omit result rows if the records exceeds the given limit, no omission if limit is0
| |
|column0 | column1 |
|:-------|:---------|
| 10 | The first line |
| 20 | 2nd line |
| 30 | Third line |
| 40 | 4th line |
| 50 | The last is 5th | | |
|column0 | column1 |
|:-------|:---------|
| 10 | The first line |
| 20 | 2nd line |
| ... | ... |
> Total 5 records | |
| column0 | column1 |
|---|---|
| 10 | The first line |
| 20 | 2nd line |
| … | … |
Total 5 records
HTML()
Syntax: HTML(templates...)
Since v8.0.52
Generates an HTML document using the provided templates.
For detailed usage and examples, refer to the HTML section.
TEXT()
Syntax: TEXT(templates...)
Since v8.0.52
Generates a text document using the provided templates.
It functions similarly to HTML(), but does not perform HTML escaping on the data.
DISCARD()
Syntax: DISCARD()
Since v8.0.7
DISCARD() silently ignore all records as its name implies, so that no output generates.
| |
CHART()
Syntax: CHART()
Since v8.0.8
Generates chart using Apache echarts.
Refer to CHART() examples for the various usages.