dylan_just
03/05/2024, 4:22 AMEdgar Ramírez (Arch.dev)
03/05/2024, 6:34 PMmaxLength
greater than 10,000.
You can force the schema of your TEXT field with Meltano's schema extra:
extractors:
- name: tap-postgres
schema:
my_schema-my_table:
my_text_column:
type: ["string", "null"]
maxLength: 30000
Edgar Ramírez (Arch.dev)
03/05/2024, 6:34 PMdylan_just
03/06/2024, 1:19 AMdylan_just
03/06/2024, 7:04 AMdylan_just
03/06/2024, 7:04 AM- name: tap-postgres
variant: transferwise
pip_url: pipelinewise-tap-postgres==2.1.0
- name: tap-hamilton
inherit_from: tap-postgres
load_schema: hamilton_raw_20220422
select:
- public-organisation.*
- public-organisation_member.*
- public-phone_call.*
- public-platform.*
- public-platform_member.*
- public-subdomain.*
- public-tag_definition.*
- public-tag_value.*
- public-team.*
- public-team_member.*
- public-team_setting.*
- public-queued_call_cleaned.*
- public-user.*
schema:
public-team_setting:
# target-redshift defaults to a max length of 10k, but team-settings can be much longer
value:
type: [ "string", "null" ]
maxLength: 65535
dylan_just
03/06/2024, 7:28 AMProperty `schema.properties.value` was not found in the schema of stream `public-team_setting`
dylan_just
03/06/2024, 12:58 PM