0

我在独立的 DolphinDB 服务器中执行以下代码,

n = 1000000;
tableSchema = streamTable(n:0,`hardwareId`ts`temp1,[INT,TIMESTAMP,DOUBLE])
share(tableSchema,"sensorInfoTable")
enableTablePersistence(objByName("sensorInfoTable"), false, false, n)

结果显示以下信息,

To enable table persistence, turn on the persistence manager by specifying the configuration parameter persistenceDir for the publisher node.

所以我在 dolphindb.cfg 中添加如下配置。

persistenceDir="C:\DolphinDB\streamPersistence"

但是当我运行 Dolphindb.exe 时,它​​异常终止。发现dolphindb.log有报错,像这样 我确定这个目录存在,为什么PersistenceManager启动失败?</p>

4

1 回答 1

0

请删除包含路径的双引号。DolphinDB 不对配置文件中的参数值使用任何双引号。

persistenceDir=C:\DolphinDB\streamPersistence
于 2019-07-13T13:09:07.660 回答