Status Update
Comments
se...@google.com <se...@google.com> #2
Hi,
This behavior has been fixed.
Regards.
am...@var.fr <am...@var.fr> #3
[Deleted User] <[Deleted User]> #4
am...@var.fr <am...@var.fr> #5
ad...@motorolasolutions.com <ad...@motorolasolutions.com> #6
ga...@hakesbrothers.com <ga...@hakesbrothers.com> #7
UPDATE: Unchecked
Enable Chrome V8 runtime checkbox and re-saved my appscript - and now what was talking 5-6 minutes but sometimes longer now finishes in less than 2 minutes every time.
am...@var.fr <am...@var.fr> #8
dm...@wurkspaces.dev <dm...@wurkspaces.dev> #9
am...@var.fr <am...@var.fr> #10
JP...@clairescourt.net <JP...@clairescourt.net> #11
On Thu, 26 Jan 2023 at 08:53, <buganizer-system@google.com> wrote:
--
John Carr
Data Manager
Tel - 01628 327614
--
Claires Court
Schools Ltd. Registered in England No. 3680796
Registered Office: 1
College Avenue, Maidenhead SL6 6AW
This message is private and
confidential. If you have received this message in error, please notify us
and remove it from your system. Any views or opinions expressed are solely
those of the author and do not necessarily represent those of Claires Court
Schools Limited
sb...@google.com <sb...@google.com>
is...@google.com <is...@google.com>
pa...@pcg.io <pa...@pcg.io> #12
Would be really great if fixed.
ju...@gmail.com <ju...@gmail.com> #13
co...@gmail.com <co...@gmail.com> #14
am...@var.fr <am...@var.fr> #15
JP...@clairescourt.net <JP...@clairescourt.net> #16
routines unusable.
Also Google has the annoying habit of migrating sheets to use V8 silently
so things stop working without notice.
Thanks and regards
On Mon, 12 Jun 2023 at 08:43, <buganizer-system@google.com> wrote:
--
John Carr
Data Manager
Tel - 01628 327614
--
Claires Court
Schools Ltd. Registered in England No. 3680796
Registered Office: 1
College Avenue, Maidenhead SL6 6AW
This message is private and
confidential. If you have received this message in error, please notify us
and remove it from your system. Any views or opinions expressed are solely
those of the author and do not necessarily represent those of Claires Court
Schools Limited
lu...@nextories.com <lu...@nextories.com> #17
Have to disable V8 on all my scripts using JDBC.
jp...@google.com <jp...@google.com>
jp...@google.com <jp...@google.com> #18
I am marking this issue as FIXED
as the internally reported issue has been marked as FIXED
. Please note that there may be a delay in rolling this out to production. Thank you for your patience and please comment here if the issue remains.
co...@gmail.com <co...@gmail.com> #19
jp...@google.com <jp...@google.com>
jp...@google.com <jp...@google.com> #20
I am marking this issue as FIXED
as the internally reported issue has been marked as FIXED
. Please note that there may be a delay in rolling this out to production. Thank you for your patience and please comment here if the issue remains.
jp...@google.com <jp...@google.com> #21
Silly automation. :(
Can you reopen with a fully reproducible example? Thanks!
ad...@gmail.com <ad...@gmail.com> #22
Thanks,
jp...@google.com <jp...@google.com> #23
It was stated that it was rolled out in July 2022 however there are multiple things going on in this issue. Let's split them up and include a minimal code sample for each if it persists. Thanks for your patience in addressing the issue backlog!
ad...@gmail.com <ad...@gmail.com> #24
function pullNameList() {
try {
var conn = getDBSSLConnection() //our function to get DB connection using SSL auth to cloud SQL
var stmt = conn.prepareStatement('SELECT DISTINCT name FROM names order by name asc');
var results = stmt.executeQuery();
var numCols = results.getMetaData().getColumnCount();
var data = [];
while (results.next()) {
data.push(results.getString(1));
}
results.close();
stmt.close();
return JSON.stringify(data);
} catch (e) {
throw "DB operation failed due to" + e.toString();
return "FAILED";
}
}
pa...@pcg.io <pa...@pcg.io> #25
am...@var.fr <am...@var.fr> #26
jp...@google.com <jp...@google.com> #27
Tracking the results.next()
iteration issue in
ss...@gmail.com <ss...@gmail.com> #28
Give it a try.
ag...@galenvs.com <ag...@galenvs.com> #29
January 2025 - almost 3 years later. Issue still persists. This is preventing me from migrating my scripts to the V8 runtime, as the JDBC results.next() iterator in V8 is basically unusable. I wish we could get some sort of status update!
ad...@gmail.com <ad...@gmail.com> #30
jp...@google.com <jp...@google.com> #31
I am confident google has abandoned the apps script platform. We should look to migrating away from it if this is the level of support.
You are confidently incorrect.
JDBC performance in Apps Script has additional overhead due to the change to V8 from Rhino. Rhino, a Java execution engine, has better performance for executing Java libraries than the translations required for V8 to do the same which adds overhead. This is expected and the benefits for using V8 over Rhino are obvious for nearly all users.
JDBC is not a priority for most Apps Script users and you can create your own REST layer or use a database HTTP plugins and UrlFetchApp
.
ad...@gmail.com <ad...@gmail.com> #32
"JDBC is not a priority for most Apps Script users", but perhaps I'm in the biased minority of customers still hanging on and most have moved on.
That being said, is the official directive from google this? "JDBC is not a priority for most Apps Script users and you can create your own REST layer or use a database HTTP plugins and UrlFetchApp." While I appreciate the technical explanation you provided above for the performance issues, it does not solve the performance issues we see with JDBC in V8 and it is unusable in its current state as outlined by the users in the thread above.
If the official directive is that we should be using alternative means of communications like what you suggested with REST layer or plugins we should update the docs to reflect that. (
cr...@taggart-intl.com <cr...@taggart-intl.com> #33
JP...@clairescourt.net <JP...@clairescourt.net> #34
daily, having to move to an alternative would be a very bad reflection on
Google's attitude to their users who adopt and promote their products.
On Mon, 6 Jan 2025 at 20:33, <buganizer-system@google.com> wrote:
--
John Carr
Data Manager
Tel - 01628 327614
<
--
Claires Court
Schools Ltd. Registered in England No. 3680796
Registered Office: 1
College Avenue, Maidenhead SL6 6AW
This message is private and
confidential. If you have received this message in error, please notify us
and remove it from your system. Any views or opinions expressed are solely
those of the author and do not necessarily represent those of Claires Court
Schools Limited
Description
A short description of the issue:
Many users have reported performance issues as the ones on Problems with V8 runtime and JDBC :
This is being created to track the performance issues