1

I am trying to set up a production environment for KDB using AquaQ.

I have set up the appropriate Environment Variables and modified the process.csv file to have my IP in it. When I try and load torq.q I get the error:

cannot create alias on windows os.

Below is what's in the error log following

2014.12.30D15:40:06.203625000|hoffmanpc|hdb2|ERR|fileload|failed to load C:\TORQFULL\TORQ\src\code/handlers/logusage.q : c: No such host is known.

JNYRanger
  • 6,829
  • 12
  • 53
  • 81
Roni Hoffman
  • 302
  • 1
  • 5
  • 17

2 Answers2

1

You're running on windows right? As far as I'm aware, TorQ is specifically designed and tested for Linux and OSX, not windows.

Seems the error above is due to the file paths having forward slashes vs backslashes. If you could manually fix the hard-coded filepaths to be in windows format it might work. Best best is to contact AquaQ themselves

terrylynch
  • 11,844
  • 13
  • 21
  • Thanks Terry, the slashes are actually interchangeable. I just tried to load a q script with both slashes and it worked. In their documentation they have stated it works on windows with kdb+3.1 and 2.8 and I am running 3.2 so I will downgrade and check. Cheers – Roni Hoffman Dec 30 '14 at 19:55
0

Terry you were right actually. It turns out q requires this "/" in paths not "\". I had "\" in the path for the environment variables. Johnny Press answered this for me here

Roni Hoffman
  • 302
  • 1
  • 5
  • 17