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
During the reveal-stage events Beam ETL process, the following read from OpenSRP was observed:
2021-02-22 07:39:55,032 [unbounded-source-system-consumer-0] INFO com.onaio.beam.etl.OpenSrpRestSource - Fetching next batch: serverVersion=1599116541924
2021-02-22 07:39:55,050 [unbounded-source-system-consumer-0] INFO com.onaio.beam.etl.OpenSrpRestSource - Fetched new batch: size=1
2021-02-22 07:39:55,051 [unbounded-source-system-consumer-0] INFO com.onaio.beam.etl.OpenSrpRestSource - Fetching next batch: serverVersion=1613979578956
This indicates that getAll() was called with version 1599116541924 and a batch was returned with a single value with version 1613979578955. When you call getAll() today, you get back at least 100 events before that server version:
You can see that the later serverVersion event (1613979578955) was created on February 22 (and was visible to the ETL on February 22), and the intermediate server version events (1599116542120) were not visible to the ETL.
It's possible this is a Beam ETL bug, however the NiFi ETL raw_events table also does not contain entries for these intermediate events (and generally both ETLs seem to be missing a lot of events in this range). Was there a server clock reset or something going on?
The text was updated successfully, but these errors were encountered:
During the reveal-stage events Beam ETL process, the following read from OpenSRP was observed:
This indicates that getAll() was called with version 1599116541924 and a batch was returned with a single value with version 1613979578955. When you call getAll() today, you get back at least 100 events before that server version:
Note the final event in this batch was created in March.
When you look at the event with the weird 1613979578955 server version:
You can see that the later serverVersion event (1613979578955) was created on February 22 (and was visible to the ETL on February 22), and the intermediate server version events (1599116542120) were not visible to the ETL.
It's possible this is a Beam ETL bug, however the NiFi ETL raw_events table also does not contain entries for these intermediate events (and generally both ETLs seem to be missing a lot of events in this range). Was there a server clock reset or something going on?
The text was updated successfully, but these errors were encountered: