ContributionsMost RecentMost LikesSolutionsRe: SQS Consumer snap is ready all message at pipeline startup With message_count, it only ready defined messages and stops which means we need to run our pipeline at defined schedule. We need to run this on real-time basis hence not the good option for us SQS Consumer snap is ready all message at pipeline startup Hi, I have certain observations while running a pipeline with SQS snap as trigger. 1. On startup, pipeline reads all available messages from sqs and hold them in buffer and process them as per concurrency 2. There is no mechanism to control the speed at which we poll messages from queue. If you have used sqs consumer snap in your pipelines, how did you tackle above issues. Any throttling mechanism did you implement to control this. Thanks, Vishal. Re: Getting "Bad request" error while using REST POST snap Hi SpiroTaleski , I have faced the similar issue. My question here is, how can I fetch these error_entity details directly in error pipeline, what is the expression to use to extract them I know below expressions, and these doesn't provide error_entity details Re: Iterate JsonArray in parent to call child pipeline Hi koryknick , Thanks for your reply. The ID is part of POST body request. Within parent pipeline, Json splitter is generating its multiple documents which are then passed to child pipeline via pipeline execute. When next iteration happens and child pipeline is called, I am not able to retain the response from first iteration. how to solve that? Thanks Iterate JsonArray in parent to call child pipeline Hello Community members, I have a scenario to discuss, if you can provide your assistance I am receiving JSOnArray in pipeline which I am then splitting using Json splitter and those individual documents I am passing to child pipeline. In child pipeline, I am making HTTP call and getting Id in response. So far so good but now I have a requirement to use Id from previous call in next HTTP call request. How can I pass response payload in next child iteration? Thanks. Re: HTTP Client Snap is converting json object to array while performing POST call Hi ddellsperger , It is actually the reverse. The output of mapper is Json object but while making post call bosy is sent as json array, so there is extra [] in body which I don't want. Any clue how to solve this. yes, I am using raw entity and sending full document as $ HTTP Client Snap is converting json object to array while performing POST call Hello community members, I am looking for some guidance on below scenario if you have faced in past I'll explain a flow a bit I am getting HTTP GET call which is returning me Json Array response which after enrichment I need to send as individual requests for which I am using splitter. Logically view : HTTP GET -> JSON Splitter -> Mapper enrichment -> HTTP POST SnapLogic Intelligent Integration Platform Issue I have is that this POST call is converting my request from Json Map/Obj to Json Array and hence my API calls are failing. Is there some config which i need to alter to avoid this. Thanks.