'error of function replay in DolphinDB: inputTables must be one or a tuple of non segmented tables|DataSources
error message: inputTables must be one or a tuple of non segmented tables|DataSources Usage: replay(inputTables, outputTables, [dateColumn], [timeColumn], [replayRate], [absoluteRate=true], [parallelLevel=1]). inputTables must be one or a tuple of non segmented tables|DataSources
replay(inputTables=currency_table,outputTables=currency_result)
I run the script and it reported an error. Both tables are stream tables. How can I replay DFS tables?
Solution 1:[1]
The inputTables=currency_table
here is a stream table. Currently, the stream table is not supported as the input table for replay in DolphinDB. You can load it to an in-memory table.
To replay data of a partitioned table, you can use the replayDS function. See details at https://www.dolphindb.com/help/FunctionsandCommands/FunctionReferences/r/replayDS.html
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | jinzhi |