Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: cannot pickle 'LogicalReplicationConnection' object #22

Open
gunnarmorling opened this issue Jun 28, 2024 · 2 comments
Open

Comments

@gunnarmorling
Copy link

When trying to run the snippet from the README, I am getting the following error:

Traceback (most recent call last):
  File "/Users/gunnarmorling/Development/pgoutput-cli/test.py", line 11, in <module>
    cdc_reader = pypgoutput.LogicalReplicationReader(
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/Users/gunnarmorling/Development/pgoutput-cli/.venv/lib/python3.12/site-packages/pypgoutput/reader.py", line 138, in __init__
    self.setup()
  File "/Users/gunnarmorling/Development/pgoutput-cli/.venv/lib/python3.12/site-packages/pypgoutput/reader.py", line 146, in setup
    self.extractor.start()
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/process.py", line 121, in start
    self._popen = self._Popen(self)
                  ^^^^^^^^^^^^^^^^^
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/context.py", line 224, in _Popen
    return _default_context.get_context().Process._Popen(process_obj)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/context.py", line 289, in _Popen
    return Popen(process_obj)
           ^^^^^^^^^^^^^^^^^^
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/popen_spawn_posix.py", line 32, in __init__
    super().__init__(process_obj)
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/popen_fork.py", line 19, in __init__
    self._launch(process_obj)
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/popen_spawn_posix.py", line 47, in _launch
    reduction.dump(process_obj, fp)
  File "/opt/homebrew/Cellar/[email protected]/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/multiprocessing/reduction.py", line 60, in dump
    ForkingPickler(file, protocol).dump(obj)
TypeError: cannot pickle 'LogicalReplicationConnection' object

My Python-foo is quite limited, it seems this somehow is related to serializing this object? Would would that happen though? Thanks for any advice!

@gunnarmorling
Copy link
Author

Note I have used pypgoutput successfully in the past. If I had to guess, I'd say this may be caused by a change in this underlying library psycopg2?

@yaoqi
Copy link

yaoqi commented Feb 7, 2025

@gunnarmorling I encountered the same issue, and extracting the part of the framework that parses the message resolved the problem in my project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants