wale
wale

性别: 注册于 2021-05-07

向TA求助
20金币数
1890 经验值
1个粉丝
主页被访问 2406 次

163 个回答

0 赞同

请问一下用python api 把dataframe导入dolphindb建表的时候 dolp...

dolphindb不支持uint16,尝试转成LONG吧

回答于 2022-06-04 21:36

0 赞同

请问有没有delphi或free pascal版本的sdk?

目前不支持delphi,有兴趣可参考 接口协议https://gitee.com/dolphindb/Tutorials_CN/blob/master/api_protocol.md以及其他语言的接口实现一下,或者参考网上的一下有关delphi调用c++动态库的博客(如https://blog.csdn.net/xyzhan/article/details/119565255)看能否调用c++的sdk。

回答于 2022-05-11 11:35

0 赞同

python parser与orca的区别是什么

orca是在客户端跑的,python parser是在server端跑的。 orca是把客户端的pandas语法转化成dolphindb脚本后在server端执行,输出的数据再回传到客户端转化成pandas的格式,这会带来两个问题: (1)数据转换带来的效率问题, (2)有些pandas或python的语法无法转换成dolphindb脚本,譬如lambda函数。server端直接支持pyt...

回答于 2022-04-19 17:16

0 赞同

MacOS能不能使用golang API?linux下编译的so能不能在MacOS使用...

这是因为Go API目前还不是原生go实现的,它底层封装了c++ api动态库。目前原生的go api正在开发中,敬请期待。

回答于 2022-04-19 08:56

0 赞同

有什么函数和remoteRun一样接受一个字符串作为函数,ConstantSP...

函数名称如果没有partial application(部分应用)可以用funcByName解析。例如: call(funcByName("add"),1,2) 如果加了partial application,可以用parseExpr。例如: call(parseExpr("add{1}").eval(), 2) 其中parseExpr("add{1}").eval()得到一个函数。

回答于 2022-03-16 20:47

0 赞同

强烈建议 ,文档工程师请看一下

非常感谢您的宝贵建议。我们的文档小组正在完善文档,也欢迎您继续对dolphindb提出改进建议。

回答于 2022-03-13 21:18

0 赞同

Grafana可以监控dolphindb controller哪些指标,使用官方插件直...

建议通过Prometheus监控,即查看指标或者创建仪表盘通常使用Grafana,Prometheus作为Grafana的数据源,DolphinDB支持的metrics详见https://gitee.com/dolphindb/Tutorials_CN/blob/master/DolphinDB_monitor.md#1-prometheus-metrics 第1节。

回答于 2022-02-23 19:56

0 赞同

Didnt get output as shown in tutorial

Yes, there is an issue here. After executing the demo script, I used getStreamingStat().subworkers to check the subscription status and found an error: topic=localhost:8848:local8848/trades_stream/vwap msgId=59999999 length=100000 exception=The number of columns of the table to insert must be the s...

回答于 2022-02-01 17:02

0 赞同

Regarding nodes

Compute nodes are compute-only nodes that can be applied to scenarios including stream computing, distributed computing, machine learning, and more. Compute nodes do not store data, so you cannot create databases and tables on this node, but you can load the data for computation by calling the loadT...

回答于 2022-01-30 23:00

1 赞同

server安装的时候是否可以直接安装Linux JIT版本,而不是普通版...

JIT版本比非JIT版本增加了JIT(即时编译)功能,DolphinDB的即时编译功能显著提高了for循环,while循环和if-else等语句的运行速度,特别适合于无法使用向量化运算但又对运行速度有极高要求的场景。 jit版本运行一般的代码,性能不会有下降。 DolphinDB的JIT版本使用一个动态库,又携带了更多的插件库,所以安装包要比非JI...

回答于 2022-01-29 13:53