eric_formo
11/17/2023, 10:39 PMproperty_hs_line_item_global_term_hs_recurring_billing_start_date
property_hs_line_item_global_term_hs_recurring_billing_start_date_enabled
we get an error because there is already a column with a name property_hs_line_item_global_term_hs_recurring_billing_start_da
It seems like postgresql has a default max limit of 64, so this causes duplicate names.
A workaround I am trying is to exclude by using the select
and select_filter
in the configuration file, but this does not seem to be working as expected
Can someone provide me an example of a select, select_filter that would work with tab-hubspot to get everything, but ``property_hs_line_item_global_term_hs_recurring*` ?edgar_ramirez_mondragon
11/17/2023, 11:37 PMselect
should look something like:
plugins:
extractors:
- name: tap-hubspot
select:
- "*.*"
- "!<replace with the name of your stream>.property_hs_line_item_global_term_hs_recurring*"
You can confirm the selection with meltano select tap-hubspot --list --all
.eric_formo
11/18/2023, 12:01 AMeric_formo
11/18/2023, 12:01 AM"
vs not?edgar_ramirez_mondragon
11/18/2023, 12:13 AM- *.*
, YAML parsers will think you're trying to create a reference. I think the second element could actually be written without quotes, or maybe not 😅.
https://codebeautify.org/yaml-editor-online is a good option to quickly check your yaml.