Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Experts,
I receive from my trestclient by API get method a list of values that can go from 0 value to xxxx, I would like to be able to group them by 10, 100, 500 so that my next processing can play them on a loop
I am currently using the TFlowToIterate block with tJavaFlex for get information but this method only allows me to transmit one value at a time
Thanks for your help
tJavaflex :
Example of a list of values:
44565
48965
45697
..
You can group the value and trigger the next processing only when the number of line is 50,100, 150 ..., the question is how do you pass the value to the API calling? Does it accept a group of value at one calling?
Regards
Shong
Hello Shong,
Thanks for the reply, the number of line depend of the query, i pass value as an argument to the API like (44565,48965,45697)
If it's too long, the HTTP query fall in lenth issue error.
@so cocolo , Here is a scenario showing how to append a list of value and achieve batch processing.
I use runIf connector to trigger the next processing for 10 values in a time.
Please try and let me know if you have any questions.
Regards
Shong
Hello Song,
Thanks you very much for your proposal, it's working for me 🍻