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
when I tried to query SELECT DISTINCT(UPPER(category)) as value FROM academic_council;,
its resulting in a memory exhaust. this is the error trace:
<--- Last few GCs --->
n [8800:0x4610890] 30049 ms: Mark-sweep 1399.8 (1426.4) -> 1399.5 (1427.4) MB, 810.4 / 0.0 ms (+ 0.0 ms in 18 steps since start of marking, biggest step 0.0 ms, walltime since start of marking 822 ms) (average mu = 0.088, current mu = 0.016) allocation [8800:0x4610890] 31225 ms: Mark-sweep 1400.6 (1427.4) -> 1400.3 (1427.9) MB, 1168.1 / 0.0 ms (+ 0.0 ms in 18 steps since start of marking, biggest step 0.0 ms, walltime since start of marking 1176 ms) (average mu = 0.041, current mu = 0.007) allocatio
why is this happening? Can MySQL functions be queried this way?? When I tried the query from MySQL console, it was working correctly, so I don't think its an issue with my database
The text was updated successfully, but these errors were encountered:
From the error seems that the result of the query is too big for the heap assigned to node! How big is the result and how much memory has your node application ?
when I tried to query
SELECT DISTINCT(UPPER(category)) as value FROM academic_council;
,its resulting in a memory exhaust. this is the error trace:
why is this happening? Can MySQL functions be queried this way?? When I tried the query from MySQL console, it was working correctly, so I don't think its an issue with my database
The text was updated successfully, but these errors were encountered: