If I want my tap to drop the whole table every tim...
# singer-tap-development
t
If I want my tap to drop the whole table every time and start fresh how do I configure that? Chatgpt is telling me to add
replication_method = "FULL_TABLE"
to my stream class but that doesn't seem right
m
The tap isn't directly responsible for the behaviour of how the data is loaded by the target, but most targets would do that for streams marked as being "FULL_TABLE" where applicable
Also keep in mind that the replication method can be overridden, so if incremental replication is possible it's best to write the tap to support it and then users can force the stream to full when needed.