Forum Replies Created

Page 20 of 22
  • rocuinneagain

    Member
    March 10, 2022 at 12:00 am in reply to: Cannot run kdb 64bit behind a proxy

    The email you received with your kc.lic included some details on this topic:

     

    Generally, kdb+ as an on-demand client behaves exactly like, and should be treated the same as, any plain http client (e.g. curl, apt-get or firefox) accessing a CDN-fronted web service.
    It connects to a remote port 80 as part of a normal http request; thus you generally only need to allow outbound http _connections_ but both _traffic_ to and from remote port 80.
    As the communication protocol is plain http you can employ any standard mechanism, including proxies (transparent and opaque by setting the HTTP_PROXY environment variable) as long as kdb+ is able to issue an http request and receive a response from the remote Kx service.
    If you need to allowlist the remote servers should treat kdb+ on-demand as a CDN-fronted service and employ DNS-based filtering. The current list of hostnames required for kdb+ on-demand operation is {h,g}.kdbod.{com,net,org}.

  • rocuinneagain

    Member
    March 8, 2022 at 12:00 am in reply to: Purpose of s.k file in q

    There is some background on DSL files here:

    https://code.kx.com/q/wp/query-interface/#background

    What documentation are you following for JDBC connectivity?

  • rocuinneagain

    Member
    February 18, 2022 at 12:00 am in reply to: Anyone using the Tensorflow functional API from inside q(embedpy)?

    You could load the function in to q rather than redefine it line by line.

     

    Example file.p

    def get_model(input_shape, time2vec_dim = 3): inp = Input(input_shape) x = inp time_embedding = keras.layers.TimeDistributed(Time2Vec(time2vec_dim – 1))(x)

    Load it and pull in the function:

    q)l file.p 
    q)get_model:.p.get`get_model 
    q)get_model[(65;16)]

    Another example of this: https://github.com/rianoc/qparquet

     

    Looking to replicate an example from https://keras.io/api/layers/recurrent_layers/time_distributed/

    q)lyr:.p.import`keras.layers 
    q)x:lyr[`:Input;`shape pykw (10, 128, 128, 3)] 
    q)conv_2d_layer:lyr[`:Conv2D;64;(3;3)] 
    q)time_embedding:lyr[`:TimeDistributed;conv_2d_layer] q
    )outputs:time_embedding[x] 
    q)print outputs[`:shape] (None, 10, 126, 126, 64)

     

  • rocuinneagain

    Member
    February 15, 2022 at 12:00 am in reply to: KX SQL Introductory Project – .s.e error

    To load the SQL interpreter you can run:

     

    l s.k

     

    Otherwise when you run your first ‘s)’ query this would be done automatically.

  • rocuinneagain

    Member
    February 15, 2022 at 12:00 am in reply to: embedPy inside q (kdb+) process fails to import a module

    The error is that a variable “cxt” is not being found.

    https://code.kx.com/q/basics/errors/#runtime-errors

     

    General debugging tips included on: https://code.kx.com/q/basics/debug/

     

    As this is a third party project you will get better support by raising an issue with the developer directly:

    The developer does not document the supported embedPy versions which would be important to know.

     

    One difference I see is you are calling

    pc:.cbpro.PublicClient[]

    But the developer passes a string – this could be your issue

    https://github.com/michaelsimonelli/qoinbase-q/blob/359653d9e45b6319d897f5ae50af048225605ae2/cbpro.q#L27

    cli: .cli.priv.addFuncs .cbpro.PublicClient[url];

     

     

  • rocuinneagain

    Member
    February 7, 2022 at 12:00 am in reply to: KX Dashboards Help "Text Editor"

    Hi Michael,

    Hopefully this helps.

    Sample Datasource:

    ([] description:enlist “ROMANI 4.875 01/24”;Volume:enlist 1.6385)

    ‘Template Text’ in ‘Text’ widget:

    {{#each this}} {{description}} <br> Volume:{{toPrecision Volume 2}}m {{/each}}

     

     

     

  • rocuinneagain

    Member
    February 2, 2022 at 12:00 am in reply to: Default dictionary value

    This blog on JSON parsing may also have some useful tips for you as it covers some areas of nested data with irregular keys

    https://kx.com/blog/kdb-q-insights-parsing-json-files/

     

    An example for your ask is to use a prototype dictionary of default values

    
    
    // Prototype of default values if lookup fails 
    q)p:`a`b`c`d!("X";99;99;99) 
    q)p a| "X" b| 99 c| 99 d| 99 
    // Actual dictionary 
    q)d:`a`b`c!("";2;3) 
    q)d a| "" b| 2 c| 3 
    // Failed lookup uses null of type of first key 
    // a is first key, it is type char, null char is "" 
    q)d`d "" 
    // Prototype can be used by appending your dict to it 
    q)(p,d)`d 99 
    q)(p,d)`b 2 // Handles vectors of keys nicely 
    q)(p,d)`d`b`a 99 2 ""

     

     

  • rocuinneagain

    Member
    January 24, 2022 at 11:00 am in reply to: Wordle kdb

    Another kdb implementation of the game:  https://github.com/psaris/wordle

  • rocuinneagain

    Member
    January 22, 2022 at 11:00 am in reply to: Wordle kdb

    I didn’t fully read the question, got distracted by the idea of a q implementation of the game.

    https://github.com/rianoc/qWordle

  • rocuinneagain

    Member
    January 13, 2022 at 12:00 am in reply to: perform gc per .z.pg

    Is there a reason you cannot use -g 1 ?

    Running .Q.gc[] so often is not the best approach but if you needed to a timer could check and run if after .z.pg for you:

    runGC:0b 
    .z.pg:{ bigresult: value x;runGC::1b; bigresult };
    .z.ts:{if[runGC;.Q.gc[];runGC::0b]} t 1

    https://code.kx.com/q/ref/dotz/#zts-timer

    To run it less often you could set a threshold and in the if statement check memory usage

    https://code.kx.com/q/ref/dotq/#qw-memory-stats

  • rocuinneagain

    Member
    January 13, 2022 at 12:00 am in reply to: Johansen cointegration test kdb+ implement

    You could use the python statsmodels.tsa.vector_ar.vecm.JohansenTestResult by importing it through EmbedPy and passing the data as a dataframe using mltab2df.

    Below is an example based of a similar python version: http://web.pdx.edu/~crkl/ceR/Python/example14_3.py

    $pip install statsmodels
    
    q)l p.q 
    q)l ml/ml.q 
    q).ml.loadfile`:init.q 
    q)data:flip `YEAR`Y`C!"IFF"$flip 1_-12_{{x where not ""~/:x}" " vs x} each "rn" vs .Q.hg "http://web.pdx.edu/~crkl/ceR/data/usyc87.txt" 
    q)coint_johansen:.p.import[`statsmodels.tsa.vector_ar.vecm;`:coint_johansen] 
    q)pd:.ml.tab2df[data][`:set_index;"YEAR"] 
    q)res:coint_johansen[pd;0;2] 
    q)res[`:lr1]` 31.78169 12.17119 -1.566747e-012 q)res[`:lr2]` 19.6105 12.17119 -1.566747e-012 
    q)res[`:cvm]` 18.8928 21.1314 25.865 12.2971 14.2639 18.52 2.7055 3.8415 6.6349 
    q)res[`:cvt]` 27.0669 29.7961 35.4628 13.4294 15.4943 19.9349 2.7055 3.8415 6.6349 
    q){flip y!(x@/:hsym y)@:`}[res;`lr1`lr2`cvm`cvt] 
    lr1 lr2 cvm cvt 
    ---------------------------------------------------------------------------- 
    31.78169 19.6105 18.8928 21.1314 
    25.865 27.0669 29.7961 35.4628 
    12.17119 12.17119 12.2971 14.2639 
    18.52 13.4294 15.4943 19.9349 
    -1.566747e-012 -1.566747e-012 2.7055 3.8415 
    6.6349 2.7055 3.8415 6.6349

     

     

     

     

     

  • rocuinneagain

    Member
    January 13, 2022 at 12:00 am in reply to: 0D infront of timespan

    The day part is an integral portion of the datatype and will display by default.

     

    In a UI/display time it can be dropped if required:

    q)2_string .z.n /Atom "14:41:40.125906000" 
    q)2_/:string 2#.z.n /List "14:42:00.701751000" "14:42:00.701751000" 
    q)update 2_/:string time from ([] time:2#.z.n) 
    /Column in table 
    time 
    -------------------- 
    "14:42:38.625329000" 
    "14:42:38.625329000" 
    // All columns of timespan type in a table 
    q)dropDays:{c:where -16h=type each first x;$[count c;![x;();0b;c!{((/:;_);2;($:;x))}each c];x]} 
    q)dropDays ([] time:2#.z.n;b:1.1 1.2) 
    time b 
    ------------------------ 
    "14:47:37.376270000" 1.1 
    "14:47:37.376270000" 1.2

     

  • rocuinneagain

    Member
    January 6, 2022 at 12:00 am in reply to: Lists, dictionaries, tables and lists of dictionaries

    As in the example it is a nested generic list the items need to be dealt with one at a time. As the list could have many different tables or even different datatypes within it.

    q)cols each .[dsEg;(`html;`body)] 
    a b 
    q).[dsEg;(`html;`body);{cols each x}] 
    doctype| ,"html" 
    html   | `text`body!(,"test";,`a`b)

    The use of  :: may be useful to you if you have not been using it

    https://code.kx.com/q/ref/apply/#nulls-in-i

    It allows you to skips levels

    q).[dsEg;(`html;`body;::;`a)] 
    d f g //Better shown on an item with multiple entries in the list 
    q)dsEg2:(`doctype`html)!(enlist "html";`text`body!(enlist"test";2#enlist ([]a: `d`f`g;b: 23 43 777))); 
    q).[dsEg2;(`html;`body;::;`a)] 
    d f g d f g

     

    .Q.s1 may also be useful to you as it can help show the underlying structure of an item better than the console at times.

    https://code.kx.com/q/ref/dotq/#qs1-string-representation

    q).[dsEg;(`html;`body;::;`a)] 
    d f g //Looks like a symbol list type 11h but is in fact a single item egeneric list type 0h 
    q){-1 .Q.s1 x;} .[dsEg;(`html;`body;::;`a)] 
    ,`d`f`g //.Q.s1 output can be ugly but always shows exact structure

     

     

  • They can be on separate machines/environments.

    You can see in the White Paper that they use Kdb+ running on an ec2 instance ‘ip-172-31-70-197.ec2.internal’ and it connects to Solace broker running on ‘mr2ko4me0p6h2f.messaging.solace.cloud’

     

    As long as your network settings are setup so that the 2 hosts can communicate over the needed ports then you will be successful.

     

     

     

     

  • rocuinneagain

    Member
    December 6, 2021 at 12:00 am in reply to: Installing HTML5 Demo Dashboards on Kx Platform

    You can

    1. Upload the .tgz to the server (SCP/FTP etc)

    2. Extract it

    3. Import the package through the UI

    https://code.kx.com/platform/release_management/#import-from-a-different-location

Page 20 of 22