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
expect query to download results within 20 seconds
Module based on node-jdbc downloaded results in 80 seconds. Profiling showed resultSetIterator.rows.next() to work slowly (resultSetIterator is obtained by calling resultSet.toObjectIter()).
We had to abandon node-jdbc and rewrite DB client part of system in Java, and call it using nodejs subprocess spawn. It now performs fine.
The text was updated successfully, but these errors were encountered:
We did a stress test to our module:
Module based on
node-jdbc
downloaded results in 80 seconds. Profiling showedresultSetIterator.rows.next()
to work slowly (resultSetIterator
is obtained by callingresultSet.toObjectIter()
).We had to abandon
node-jdbc
and rewrite DB client part of system in Java, and call it using nodejssubprocess
spawn. It now performs fine.The text was updated successfully, but these errors were encountered: