Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
a36be0a0
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a36be0a0
编写于
5月 10, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
差异文件
Merge branch '3.0' of
https://github.com/taosdata/TDengine
into enh/tsdb_optimize
上级
c748e4af
c777733b
变更
13
展开全部
隐藏空白更改
内联
并排
Showing
13 changed file
with
936 addition
and
148 deletion
+936
-148
docs/en/05-get-started/03-package.md
docs/en/05-get-started/03-package.md
+2
-0
docs/en/07-develop/03-insert-data/_rust_schemaless.mdx
docs/en/07-develop/03-insert-data/_rust_schemaless.mdx
+3
-0
docs/en/14-reference/03-connector/04-java.mdx
docs/en/14-reference/03-connector/04-java.mdx
+340
-73
docs/en/14-reference/03-connector/06-rust.mdx
docs/en/14-reference/03-connector/06-rust.mdx
+5
-0
docs/examples/java/pom.xml
docs/examples/java/pom.xml
+1
-1
docs/examples/java/src/main/java/com/taos/example/SubscribeDemo.java
...es/java/src/main/java/com/taos/example/SubscribeDemo.java
+3
-1
docs/examples/rust/nativeexample/examples/schemaless_insert_json.rs
...les/rust/nativeexample/examples/schemaless_insert_json.rs
+74
-0
docs/examples/rust/nativeexample/examples/schemaless_insert_line.rs
...les/rust/nativeexample/examples/schemaless_insert_line.rs
+78
-0
docs/examples/rust/nativeexample/examples/schemaless_insert_telnet.rs
...s/rust/nativeexample/examples/schemaless_insert_telnet.rs
+80
-0
docs/zh/05-get-started/03-package.md
docs/zh/05-get-started/03-package.md
+2
-0
docs/zh/07-develop/03-insert-data/_rust_schemaless.mdx
docs/zh/07-develop/03-insert-data/_rust_schemaless.mdx
+3
-0
docs/zh/08-connector/14-java.mdx
docs/zh/08-connector/14-java.mdx
+340
-73
docs/zh/08-connector/26-rust.mdx
docs/zh/08-connector/26-rust.mdx
+5
-0
未找到文件。
docs/en/05-get-started/03-package.md
浏览文件 @
a36be0a0
...
...
@@ -208,6 +208,8 @@ The following `launchctl` commands can help you manage TDengine service:
-
Check TDengine Server status:
`sudo launchctl list | grep taosd`
-
Check TDengine Server status details:
`launchctl print system/com.tdengine.taosd`
:::info
-
Please use
`sudo`
to run
`launchctl`
to manage _com.tdengine.taosd_ with administrator privileges.
-
The administrator privilege is required for service management to enhance security.
...
...
docs/en/07-develop/03-insert-data/_rust_schemaless.mdx
0 → 100644
浏览文件 @
a36be0a0
```rust
{{#include docs/examples/rust/nativeexample/examples/schemaless_insert_line.rs}}
```
docs/en/14-reference/03-connector/04-java.mdx
浏览文件 @
a36be0a0
此差异已折叠。
点击以展开。
docs/en/14-reference/03-connector/06-rust.mdx
浏览文件 @
a36be0a0
...
...
@@ -11,6 +11,7 @@ import TabItem from '@theme/TabItem';
import Preparition from "./_preparation.mdx"
import RustInsert from "../../07-develop/03-insert-data/_rust_sql.mdx"
import RustBind from "../../07-develop/03-insert-data/_rust_stmt.mdx"
import RustSml from "../../07-develop/03-insert-data/_rust_schemaless.mdx"
import RustQuery from "../../07-develop/04-query-data/_rust.mdx"
[![Crates.io](https://img.shields.io/crates/v/taos)](https://crates.io/crates/taos) ![Crates.io](https://img.shields.io/crates/d/taos) [![docs.rs](https://img.shields.io/docsrs/taos)](https://docs.rs/taos)
...
...
@@ -232,6 +233,10 @@ There are two ways to query data: Using built-in types or the [serde](https://se
<RustBind />
#### Schemaless Write
<RustSml />
### Query data
<RustQuery />
...
...
docs/examples/java/pom.xml
浏览文件 @
a36be0a0
...
...
@@ -22,7 +22,7 @@
<dependency>
<groupId>
com.taosdata.jdbc
</groupId>
<artifactId>
taos-jdbcdriver
</artifactId>
<version>
3.
1.0
</version>
<version>
3.
2.1
</version>
</dependency>
<!-- ANCHOR_END: dep-->
<dependency>
...
...
docs/examples/java/src/main/java/com/taos/example/SubscribeDemo.java
浏览文件 @
a36be0a0
package
com.taos.example
;
import
com.taosdata.jdbc.tmq.ConsumerRecord
;
import
com.taosdata.jdbc.tmq.ConsumerRecords
;
import
com.taosdata.jdbc.tmq.TMQConstants
;
import
com.taosdata.jdbc.tmq.TaosConsumer
;
...
...
@@ -64,7 +65,8 @@ public class SubscribeDemo {
consumer
.
subscribe
(
Collections
.
singletonList
(
TOPIC
));
while
(!
shutdown
.
get
())
{
ConsumerRecords
<
Meters
>
meters
=
consumer
.
poll
(
Duration
.
ofMillis
(
100
));
for
(
Meters
meter
:
meters
)
{
for
(
ConsumerRecord
<
Meters
>
recode
:
meters
)
{
Meters
meter
=
recode
.
value
();
System
.
out
.
println
(
meter
);
}
}
...
...
docs/examples/rust/nativeexample/examples/schemaless_insert_json.rs
0 → 100644
浏览文件 @
a36be0a0
use
taos_query
::
common
::
SchemalessPrecision
;
use
taos_query
::
common
::
SchemalessProtocol
;
use
taos_query
::
common
::
SmlDataBuilder
;
use
crate
::
AsyncQueryable
;
use
crate
::
AsyncTBuilder
;
use
crate
::
TaosBuilder
;
async
fn
put_json
()
->
anyhow
::
Result
<
()
>
{
// std::env::set_var("RUST_LOG", "taos=trace");
std
::
env
::
set_var
(
"RUST_LOG"
,
"taos=debug"
);
pretty_env_logger
::
init
();
let
dsn
=
std
::
env
::
var
(
"TDENGINE_ClOUD_DSN"
)
.unwrap_or
(
"http://localhost:6041"
.to_string
());
log
::
debug!
(
"dsn: {:?}"
,
&
dsn
);
let
client
=
TaosBuilder
::
from_dsn
(
dsn
)
?
.build
()
.await
?
;
let
db
=
"demo_schemaless_ws"
;
client
.exec
(
format!
(
"drop database if exists {db}"
))
.await
?
;
client
.exec
(
format!
(
"create database if not exists {db}"
))
.await
?
;
// should specify database before insert
client
.exec
(
format!
(
"use {db}"
))
.await
?
;
// SchemalessProtocol::Json
let
data
=
[
r#"[{"metric": "meters.current", "timestamp": 1681345954000, "value": 10.3, "tags": {"location": "California.SanFrancisco", "groupid": 2}}, {"metric": "meters.voltage", "timestamp": 1648432611249, "value": 219, "tags": {"location": "California.LosAngeles", "groupid": 1}}, {"metric": "meters.current", "timestamp": 1648432611250, "value": 12.6, "tags": {"location": "California.SanFrancisco", "groupid": 2}}, {"metric": "meters.voltage", "timestamp": 1648432611250, "value": 221, "tags": {"location": "California.LosAngeles", "groupid": 1}}]"#
]
.map
(
String
::
from
)
.to_vec
();
// demo with all fields
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Json
)
.precision
(
SchemalessPrecision
::
Millisecond
)
.data
(
data
.clone
())
.ttl
(
1000
)
.req_id
(
300u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default precision
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Json
)
.data
(
data
.clone
())
.ttl
(
1000
)
.req_id
(
301u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default ttl
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Json
)
.data
(
data
.clone
())
.req_id
(
302u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default req_id
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Json
)
.data
(
data
.clone
())
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
client
.exec
(
format!
(
"drop database if exists {db}"
))
.await
?
;
Ok
(())
}
docs/examples/rust/nativeexample/examples/schemaless_insert_line.rs
0 → 100644
浏览文件 @
a36be0a0
use
taos_query
::
common
::
SchemalessPrecision
;
use
taos_query
::
common
::
SchemalessProtocol
;
use
taos_query
::
common
::
SmlDataBuilder
;
use
crate
::
AsyncQueryable
;
use
crate
::
AsyncTBuilder
;
use
crate
::
TaosBuilder
;
async
fn
put_line
()
->
anyhow
::
Result
<
()
>
{
// std::env::set_var("RUST_LOG", "taos=trace");
std
::
env
::
set_var
(
"RUST_LOG"
,
"taos=debug"
);
pretty_env_logger
::
init
();
let
dsn
=
std
::
env
::
var
(
"TDENGINE_ClOUD_DSN"
)
.unwrap_or
(
"http://localhost:6041"
.to_string
());
log
::
debug!
(
"dsn: {:?}"
,
&
dsn
);
let
client
=
TaosBuilder
::
from_dsn
(
dsn
)
?
.build
()
.await
?
;
let
db
=
"demo_schemaless_ws"
;
client
.exec
(
format!
(
"drop database if exists {db}"
))
.await
?
;
client
.exec
(
format!
(
"create database if not exists {db}"
))
.await
?
;
// should specify database before insert
client
.exec
(
format!
(
"use {db}"
))
.await
?
;
let
data
=
[
"measurement,host=host1 field1=2i,field2=2.0 1577837300000"
,
"measurement,host=host1 field1=2i,field2=2.0 1577837400000"
,
"measurement,host=host1 field1=2i,field2=2.0 1577837500000"
,
"measurement,host=host1 field1=2i,field2=2.0 1577837600000"
,
]
.map
(
String
::
from
)
.to_vec
();
// demo with all fields
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Line
)
.precision
(
SchemalessPrecision
::
Millisecond
)
.data
(
data
.clone
())
.ttl
(
1000
)
.req_id
(
100u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default ttl
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Line
)
.precision
(
SchemalessPrecision
::
Millisecond
)
.data
(
data
.clone
())
.req_id
(
101u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default ttl and req_id
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Line
)
.precision
(
SchemalessPrecision
::
Millisecond
)
.data
(
data
.clone
())
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default precision
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Line
)
.data
(
data
)
.req_id
(
103u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
client
.exec
(
format!
(
"drop database if exists {db}"
))
.await
?
;
Ok
(())
}
docs/examples/rust/nativeexample/examples/schemaless_insert_telnet.rs
0 → 100644
浏览文件 @
a36be0a0
use
taos_query
::
common
::
SchemalessPrecision
;
use
taos_query
::
common
::
SchemalessProtocol
;
use
taos_query
::
common
::
SmlDataBuilder
;
use
crate
::
AsyncQueryable
;
use
crate
::
AsyncTBuilder
;
use
crate
::
TaosBuilder
;
async
fn
put_telnet
()
->
anyhow
::
Result
<
()
>
{
// std::env::set_var("RUST_LOG", "taos=trace");
std
::
env
::
set_var
(
"RUST_LOG"
,
"taos=debug"
);
pretty_env_logger
::
init
();
let
dsn
=
std
::
env
::
var
(
"TDENGINE_ClOUD_DSN"
)
.unwrap_or
(
"http://localhost:6041"
.to_string
());
log
::
debug!
(
"dsn: {:?}"
,
&
dsn
);
let
client
=
TaosBuilder
::
from_dsn
(
dsn
)
?
.build
()
.await
?
;
let
db
=
"demo_schemaless_ws"
;
client
.exec
(
format!
(
"drop database if exists {db}"
))
.await
?
;
client
.exec
(
format!
(
"create database if not exists {db}"
))
.await
?
;
// should specify database before insert
client
.exec
(
format!
(
"use {db}"
))
.await
?
;
let
data
=
[
"meters.current 1648432611249 10.3 location=California.SanFrancisco group=2"
,
"meters.current 1648432611250 12.6 location=California.SanFrancisco group=2"
,
"meters.current 1648432611249 10.8 location=California.LosAngeles group=3"
,
"meters.current 1648432611250 11.3 location=California.LosAngeles group=3"
,
"meters.voltage 1648432611249 219 location=California.SanFrancisco group=2"
,
"meters.voltage 1648432611250 218 location=California.SanFrancisco group=2"
,
"meters.voltage 1648432611249 221 location=California.LosAngeles group=3"
,
"meters.voltage 1648432611250 217 location=California.LosAngeles group=3"
,
]
.map
(
String
::
from
)
.to_vec
();
// demo with all fields
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Telnet
)
.precision
(
SchemalessPrecision
::
Millisecond
)
.data
(
data
.clone
())
.ttl
(
1000
)
.req_id
(
200u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default precision
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Telnet
)
.data
(
data
.clone
())
.ttl
(
1000
)
.req_id
(
201u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default ttl
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Telnet
)
.data
(
data
.clone
())
.req_id
(
202u64
)
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
// demo with default req_id
let
sml_data
=
SmlDataBuilder
::
default
()
.protocol
(
SchemalessProtocol
::
Telnet
)
.data
(
data
.clone
())
.build
()
?
;
assert_eq!
(
client
.put
(
&
sml_data
)
.await
?
,
());
client
.exec
(
format!
(
"drop database if exists {db}"
))
.await
?
;
Ok
(())
}
docs/zh/05-get-started/03-package.md
浏览文件 @
a36be0a0
...
...
@@ -207,6 +207,8 @@ Active: inactive (dead)
-
查看服务状态:
`sudo launchctl list | grep taosd`
-
查看服务详细信息:
`launchctl print system/com.tdengine.taosd`
:::info
-
`launchctl`
命令管理
`com.tdengine.taosd`
需要管理员权限,务必在前面加
`sudo`
来增强安全性。
...
...
docs/zh/07-develop/03-insert-data/_rust_schemaless.mdx
0 → 100644
浏览文件 @
a36be0a0
```rust
{{#include docs/examples/rust/nativeexample/examples/schemaless_insert_line.rs}}
```
docs/zh/08-connector/14-java.mdx
浏览文件 @
a36be0a0
此差异已折叠。
点击以展开。
docs/zh/08-connector/26-rust.mdx
浏览文件 @
a36be0a0
...
...
@@ -10,6 +10,7 @@ import TabItem from '@theme/TabItem';
import Preparation from "./_preparation.mdx"
import RustInsert from "../07-develop/03-insert-data/_rust_sql.mdx"
import RustBind from "../07-develop/03-insert-data/_rust_stmt.mdx"
import RustSml from "../07-develop/03-insert-data/_rust_schemaless.mdx"
import RustQuery from "../07-develop/04-query-data/_rust.mdx"
[![Crates.io](https://img.shields.io/crates/v/taos)](https://crates.io/crates/taos) ![Crates.io](https://img.shields.io/crates/d/taos) [![docs.rs](https://img.shields.io/docsrs/taos)](https://docs.rs/taos)
...
...
@@ -230,6 +231,10 @@ async fn demo(taos: &Taos, db: &str) -> Result<(), Error> {
<RustBind />
#### Schemaless 写入
<RustSml />
### 查询数据
<RustQuery />
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录