Hi,
I created a pipeline following the documentation:
CREATE PIPELINE my_pipeline
AS LOAD DATA HDFS 'hdfs://server-address:8020/folder'
WITH TRANSFORM('http://website.com/TransformFile.tar.gz','transformScript.py','')
INTO TABLE `created_table`
FIELDS TERMINATED BY ',';
When I create the pipeline no errors are given, the transformScript.py script is found, but when I run
test pipeline my_pipeline;
Gives me this error:
Truncated stderr: :No such file or directory
Have tried different approaches (with tar or calling directly the file), but it doesn’t reach the file. Is there any aditional permission I should gave?
PS: I can easily open http://website.com/TransformFile.tar.gz with any browser, from anywhere, I even set it to 777. Also from MemSQL I can reach that file, as the CREATE PIPELINE is created with no errors.
Thanks,