dennis zhuang
dennis zhuang
Refer to https://docs.greptime.com/user-guide/python-coprocessor/io#input For example, a script like: ```python @coprocessor(returns=['value']) def add(**params) -> vector[i64]: a = params['a'] b = params['b'] return int(a) + int(b) ``` We can call this coprocessor...
The link to GreptimeDB functions is wrong in https://docs.greptime.com/reference/sql/functions#greptimedb-functions It's linked to the python functions, not the GreptimeDB functions. We have to find some way to list all the SQL...
We'd better add a trouble shooting guide for users. For example, how to get the greptimedb observability data, etc.
不仅仅是内容,样式,布局,行间距,字体,颜色搭配,blabla,好多东西缺失 :face_with_peeking_eye: [Slack Message](https://greptime.slack.com/archives/C04UC12PWUD/p1700727062508819?thread_ts=1700726172.930799&cid=C04UC12PWUD) "Not only the content, but also the style, layout, line spacing, font, color coordination, and many other things are missing."
Looks like we have lots of broken links in our documents, we should add some systems to monitor it.
Since the dashboard is embed in greptimedb at HTTP://localhost:4000/dashbaord I think we can improve the https://docs.greptime.com/getting-started/visualize-data Use the embed dashboard for example, and display the [getting started data](https://docs.greptime.com/getting-started/add-time-series-data).
### What problem does the new feature solve? Since v0.8, GreptimeDB supports database TTL just like: ```sql CREATE DATABASE test with(ttl='7d'); ``` which means all the tables in this database...
### What type of bug is this? Unexpected error ### What subsystems are affected? Query Engine ### Minimal reproduce step For example: ```sql CREATE VIEW test as SELECT SELECT ts,...
### What type of enhancement is this? API improvement ### What does the enhancement do? We already have backup & restore tools to backup and restore the database when something...