我在独立的 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>