also i gave max old space size 6k
sallystalone
@sallystalone
Posts made by sallystalone
-
XLSX template rendering issueposted in general forum
Hi. I have a template and data like that:
https://playground.jsreport.net/w/anon/NO8QCVx3when i tried to render it in 2.11, 3.10, 4.10 it always timeouts and says Render Preview failed. network error. i have enough timeout time.
i tried to increase memory and cpu and i didn't worked.my config is:
{
"allowLocalFilesAccess":true,
"reportTimeout":5000000,
"chrome":{
"timeout":5000000,
"launchOptions":{
"args":[
"--disable-dev-shm-usage",
"--no-sandbox"
]
}
},
"store":{
"provider":"fs"
},
"extensions":{
"fs-store":{
"persistence":{
"timeout":50000000
},
"dataDirectory":"data",
"syncModifications":true,
"sync":{
"usePolling":true
}
},
"express":{
"renderTimeout":5000000,
"inputRequestLimit":"250mb"
},
"xlsx":{
"numberOfParsedAddIterations":5000
}
},
"templatingEngines":{
"numberOfWorkers":4,
"strategy":"dedicated-process"
}
} -
Excel Template Render Timeout issueposted in general forum
Hi. I have a excel template which includes charts and data.
When i tried to render without any code or etc, it waits like 7-10 minutes and says network error.
I tried in v3.10.0 and v4.10.1 and both says same.
My config like :{
"allowLocalFilesAccess": true,
"reportTimeout": 3500000,
"chrome": {
"timeout": 3500000,
"launchOptions": {
"args": [
"--disable-dev-shm-usage",
"--no-sandbox"
]
}
},
"store": {
"provider": "fs"
},
"extensions": {
"fs-store": {
"persistence": {
"timeout": 3500000
},
"dataDirectory": "data",
"syncModifications": true,
"sync": {
"usePolling": true
}
},
"express": {
"renderTimeout": 200000,
"inputRequestLimit": "250mb"
},
"xlsx": {
"numberOfParsedAddIterations": 5000
}
},
"templatingEngines": {
"numberOfWorkers": 2,
"strategy": "in-process"
}
}playground link :https://playground.jsreport.net/w/anon/TCeFenPI
-
RE: XLSX template rendering problem.posted in general forum
I can't delete it because there are formulas in the rows. When I tried it in v3.10.0, the approximate rendering time is more than 5 minutes. Is there a special config you use to render in 50 seconds? I mentioned that I encountered the same situation when I tried it in the playground version. Is there an approach without upgrading the version or mostly the all versions have the same issue?
-
XLSX template rendering problem.posted in general forum
Hello.
I have a jsreport template. I shared the link below. Here, jsreport takes a very long time in the xlsx section while rendering. I get either a timeout or socket hang up error when rendering both in the playground and in the v3.10.0 version, but when I switch to the v2.11.0 version, my xlsx template that I have already uploaded is rendered quickly. Also the config I use on the v3.10.0 sidejsreport playground link : https://playground.jsreport.net/w/anon/rlPbYIM~
jsreport.config.json
{
"allowLocalFilesAccess": true,
"reportTimeout": 4500000,
"chrome": {
"timeout": 4500000,
"launchOptions": {
"args": [
"--disable-dev-shm-usage"
]
}
},
"store": {
"provider": "fs"
},
"extensions": {
"fs-store": {
"dataDirectory": "data",
"syncModifications": true,
"sync": {
"usePolling": true
}
},
"express": {
"renderTimeout": 300000,
"inputRequestLimit": "550mb"
},
"xlsx": {
"numberOfParsedAddIterations": 500
}
},
"templatingEngines": {
"numberOfWorkers": 2,
"strategy": "in-process"
}
}How can I render this template on v3.10.0 and playgorund side?
Do you have any suggestions for this?