-
Notifications
You must be signed in to change notification settings - Fork 8
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
doc(fivetran_sdk): Updated development guide for partners #43
Conversation
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.
Need to reformat the statements.
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.
See my suggestions
Co-authored-by: Alex Ilyichov <[email protected]>
Co-authored-by: Alex Ilyichov <[email protected]>
Co-authored-by: Alex Ilyichov <[email protected]>
Co-authored-by: Alex Ilyichov <[email protected]>
Co-authored-by: Alex Ilyichov <[email protected]>
Co-authored-by: Alex Ilyichov <[email protected]>
Co-authored-by: Alex Ilyichov <[email protected]>
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.
LGTM
Co-authored-by: Emrah Diril <[email protected]>
Co-authored-by: Emrah Diril <[email protected]>
Co-authored-by: Emrah Diril <[email protected]>
Co-authored-by: Emrah Diril <[email protected]>
Co-authored-by: Emrah Diril <[email protected]>
Co-authored-by: Emrah Diril <[email protected]>
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 have requested some changes
Co-authored-by: Abdul Salam <[email protected]>
|
||
- `update_files` is for `update` operation where modified columns have actual values whereas unmodified columns have the special value `unmodified_string` in `CsvFileParams`. Soft-deleted rows will arrive in here as well. Update the `_fivetran_synced` column in the destination with the values coming in from the csv files. | ||
- `update_files` is for the `update` operation where modified columns have actual values whereas unmodified columns have the special value `unmodified_string` in `FileParams`. Soft-deleted rows will arrive in here as well. Update the `_fivetran_synced` column in the destination with the values coming in from the batch files. |
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.
Note: I will merging the CsvFileParams
and ParquetFileParams
into one i.e. FileParams
.
Ref: https://fivetran.height.app/T-725623
- `keys` is a map that provides a list of secret keys, one for each batch file, that can be used to decrypt them. | ||
|
||
- `file_params` provides information about the file type and any configurations applied to it, such as encryption or compression. | ||
|
||
Also, Fivetran will deduplicate operations such that each primary key will show up only once in any of the operations | ||
|
||
Do not assume order of columns in the batch files. Always read the CSV file header to determine column order. |
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.
Do not assume order of columns in the batch files. Always read the CSV file header to determine column order. | |
Do not assume order of columns in the batch files. Always read the columns of batch file to determine column order. |
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.
Approved with a nit comment
Related PR: #72 |
Closes https://fivetran.height.app/T-711151
Description of Changes
Updated development guide for partners