-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
pass connection_id to replication activity apm tags #21949
pass connection_id to replication activity apm tags #21949
Conversation
.withDestinationResourceRequirements(config.getDestinationResourceRequirements()); | ||
.withDestinationResourceRequirements(config.getDestinationResourceRequirements()) | ||
.withConnectionId(connectionId) | ||
.withWorkspaceId(config.getWorkspaceId()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed workspace_id wasn't passed in here. But is passed in other places where we build this struct. @mfsiega-airbyte was that intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed not intentional - but same question as Pedro.
@@ -400,7 +400,9 @@ public TemporalResponse<StandardSyncOutput> submitSync(final long jobId, final i | |||
.withState(config.getState()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed source_id and destination_id wasn't passed in here. But is passed in other places where we build this struct. @pedroslopez was that intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not intentional. I didn't know submitSync was a thing when working on the original PR that introduced them.
I've actually been recently trying to understand where this submitSync method comes into play... when does this get executed? From what I've seen we're always using the inputs as generated by the GenerateInputActivity in actual sync jobs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tbh, i've lost track of it as well. @benmoriceau is this something you understand well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Airbyte Code Coverage
|
What
How
connection_id
as one of the keys that gets passed in viaStandardSyncInput
.