Fields : 数据属性包括field key 和 field value 分别存储在 _field和 _value当中, 并且一个measurement中必须包含至少一个filed
field set 表示在同一时间内 所有fields的集合。 field key 是一个代表属性名称的字段,在示例数据中bees和ants就是field key field value 是对应 field key 的值, 在示例数据中在2019-08-18T00:00:00Z 该时间点 bees的值为23,而ants的值为30。
Fields : 数据属性包括field key 和 field value 分别存储在 _field和 _value当中, 并且一个measurement中必须包含至少一个filed
field set 表示在同一时间内 所有fields的集合。 field key 是一个代表属性名称的字段,在示例数据中bees和ants就是field key field value 是对应 field key 的值, 在示例数据中在2019-08-18T00:00:00Z 该时间点 bees的值为23,而ants的值为30。
_time _measurement location scientist _field _value 2019-08-18T00:00:00Z census klamath anderson bees 23 2019-08-18T00:00:00Z census portland mullen ants 30 2019-08-18T00:06:00Z census klamath anderson bees 28 2019-08-18T00:06:00Z census portland mullen ants 32
温馨提示: Fields 和 Tags 简单来说他们都是一组键值对的集合。 在存储形式上 field 的 key 被存储在一个名为_field的列中, 而tag的key则是以列头的形式存在的, 该列的内容即为tag value, 另外值得注意的是 field 和 tag 都可以用来存储数据,但tag只能存储字符串类型数据(即不可以在influx查询中使用 mean()、max()等聚合函数),而filed既可以存储字符串类型又可以存储数值类型数据。
# 0.InfluxDB 服务端启动后需使用 Influx CLI 进行初始化. # 依次输入:用户名、密码、组织名称、桶名称、数据保存时间(过期自动删除,0表示永久保存)。 $ influx setup --host http://localhost:8080 > Welcome to InfluxDB 2.0! ? Please type your primary username admin ? Please type your password ********* ? Please type your password again ********* ? Please type your primary organization name test ? Please type your primary bucket name db01 ? Please type your retention period in hours, or 0 for infinite 0 ? Setup with these parameters? Username: admin Organization: test Bucket: db01 Retention Period: infinite Yes User Organization Bucket admin test db01
# 1.创建用户user密码为WeiyiGeek influx user create -n user -p WeiyiGeek -o primary -t <your-token> # ID Name # 097f22b577ee5000 user
# 2.查看用户 influx user list # ID Name # 097496fcb920e000 admin # 097f22b577ee5000 user
# 3.更新用户 influx user update -i 097f22b577ee5000 -n weiyigeek -t <your-token> # ID Name # 097f22b577ee5000 weiyigeek
# 4.修改密码, 指令执行后CLI会引导密码修改 influx user password -n weiyigeek -t <your-token> # ? Please type new password for "weiyigeek" ********* # ? Please type new password for "weiyigeek" again ********* # Successfully updated password for user "weiyigeek"
# 5.删除用户 influx user delete -i 097f22b577ee5000 -t <your-token> # ID Name Deleted # 097f22b577ee5000 user true
# 创建 bucket # 在 demo 的 org 下创建一个 test-bucket 的 bucket。 influx bucket create -n test-bucket -o demo -r 72h5m -t <your-token> ID Name Retention Shard group duration Organization ID Schema Type b54d88b80225fc22 test-bucket 72h5m0s 24h0m0s 08472f250ef4212e implicit
# 更新 bucket (名称、数据保存时间) influx bucket update -i b54d88b80225fc22 -n demo-bucket influx bucket update -i b54d88b80225fc22 -r 64h0m0s ID Name Retention Shard group duration Organization ID Schema Type b54d88b80225fc22 demo-bucket 64h0m0s 24h0m0s 08472f250ef4212e implicit
# 查看 bucket (列出指定或者所有 buckets 信息) influx bucket list -o primary ID Name Retention Shard group duration Organization ID Schema Type 0db228578a8a7927 _monitoring 168h0m0s 24h0m0s cf9b383e6da9c4a8 implicit 9e2442e2d584ff53 _tasks 72h0m0s 24h0m0s cf9b383e6da9c4a8 implicit e4fef2474b70834e primary infinite 168h0m0s cf9b383e6da9c4a8 implicit
influx bucket list -n demo-bucket -o demo ID Name Retention Shard group duration Organization ID Schema Type b54d88b80225fc22 demo-bucket 64h0m0s 24h0m0s 08472f250ef4212e implicit
# 删除 bucket (指定ID或者指定名称) influx bucket delete -n demo-bucket -o demo influx bucket delete -i b54d88b80225fc22 ID Name Retention Shard group duration Organization ID Schema Type Deleted b54d88b80225fc22 demo-bucket 26h0m0s 24h0m0s 08472f250ef4212e implicit true
温馨提示: 指定数据保留时间单位如下所示:
1 2 3 4 5 6 7 8 9
# 数据保留时间单位在以下单位中取值: #纳秒 (ns) #微秒 (us or µs) #毫秒 (ms) #秒 (s) #分 (m) #时 (h) #日 (d) #周 (w)
$ influx bucket update -id 2d0184d3af5ec8b2 --retention 0 ID Name Retention Shard group duration Organization ID Schema Type 2d0184d3af5ec8b2 demo-bucket infinite 24h0m0s 08472f250ef4212e implicit
方式1.请访问本博主的B站【WeiyiGeek】首页关注UP主, 将自动随机获取解锁验证码。
Method 2.Please visit 【My Twitter】. There is an article verification code in the homepage.
方式3.扫一扫下方二维码,关注本站官方公众号
回复:验证码
将获取解锁(有效期7天)本站所有技术文章哟!