You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi team,
I am trying to read max size xlsx files of around 112 MBs . I am able to read them properly but my server which stays at around 30-40% CPU usage normally shows frequent CPU spikes of 90-98% while reading the file . Means this file reading jar is itself hitting CPU of around 20-30 % utilisation.
My usage of jar is as below :
`
InputStream is = null;
Workbook workbook = null;
int minLineDataLength=columnCount;
try {
is = new FileInputStream(new File(filePath));
workbook = StreamingReader.builder()
.rowCacheSize(100)
.bufferSize(4096)
.password(password)
.open(is);`
The text was updated successfully, but these errors were encountered:
@monitorjbl
Please provide help for the same , or a change in config can help . I can keep at max 5,000 rows in memory as it is a multi threaded code... Please suggest what changes in config are required to keep cpu util low
Hi team,
I am trying to read max size xlsx files of around 112 MBs . I am able to read them properly but my server which stays at around 30-40% CPU usage normally shows frequent CPU spikes of 90-98% while reading the file . Means this file reading jar is itself hitting CPU of around 20-30 % utilisation.
My usage of jar is as below :
`
The text was updated successfully, but these errors were encountered: