Timeplus Cloud Private Beta 1
我们很高兴启动第一个邀请制测试版的TimePlus Cloud。 很多很酷的功能和无限的可能性。 我们将不时更新测试版,并在此页面列出关键的增强措施。
(2022年)
8/1 周
最后一周发布在 Private Beta 1。 从8月8日开始,我们正在过渡到Private Beta 2。 客户将被批量迁移到新的环境批次。 访问测试版 租户的网址已从 https://TENANT.beta.timeplus.com 更改 为 https://beta.timeplus.cloud/TENANT
-
流引擎
- Added 2 geo related functions: point_in_polygon and geo_distance.
-
源、 汇、 API 和 SDK
- 更新“源”页面的布局,以便为源定义留出更多空间。
-
界面改进
- 如果查询正在运行,在查询选项卡上添加一个视觉指示器。
- 更新错误或页面未找到的屏幕。
7/25周
- 流引擎
- Enhanced json_extract_array function to return clean string values.
选择 '{"a":1,"tags":["x","y"]}' 为raw, json_extract_array(raw:tags)
现在返回[ "x", "y" ]
, 而不是[ "\"x\"", "\"y\"" ]
在以前的版本中。 - Added a new shortcut to access json arrays without having to use the json_extract_array function. 上面的查询可以简化为
选择 '{"a":1, "tags":["x","y"]}" 为原生, raw:tags[*]
- 精炼打字系统和逻辑比较返回
bool
而不是uint8
- Enhanced json_extract_array function to return clean string values.
- 源、 汇、 API 和 SDK
- 所有计时器汇现在都使用
{{.columnName}}
语法来访问汇主标题或正文中的列值。 支持数字和其他原始类型(以前只支持字符串列)。 - 修复一个取消查询的问题可以标记为已完成。
- 修复了一个问题,如果查询完成得太快,则EPS(每 秒事件)不会显示。
- 所有计时器汇现在都使用
- 界面改进
- 在“发送数据到...”对话框中添加了一个新选项,以便将结果发送到Timeplus租户中的一个流中。
- 当您创建一个新的查询选项卡时显示运行中查询的数量。
- 增强字体颜色。
- 增强图表颜色。
周为7/18
-
流引擎
- 精炼 实际化视图的行为,使其与其他Timeplus查询保持一致。
SELECT * FROM table(a_possiblealized_view)
将获得所有过去的结果,而不是最近的结果。 - Added the count_if function and unique_exact_if function to count the number of rows or unique value matching certain conditions.
- Added json_extract_keys function to get the keys for the JSON map object.
- Added the to_bool function to convert other types to
bool
- Added is_nan, is_infinite, is_finite functions to detect the edge cases when a number column contains infinite numbers, etc.
- Added to_type_name function to show the data type name, mainly for troubleshooting purposes.
- 精炼 实际化视图的行为,使其与其他Timeplus查询保持一致。
-
源、 汇、 API 和 SDK
- 更新 Python SDK 以显示指标
-
界面改进
- 添加新的可视化类型:条形图和串流表
- 增强汇的管理页面,以显示汇的状态、发送的消息数量、失败计数等。
- 增强SQL编辑器以突出显示开始/结束(),[]。 这对于嵌套函数调用的复杂SQL非常有用。