meltano / hub

The single source of truth for all Meltano plugins, including all available Singer Taps and Targets: https://hub.meltano.com
https://hub.meltano.com
49 stars 62 forks source link

Add missing settings in high value places #936

Closed pnadolny13 closed 1 year ago

pnadolny13 commented 1 year ago

These are taps/targets that exist on the hub, are the default variant, have anonymous add usage in the last 6 months, but dont have any settings available. Not having settings makes for a pretty bad experience since you dont know what values it needs once its installed in your project, meaning you need to go read the repo readme or code.

Following https://github.com/meltano/hub/pull/935 we can run the hub_utils script for these taps and try to extract or prompt for missing settings so they're in good enough shape for users.

These are in order of most add requests:

tayloramurphy commented 1 year ago

This is great - we should cross-post this for Taptoberfest as well.

pnadolny13 commented 1 year ago

The query is:

SELECT *
FROM prod.MELTANO_HUB.FACT_VARIANT_HUB_METRICS 
LEFT JOIN prep.MELTANOHUB.STG_MELTANOHUB__PLUGINS
    ON FACT_VARIANT_HUB_METRICS.repo = STG_MELTANOHUB__PLUGINS.repo
WHERE COALESCE(FACT_VARIANT_HUB_METRICS.all_projects, 0) != 0
AND STG_MELTANOHUB__PLUGINS.is_default AND settings = []::ARRAY
ORDER BY FACT_VARIANT_HUB_METRICS.all_projects DESC;
pnadolny13 commented 1 year ago

I'm closing this issue since all settings have been updated except for 7 which have bugs or other issues. I created individual issues for each of those to track the bug/problem.