Hello team, Anyone is using snowflake tap <https:/...
# singer-taps
h
Hello team, Anyone is using snowflake tap https://github.com/MeltanoLabs/tap-snowflake? I noticed its not maintaining any bookmarks in state.json for the tables. Also I dont seem to find a setting for start_date. For instance: below state.json after successfully pulling first time
Copy code
{
  "completed": {
    "singer_state": {
      "bookmarks": {
        "dw_hs-dim_accounts": {},
        "dw_hs-dim_activities": {
          "starting_replication_value": null
        }
      }
    }
  },
  "partial": {}
}
1
m
I believe this tap needs incremental sync to be manually configured, since there isn't a way for it to know which column should be used as the incremental key (if any): https://docs.meltano.com/guide/integration/#setting-metadata
1
🙌 1
h
thanks @mark_estey - this is very useful!