Qing Li
Qing Li

性别: 注册于 2021-06-21

向TA求助
20金币数
1080 经验值
0个粉丝
主页被访问 2495 次

56 个回答

0 赞同

dolphindb中的hash分区与range分区,list分区相比较,更加适合哪...

https://www.dolphindb.cn/cn/help/DatabaseandDistributedComputing/DatabaseOperations/CreateDatabasesandTables.html 您可以看下这个分区介绍

回答于 2021-06-22 13:17

0 赞同

DolphinDB与传统数据库相比,支持多种时间类型,符合金融领域需...

https://www.dolphindb.cn/cn/help/DataTypesandStructures/DataTypes/index.html 您可以看下这个

回答于 2021-06-22 13:16

0 赞同

Dolphindb关于内存表可否并行计算

可以使用mr函数

回答于 2021-06-22 09:47

0 赞同

dolphindb分区不一致的问题

for(chunkID in chunkIDs){ nodes = exec top 1 node from pnodeRun(getAllChunks) where chunkId=chunkID order by version desc rpc(getControllerAlias(), forceCorrectVersionByReplica{chunkID, nodes[0]}) } forceCorrectVersionByReplica该函数功能是,强制该chunk 以nodealias上的版本和数据...

回答于 2021-06-22 09:47

0 赞同

dolphindb当我导入新的csv文件做机器学习分析时,表结构如何获取...

extractTextSchema获取表结构

回答于 2021-06-22 09:46

0 赞同

请问下在dolphindb中已经加载了mysql的插件,为什么执行链接操作...

查看版本,120和130对应的插件不同

回答于 2021-06-22 09:40

0 赞同

单节点dolphinDB加载mongodb插件

找到对应的库,进行软连接。

回答于 2021-06-22 09:39

0 赞同

如何看某个DFS分区表某一天数据所占的硬盘空间大小?

def diskUsage(database, table){ return select sum(diskUsage/1024/1024) diskM from pnodeRun(getTabletsMeta{"/"+substr(database,6)+"/%",table,true,-1}) group by dfsPath,node}diskUsage("dfs://test11", "test")

回答于 2021-06-22 09:38

0 赞同

dolphindb的函数

zscore函数进行归一化

回答于 2021-06-22 09:36

0 赞同

dolphindb使用问题

t = table(1..10 as x, 11..20 as y) select * from t where x in [1,2,3]

回答于 2021-06-22 09:35