Marlan Neuron

  • Re: Pandas Iter dataframes

    Hi @Sajid_Khan , Have you tried iter_dataframes with the infer_with_pandas set False? If not, I'd try that. With that setting, the Snowflake table derived column data types should be used rather than…
    ·
  • Re: Correct use of scenario variables

    Hi @allan , Yes, in Python recipes I would call get_custom_variables or in a SQL script recipe I would use the ${varname} syntax. Inside a recipe in the flow I wouldn't use the external API call that…
    ·
  • Re: Correct use of scenario variables

    Hi @allan , I override project variables all of the time using scenario steps in version 8 . It does work. By project variables though, I mean variables that are defined from the Variables choice und…
    ·
  • Re: Custom Trigger

    Hi @dhyadav79 , Check here for an example custom trigger: https://knowledge.dataiku.com/latest/courses/automation/custom-automation-hands-on.html Also check this post for some additional tips: https:…
    ·
  • Re: Date Format for lastModified

    Hi @sunith992 , to add to @MiguelangelC 's response, here is how I convert unix epoch times to local time: import dataikuimport datetimeds_last_modified_unix_epoch = dataiku.Dataset("DS_NAME&quo…
    ·