Hi,
how can I create a impala sync recipe with the Public API? I have the source managed dataset stored as parquet and I would like to create a code recipe with sql like "select count(*) from mytable" into a new parquet managed dataset.
So far I have been using this, but this method assumes that the output dataset is created:
CodeRecipeCreator(recipeName, 'impala',prj).with_input(inputDatasetName).with_output(outputDatasetName).with_script(code).build()
But the with_new_output method is not possible here,
Thanks
0 ·