I have passed a parameter to my pipeline which has a default value when I start the pipeline. I need to change it's value in from one of processors. Is it possible to change the runtime parameter? If yes, can you please provide the steps to do that.
If the provided information is not helpful, please elaborate on the use-case?(which processor you are using, etc.,)
If the provided information is not helpful, please elaborate on the use-case?(which processor you are using, etc.,)
Thank You
Hi
Can you elaborate what you are trying to do? There might be other workarounds.
You could for example get the value from a parameter in an Expression Evaluator with this Attribute expression:
param1_value = ${PARAM1}
then you can modify the value of the attribute down the pipeline, any way you need;
see the effect of my example here:
Thank You
You could for example get the value from a parameter in an Expression Evaluator with this Attribute expression:
param1_value = ${PARAM1}
then you can modify the value of the attribute down the pipeline, any way you need;
see the effect of my example here:
Hello Guiseppe
I have a similar usecase which I am trying to solve. In that I want to query using an API and one of the query parameter of the API is going to be multiple values(around 100+) and I can pass them as an array in the API as that is the limitation. What I want is to Iterate over that list of 100+ values and pass each value as the api query parameter in each iteration. Can’t create 100+ job instance for each value hence need a way to keep looping the API in the same job till those 100 values have been used in the API Query
These values are going to come from another DB but for now we can take it has hardcoded dev data source values.
Any solution?
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.