I have created an entity store for financial data, as follows:
It generally works well, except that when I try to use parallelization, it fails. For example:
first distribute the definition of the store:
DistributeDefinitions[StockDataStore] Then try to use ParallelTable:
perfData = ParallelTable[ Performance[stock, formationDate, currentDate, {60, 12, 9, 6, 3}], {stock, universe[[1 ;; 20]]}]; Missing["UnknownType", "Stocks"], etc etc
The code works fine if I use the regular Table function.
It seems as if parallelization doesn't work with EntityStores. or am I missing something?