-
Notifications
You must be signed in to change notification settings - Fork 15
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
Implement State Capability #13
Comments
An example implementation is in tap-spreadsheets-anywhere |
@pnadolny13 - The above mentioned example is a file-based bookmark, where the update timestamp of the file is the bookmarked attribute. The CSV use case, however, seems better suited for a hash-key-based bookmark, where each record is hashed and the bookmark is essentially an array of "seen" records. Wdyt of file-based vs record-based implementation here? In the file-based model, all records in the file will come through if the file is modified. In the record-based model, any records already seen would be suppressed from an incremental stream. The reason I ask is because we'd benefit from a reference implementation of the spec here: |
@aaronsteers @pnadolny13 I'd appreciate both approaches being working together or independently:
Use cases:
|
Related to discussions in #11, we should implement state here.
The text was updated successfully, but these errors were encountered: