iotdb icon indicating copy to clipboard operation
iotdb copied to clipboard

Apache IoTDB

Results 730 iotdb issues
Sort by recently updated
recently updated
newest added

![B9LSSD}UFEE2D0`ATCMWDSX](https://user-images.githubusercontent.com/52025735/199688938-0ded39ec-9cab-48ca-8f92-5aa62f0740b9.png) 版本0.13.3 压缩比统计信息文件不存在,在文档中说的路径上没有那些文件,是有什么配置要配吗

IoTDB默认使用毫秒, 但是其实IoTDB内部是用的long进行存储的,因此可以通过配置来支持微秒和纳秒。 在IoTDB配置文件(iotdb-engine.properties)中的如下配置: ``` # Use this value to set timestamp precision as "ms", "us" or "ns". # Once the precision is been set, it can not be changed. timestamp_precision=ms...

How to reproduce: ```sql # user: root CREATE USER steve 'steve' GRANT ROLE application_role PRIVILEGES 'SET_STORAGE_GROUP','CREATE_TIMESERIES','INSERT_TIMESERIES','READ_TIMESERIES','DELETE_TIMESERIES','DROP_FUNCTION','CREATE_FUNCTION','CREATE_TRIGGER','DROP_TRIGGER','START_TRIGGER','STOP_TRIGGER' ON root.test GRANT application_role TO steve ``` ```sql # user: steve select sin(s1) from...

Easy-Fixed

按文档停止原版本的datanode和confignode,然后修改新版本的配置文件,各个设置一致,然后运行confignode: 提示“The parameter config_node_id doesn't exist in confignode-system.properties”; 找到这个文件后在文件里添加“config_node_id”配置之后(值在原版本里查询得到),报错“For input string:[serverIP]_22278”,能成功运行,但运行datenode的时候提示无法加入集群,因为运行的confignode不是leader; 使用“[serverIP]_22278”作为confignode-system.properties里“config_node_id”配置的值后继续报错“The parameter config_node_id doesn't exist in confignode-system.properties”,可能是无法识别; 问一下是不是前后版本不兼容,有没有办法解决这个问题?如果无法升级的话有没有进行数据迁移的办法?

数据库部署在云上,ip地址设置的服务器的ipv4地址,本地使用服务器的公网ip连接,执行插入序列不会报错,但是插入数据会报错,日志报错显示服务器的ipv4地址 org.apache.iotdb.rpc.IoTDBConnectionException: org.apache.iotdb.rpc.IoTDBConnectionException: Fail to reconnect to server. Please check server status.172.18.203.227:6668 at org.apache.iotdb.session.Session.handleRedirection(Session.java:878) at org.apache.iotdb.session.Session.insertTablet(Session.java:2134) at org.apache.iotdb.session.pool.SessionPool.insertTablet(SessionPool.java:574) at org.apache.iotdb.session.pool.SessionPool.insertTablet(SessionPool.java:549)

**Is your feature request related to a problem? Please describe.** 大佬您好,当前例如:"set ttl to root.ln 360000",只支持毫米级别的单位,对于设置过期时间长的很不方便,希望可以增加例如:"set ttl to root.ln 180d"这种形式,语法解析和处理应该不是很困难 **Describe the solution you'd like** 希望可以增加多种时间单位,例如:"set ttl to root.ln 180d"这种形式 **Describe...

OPC quality code standards request 16 bit for each quality code. If I try to store a series of quality codes (each is a 16-bit integer) in iotdb now, I...

**Describe the bug** iotdbserver报错 **To Reproduce** Steps to reproduce the behavior: 删除某个时间序列,再新增同名但是类型不同的时间序列 **Expected behavior** 怎么样处理,修复让他不报错。这些报错信息会不会影响正常使用 **Screenshots** 2022-06-06 14:16:18,943 [pool-6-IoTDB-Compaction-10] INFO o.a.i.d.e.c.l.LevelCompactionTsFileManagement:625 - root.ln_1 [Compaction] merge level-0's 6 TsFiles to next...

**Is your feature request related to a problem? Please describe.** 当我查询一些最新数据时,比如查询最新的10条,可以通过order by time desc limit 10。 但是有时候需要对查询回来的每一行的数据做运算,比如求和、取平均值等等。 当子节点明确时 可以通过 select s1+s2+s3 from root.data.g_0.d_0 order by time desc limit 10; 但现实的场景中子节点是不固定的,名称也是未知的。...