I'm trying to reduce the number of API calls the S...
# best-practices
m
I'm trying to reduce the number of API calls the Salesforce tap uses. Would it work to: •
daily
-- run
tap --config config.json --discover > catalog.json
• every 15 minutes run
meltano elt --catalog catalog.json
I believe this would prevent the tap from using a bunch of API calls each run (i.e. it queries the metadata for every object that exists in SFDC) Has anyone tried something like this before?