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
After upgrading to Julia 1.9, I see that DBInterface.execute is taking a lot of time to precompile in Julia 1.9. The issue is that it is happening every time in a new session:
julia>@time DBInterface.execute(conn, query);
35.153157 seconds (22.41 M allocations:907.274 MiB, 0.39% gc time, 99.99% compilation time)
julia>@time DBInterface.execute(conn, query);
0.012925 seconds (1.59 k allocations:111.314 KiB, 80.52% compilation time)
I can reproduce this behavior in two machines (Intel Xeon and M1) when connecting to a MS SQL server.
I think everything can be highly improved if a precompile statement is added to the package.
The text was updated successfully, but these errors were encountered:
The precompilation did not help because it takes the same amount of time to load the package. Hence, there is not point in adding precompile statements, AFAIK.
Hi!
After upgrading to Julia 1.9, I see that
DBInterface.execute
is taking a lot of time to precompile in Julia 1.9. The issue is that it is happening every time in a new session:I can reproduce this behavior in two machines (Intel Xeon and M1) when connecting to a MS SQL server.
I think everything can be highly improved if a precompile statement is added to the package.
The text was updated successfully, but these errors were encountered: