Hey all, does anyone have insights around how Nets...
# general
e
Hey all, does anyone have insights around how Netsuite Provisions “Concurrent Web Services” users? How many users are available per price tier typically?
that said, your integration is old and slowly dieing if it relies on the concurrent sessions used
Concurrent Web Services
the login operation was deprecated in 2020.1
m
We are using TBA so it is still restricted by account concurrency restrictions right?
b
yes
m
We are trying to read products where we need to fetch 30k records. We try to read the data page by page and each request almost takes like a minute where results per page is 100, is this an expected behaviour for Netsuite?
Thats why we wanted to increase the concurrency however our client does not seem to have enough capacity for us to make parallel request for a particular search id.
b
basic or advanced search?
m
basic
b
that basically consists of loading the entire record
use an advanced search and specify only the columns you need
m
Lets say we need all of the columns for the case, is such a slowness expected?
b
yes
m
One final question @battk Basic search returns a search id which we use for pagination. How long does that search id stays available, can we iterate pages one by one for long hours such as up to 12 hours?
b
m
Copy code
Search IDs expire if they have not been used within 15 minutes after their creation. Passing an expired or invalid searchId will return search results with a "failed" status and StatusDetailCode=INVALID_JOB_ID.
Thanks 👍