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
{{ message }}
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
When running multiple notebooks at the same time using GreenplumPython, the backend pid of the session has changed while the db object id remains the same. I add that there is no session disconnection happend between the changes.
Session of the starting current notebook:
BACKEND SESSION PID: [RealDictRow([('pg_backend_pid', 11777)])]
DB OBJECT ID: 140420733129040
CREATE FUNCTION "pg_temp"."func_f8e86dfce7934fb98e098e9cc0eb75d6" (date "text") RETURNS "text" AS $$
After running several cells, the session pid has changed, which refers to another notebook's session:
BACKEND SESSION PID: [RealDictRow([('pg_backend_pid', 11780)])]
DB OBJECT ID: 140420733129040
function pg_temp.func_f8e86dfce7934fb98e098e9cc0eb75d6(text) does not exist
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When running multiple notebooks at the same time using GreenplumPython, the backend pid of the session has changed while the
db
object id remains the same. I add that there is no session disconnection happend between the changes.Session of the starting current notebook:
After running several cells, the session pid has changed, which refers to another notebook's session:
The text was updated successfully, but these errors were encountered: