Getting the error below, any insight? ```2022-08-1...
# advice-data-ingestion
r
Getting the error below, any insight?
Copy code
2022-08-19 15:54:53 source > 2022-08-19 15:54:53 ERROR i.d.p.ErrorHandler(setProducerThrowable):35 - Producer failure
2022-08-19 15:54:53 source > io.debezium.DebeziumException: java.time.format.DateTimeParseException: Text '0' could not be parsed at index 0
2022-08-19 15:54:53 source >    at io.debezium.pipeline.source.AbstractSnapshotChangeEventSource.execute(AbstractSnapshotChangeEventSource.java:85) ~[debezium-core-1.9.2.Final.jar:1.9.2.Final]
g
a few people running into this issue now https://discuss.airbyte.io/t/potgres-sync-fail-after-update-0-4-0-1-0-2/2270/4 must be due to an update on the cursor field for incremental models. see PR https://github.com/airbytehq/airbyte/pull/14356
if you’re using MySQL source, reverting back to
0.6.2
will fix it
r
@Rocky Appiah would you be willing to share the logs on this github issue that was filed? Our team is actively prioritizing this error
r
@Ryan: yes, will do
note: source is postgres, not mysql
Should I change postgres to 1.0.0?
or 1.0.1?
s
Can you also share the schema of the tables so that we can reproduce this on our end
r
@Rocky Appiah I would suggest you revert back to the previous version of
source-postgres
that was stable for you since our team is still in the process of investigating
r
Copy code
\d audit;
                                        Table "public.audit"
   Column   |            Type             | Collation | Nullable |              Default
------------+-----------------------------+-----------+----------+-----------------------------------
 id         | integer                     |           | not null | nextval('audit_id_seq'::regclass)
 objectid   | text                        |           |          |
 accountid  | text                        |           |          |
 created    | timestamp without time zone |           |          | now()
 eventtime  | timestamp without time zone |           |          |
 meta       | jsonb                       |           |          |
 token      | text                        |           |          |
 action     | text                        |           |          |
 objecttype | text                        |           |          |
 originator | text                        |           |          |
Indexes:
    "audit_pkey" PRIMARY KEY, btree (id)
    "audit_accountid" btree (accountid)
    "audit_action" btree (action)
    "audit_cardreport_originator" btree (originator) WHERE originator = 'CARD_REPORT'::text
    "audit_objectid" btree (objectid)
    "audit_objecttype" btree (objecttype)
    "audit_time" btree (eventtime)
    "auditmeta" gin (meta jsonb_path_ops)
Publications:
    "airbyte_publication"
that’s what the table looks like
uploaded log file to issue here as requested.
s
Fix for postgres has been merged and published, version 1.0.4 should work without this issue
r
thanks - will test shortly!
it worked!!! awesome, thank you.