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
If the automation app docker that listens to and stores GitHub Events to an S3 Bucket is down, then we need to backfill the events that were not stored.
What solution would you like?
A lambda that uses this API to get the missing events and store them into S3. The API has a limitation that it can only get the past 3 days of events.
There are two API endpoints we can use to backfill the s3 events.
We can first use List Deliveries to list the delivery ids of the last 3 days worth of events. Then, using these delivery ids query Get Deliveries for the payload, taking care that the structure of the json uploaded to s3 is compatible.
Is your feature request related to a problem?
Coming from #76
If the automation app docker that listens to and stores GitHub Events to an S3 Bucket is down, then we need to backfill the events that were not stored.
What solution would you like?
A lambda that uses this API to get the missing events and store them into S3. The API has a limitation that it can only get the past 3 days of events.
There are two API endpoints we can use to backfill the s3 events.
List Deliveries
Get Deliveries
We can first use List Deliveries to list the delivery ids of the last 3 days worth of events. Then, using these delivery ids query Get Deliveries for the payload, taking care that the structure of the json uploaded to s3 is compatible.
Do you have any additional context?
Part of #57
The text was updated successfully, but these errors were encountered: