Hello guys! I have a problem with LOG_BASED repli...
# troubleshooting
p
Hello guys! I have a problem with LOG_BASED replication between two postgres databases.
Copy code
meltano elt tap-postgres target-postgres --state-id=replication_try
I run a job with some state-id and see following state info:
Copy code
{
  "singer_state": {
    "bookmarks": {
      "public-main_inforeason": {
        "last_replication_method": "LOG_BASED",
        "lsn": 2201121016416,
        "version": 1661534009443,
        "xmin": null
      },
      "public-main_lom": {
        "last_replication_method": "LOG_BASED",
        "lsn": 2201121016416,
        "version": 1661534009760,
        "xmin": null
      },
      "public-main_lomsource": {
        "last_replication_method": "LOG_BASED",
        "lsn": 2201121016416,
        "version": 1661534014593,
        "xmin": null
      },
      "public-main_source": {
        "last_replication_method": "LOG_BASED",
        "lsn": 2201121016416,
        "version": 1661534022261,
        "xmin": null
      },
      "public-main_theme": {
        "last_replication_method": "LOG_BASED",
        "lsn": 2201121016416,
        "version": 1661534022350,
        "xmin": null
      }
    },
    "currently_syncing": null
  }
}
It is strange, that xmin is null Also each new run produce "Full Table replication". How can i fix this? Thank you!