rigerta
09/27/2023, 12:30 PMmeltano.yml
while defining column selection already (equivalent of using a WHERE
clause in the select definition)?
And for JSON columns, is it possible to only select some elements of it as columns and not the whole body already in the select definition?edgar_ramirez_mondragon
09/27/2023, 3:52 PMIs it possible to pre-filter datasets in thePre-filtering meaning that you pull only the selected fields (i.e. "push down" filtering) vs pulling everything then filter out fields in memory? That's totally doable with the singer SDK by leveraging the Stream.mask mapping.while defining column selection already (equivalent of using ameltano.yml
clause in the select definition)?WHERE
And for JSON columns, is it possible to only select some elements of it as columns and not the whole body already in the select definition?Yes. This thread might help (discuss.meltano.com).
rigerta
09/28/2023, 8:11 AM