Good day for all,
I'm a new TorQ user and I'm stuck with the first steps.
My setup: Windows 2019 Server, 2days old TorQ master and TorQ-Finance-Starter-Pack copied above.
If I start the clear stack by start_torq_demo.bat rdb and hdb works fine. The test records are collected. But if I try to push records to tickerplant manually then NO records are stored in RDB.
My steps are:
1. Remove start of all test feed processes from start_torq_demo.bat
2. Added test table `iva:([]time:`timestamp$(); sym:`g#`symbol$(); md:`symbol$())` to database.q
3. Start stack by start_torq_demo.bat
4. Open the new q console
5. Connect to tickerplant: h:hopen`:localhost:6000:segmentedtickerplant:pass
6. h"meta iva"
c | t f a
----| -----
time| p
sym | s
md | s
7. Try to push a new record: h(`.u.upd;`iva;(`timestamp$.z.P;`AAFF;`blabla))
8. Connect to gateway localhost:6007
9. .gw.syncexec["select [-10] from `iva";`rdb]
10. Get an empty result.
Also I tried to push records to the trade table from IDE with the same effect.
`.u.pub;`trade;(`timestamp$.z.p;`AAFT;33342.87;7i;0b;"B";"N";`sell)
In other cases if feed.q process is started I see records in rdb in the trade table.
Mixa.