srini_kadamati__apache_superset_
08/13/2020, 2:49 PMtap-slack
the start_date
config parameter keeps getting reset (in the config json file) to May 1, 2020. Creepily, thats the same exact example date value to set for that. But it’s a bit odd that running elt actually causes it to change from Jan 1, 2020 or any other date to May 1, 2020.
Does anyone know a good reason why this may be happening? Do any other taps do this?douwe_maan
08/13/2020, 3:24 PM2020-01-01
in meltano config tap-slack
and meltano config tap-slack list
, but then when you actually run meltano elt
the value that gets saved in config.json
is 2020-05-01
?douwe_maan
08/13/2020, 3:25 PMconfig.json
, so if something weird is happening here it'd be Meltano's fault, not tap-slack
'ssrini_kadamati__apache_superset_
08/13/2020, 5:02 PMmeltano elt
and it gets reverted to 2020-05-01srini_kadamati__apache_superset_
08/13/2020, 5:02 PMstart_date
besides just editing config json file? I’m sure theres a command I just don’t rmr what it issrini_kadamati__apache_superset_
08/13/2020, 5:07 PMmeltano config tap-gitlab set start_date 2020-05-01T00:00:00Z
douwe_maan
08/13/2020, 5:08 PMMeltano is responsible for managing the configuration of all of a project's plugins, including its extractors and loaders. It knows what settings are supported by each plugin, and how and when different types of plugins expect to be fed that configuration.
This means that you do not need to manually craft the `config.json` files
expected by Singer taps and targets, because Meltano will generate them on the fly whenever an extractor or loader is used throughormeltano elt
.meltano invoke
srini_kadamati__apache_superset_
08/13/2020, 5:08 PMmeltano.yml
!douwe_maan
08/13/2020, 5:08 PMmeltano config tap-gitlab
, by setting the new value using meltano config <plugin> set
, or by editing meltano.yml
directlysrini_kadamati__apache_superset_
08/13/2020, 5:09 PM