clifford_mosley
11/04/2021, 3:22 PMselect:
- issues.*
- changelogs.*
- worklogs.*
- issue_comments.*
- projects.projectKeys
- projects.projectTypeKey
- projects.roles
- projects.self
- projects.simplified
- projects.url
- '!*.historyMetadata*'
running a meltano select tap-jira --list --all
shows that fields should be available ...
[selected ] issues.fields
[selected ] issues.fields.attachment
[selected ] issues.fields.created
[selected ] issues.fields.lastViewed
[selected ] issues.fields.updated
[selected ] issues.fieldsToInclude
I do in fact see an issues__fields__attachment table in postgres. Has anyone bumped into similar? I've tried limiting the select to only issues.fields and it yields the same behavior. Also tried applying some of the approaches @nick_hamlin and @douwe_maan discussed but was too clueless to fully understand them yet.nick_hamlin
11/04/2021, 3:27 PMissues.fields
select:
# In this case, it's easier to indicate what we DON'T want
- '*.*'
# Universally unhelpful fields
- '!*.self'
- '!*.properties'
- '*.url*'
# Cruft tables
- '!versions.*'
- '!project_types.*'
- '!project_categories.*'
# Cruft fields
- '!users.avatarUrls'
- '!users.expand'
- '!users.timeZone'
- '!resolutions.iconUrl'
- '!projects.url'
- '!changelogs.historyMetadata'
- '!issues.editmeta'
- '!issues.expand'
- '!issues.properties'
- '!issues.renderedFields'
- '!issues.schema'
clifford_mosley
11/04/2021, 3:28 PMstephen_bailey
11/04/2021, 4:26 PMfields
column in JIRA is just one massive thing i would not be surprised if it was split into a half dozen other files. can you list the tables in the target schema? I would expect them to be in issues__fields
and other similar tables like the issues__fields__attachment
one that you mention.stephen_bailey
11/04/2021, 4:27 PMdata_flattening_max_level
in pipelinewise-target-redshift:
(Default: 0) Object type RECORD items from taps can be loaded into VARIANT columns as JSON (default) or we can flatten the schema by creating columns automatically.
When value is 0 (default) then flattening functionality is turned off.
https://github.com/transferwise/pipelinewise-target-redshiftclifford_mosley
11/04/2021, 7:08 PMclifford_mosley
11/04/2021, 7:08 PMclifford_mosley
11/04/2021, 7:11 PM