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.columns
string 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
.
tz
tz(name) time zone, default istz('UTC')
timeformat
timeformat(string) specify the format how represents datetime fields, default istimeformat('ns')
rownum
rownum(boolean) adds rownum columnprecision
precision(int) specify precision of float fields,precision(-1)
means no restriction,precision(0)
converts to integerheading
heading(boolean) add fields names as the first rowdelimiter
delimiter(string) specify fields separator other than the default comma(,
).nullValue()
specify substitution string for the NULL value, default isnullValue('NULL')
. Since v8.0.14substituteNull
substitute(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|234
JSON()
Syntax: JSON( [transpose(), tz(), timeformat(), precision(), rownum(), rowsFlatten(), rowsArray() ] )
Generates JSON results from the values of the records.
transpose
transpose(boolean) transpose rows and columns, it is useful that specifyingtranspose(true)
for the most of chart libraries.tz
tz(name) time zone, default istz('UTC')
.timeformat
timeformat(string) specify the format how represents datetime fields, default istimeformat('ns')
.rownum
*rownum(boolean)` adds rownum column.precision
precision(int) specify precision of float fields,precision(-1)
means no restriction,precision(0)
converts to integer.rowsFlatten
rowsFlatten(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.12rowsArray
rowsArray(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
).
tz
tz(name) time zone, default istz('UTC')
.timeformat
timeformat(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, defaultfalse
rownum(boolean)
show rownum columnprecision
precision(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
templates
: One or more template strings orfile(path)
references. Each argument can be a direct template string or a file path usingfile(path)
to load the template from a file. The template content uses the Go HTML template language. For more information, see the template documentation.cache()
cache result data. see Cache Result Data for details.
Within the template, you have access to a value object that exposes the current record’s field values and row number.
The following fields and properties are available within the HTML template context:
Field | Description |
---|---|
.Num | The current record’s row number |
.V | Map of field names to their values |
.Values | Array of all field values in the record |
.Value idx | Value of the field at the specified index |
.Column idx | Name of field |
.Columns | Array of all field names in the record |
.IsFirst | true if this is the first record |
.IsLast | true if this is the last record |
.V
is a map object containing field names as keys and their corresponding values.
|
|

.Value
is a function that accesses the fields of the current record by their index.
|
|

.Values
is an array containing all field values of the current record.
|
|

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.