Can anyone tell why its showing only 101 item even though the ids passed are 1000
Discussion posts and replies are publicly visible
Tough question. We do not have any clue what you are doing... Can you share more details?
I would expect the batchNumber variable to refer to a page number rather then a batch size
I am syncing data in batches with batch size of 1000 in a loop, so everytime 1000 ids will be stored in the pv!recordIds, but when i check in the history its only showing 101 items in the variable, does that mean only 101 items are synced or being passed ?
iswaryan3520 said:does that mean only 101 items are synced or being passed
Probably yes. In such situations, I first try to very clearly define the expected behaviour. Then I check and test each and every involved component in a way I actually see that it supports my expectations.
If "batchNumber" is being used for the "batchSize" paging value in a query, and the (filtered) query returns only 101 items, then the results would only be 101 items regardless of whether the batchSize is larger. Since we can't see the code you're using to query, or the data size, or the filters you're applying, it's hard to guess what might really be happening or why, as Stefan already mentioned.
Please check how many rows, you were getting while querying, Is more than 1000 or 101,
Batch size 1000 means you can query 1000 rows at a time, but it depends on your query how many rows you are getting.
from the query 1000 ids are generated ,I tested them , in PM also from variable tab 1000 ids are being shown but in the history tab its showing 101 items
yes Im getting 1000 ids from my query rule.