Failed to execute pipeline
Hi,
I am getting error while running the child pipeline with larger files.
There is no error with smaller files.
I have a mapper at the starting of child pipeline.
Below is the error:-
Failed to execute pipeline
Reason:
Snapi request failed: {“response_map”: {“error_list”: [{“message”: “Pipeline runtime create failed.”}]}, “http_status_code”: 500}
Any idea, what could be the rason?
But if those numbers are between quote it means that it is string.
723456 and “723456” is not same.
See if this will help you to determine if it’s number or string.
$input.toString().match(/^\d+$/) != null ? true : false
This expression will check if value of input contains only numbers and if it is, then will return true, otherwise if not contains only numbers it will return false.
To check for string it’s opposite, you need to switch the places of true and false.
Regards,
Viktor