Love Eklund
09/11/2024, 5:31 PMMatt Menzenski
09/11/2024, 7:03 PMLove Eklund
09/16/2024, 12:14 PMplugins:
extractors:
- name: tap-oracle
variant: s7clarke10
pip_url:
git+<https://github.com/s7clarke10/pipelinewise-tap-oracle.git@53bb75ed27d7796d2f492e74cec87f10f1bce4d4>
config:
use_ora_rowscn: false
ora_python_driver_type: thick
use_singer_decimal: true
- name: tap-oracle-demo_foo
inherit_from: tap-oracle
config:
user: demo
host: 123
port: 420
service_name: foo
- name: tap-oracle-demo_foo-full_table
inherit_from: tap-oracle-demo_foo
config:
default_replication_method: FULL_TABLE
- name: tap-oracle-demo_foo-full_table-bar_baz
inherit_from: tap-oracle-demo_foo-full_table
select:
- bar-baz.*
- name: tap-oracle-demo_foo-full_table-asd_qwe
inherit_from: tap-oracle-demo_foo-full_table
select:
- asd-qwe.*
when running meltano install
I get the following output.
2024-09-16T09:45:39.392382Z [info ] Installing 8 plugins
2024-09-16T09:45:39.392942Z [info ] Skipped installing extractor 'tap-oracle-demo_foo'
2024-09-16T09:45:39.393006Z [info ] Skipped installing extractor 'tap-oracle-demo_foo-full_table-asd_qwe'
2024-09-16T09:45:39.393708Z [info ] Installing extractor 'tap-testsource'
2024-09-16T09:45:39.408495Z [info ] Installing extractor 'tap-oracle'
2024-09-16T09:45:39.454512Z [info ] Installing extractor 'tap-oracle-demo_foo-full_table'
2024-09-16T09:45:39.587498Z [info ] Installing extractor 'tap-oracle-demo_foo-full_table-bar_baz'
2024-09-16T09:45:39.763693Z [info ] Installing loader 'target-jsonl'
2024-09-16T09:45:39.776647Z [info ] Installing loader 'target-bigquery'
2024-09-16T09:45:43.563063Z [info ] Installed loader 'target-jsonl'
2024-09-16T09:45:46.557149Z [info ] Installed extractor 'tap-oracle'
2024-09-16T09:45:46.708771Z [info ] Installed extractor 'tap-oracle-demo_foo-full_table'
2024-09-16T09:45:46.938197Z [info ] Installed extractor 'tap-oracle-demo_foo-full_table-bar_baz'
2024-09-16T09:45:48.596501Z [info ] Installed extractor 'tap-testsource'
2024-09-16T09:45:55.892412Z [info ] Installed loader 'target-bigquery'
2024-09-16T09:45:55.892868Z [info ] Installed 6/8 plugins
2024-09-16T09:45:55.892947Z [info ] Skipped installing 2/8 plugins
it skips the asd_qwe
but installs the bar_baz
why?
I assume here due to Skipped installing extractor 'tap-oracle-demo_foo'
the that no venv is created for the tap-oracle-demo_foo
but this is the result I get in the .meltano folder ( see attached screenshot).Facundo Miño
09/16/2024, 3:22 PMtap-spreadsheets-anywhere
and it works perfect reading until 100k rows, after that it got freezed my pc (i have a macbook pro m2). I’m quite new here so, any suggestions are well received!haleemur_ali
09/16/2024, 8:42 PMTyler P
09/19/2024, 10:00 PMFacundo Miño
09/20/2024, 1:06 PMfraser__dagster_labs_
10/02/2024, 9:10 PMOSA CON, the free, online open-source conference, is now open for registration.
3 days of events, 40+ sessions, and we expect 2,500 participants.
Join us November 19-21, 2024. The prizes for early registration are still up for grabs, I believe.
https://osacon.io/
Andrew Gelinas
10/30/2024, 2:08 AMReuben (Matatika)
11/07/2024, 10:54 AM{
"message": "Forbidden - a valid `x-typesense-api-key` header must be sent."
}
Cristina Munteanu
11/13/2024, 9:43 PMReuben (Matatika)
11/28/2024, 11:03 AMtap-spotify
is now Reuben (Matatika)
12/17/2024, 5:13 PMAdam Wegscheid
01/09/2025, 1:59 PMMONIKA RAJPUT
01/13/2025, 6:03 PMIan OLeary
01/14/2025, 7:22 PMmeltano state list
, meltano state get <stateid>
ayoade_abel_adegbite
01/16/2025, 4:53 PMIan OLeary
01/27/2025, 5:04 PMAdam Wegscheid
01/27/2025, 8:31 PMMELTANO_EXTRACT_PRIVATE_TOKEN
for the private_token
setting, and MELTANO_EXTRACT__LOAD_SCHEMA
for the load_schema
extra
> • `SETTING_ENV`: all of the extractor's regular configuration environment variables, as listed by meltano config <plugin> list
, e.g. TAP_GITLAB_API_URL
for the api_url
setting
1. When do you use one underscore before the setting name and when do you use two?
a. MELTANO_EXTRACT_PRIVATE_TOKEN
b. MELTANO_EXTRACT__LOAD_SCHEMA
2. Is MELTANO_EXTRACT and TAP_GITLAB interchangeable? For example, will MELTANO_EXTRACT_API_URL have the same impact on the run as TAP_GITLAB_API_URL?Kartik Shah
01/28/2025, 8:52 AMSamaksh Agarwal
01/29/2025, 7:32 AMNick Mitchum
02/13/2025, 4:00 PMchiara
03/04/2025, 4:45 PMTaylor Murphy (Arch)
03/09/2025, 12:40 AMIan OLeary
03/10/2025, 8:44 PMIan OLeary
03/12/2025, 11:51 PMSamuel Nogueira Farrus
04/09/2025, 11:32 AMvisch
04/13/2025, 8:14 PMWITH json_messages AS (
SELECT payload::jsonb AS payload_json
FROM tap_gmail.messages
), parsed as (
SELECT
header ->> 'value' AS sender
FROM json_messages,
jsonb_array_elements(payload_json -> 'headers') AS header
WHERE header ->> 'name' = 'From'
)
select sender, count(*)
from parsed
group by sender
order by count(*) desc
- name: tap-gmail
namespace: tap_gmail
pip_url: git+<https://github.com/AutoIDM/tap-gmail.git>
executable: tap-gmail
capabilities:
- state
- catalog
- discover
settings:
- name: oauth_credentials.client_id
- name: oauth_credentials.client_secret
- name: oauth_credentials.refresh_token
- name: user_id
- name: messages.q
config:
messages.q: label:inbox
select:
- message_list.*
- messages.*
No easy way to group Google Inboxes by Sender
Here's some output as I was trying to 0 out my inbox that I was behind on
Google Voice <voice-noreply@google.com> 51
Smart Plugin Manager <smart.plugin.manager@wpengine.com> 24
The Google Workspace Team <workspace-noreply@google.com> 20
HubSpot <noreply@notifications.hubspot.com> 19
Stripe <notifications@stripe.com> 18
Samuel Nogueira Farrus
04/30/2025, 2:11 PMtap-rest-api-msdk
?? My case: I want to extract info from Jenkins REST API, for each pipeline, so the URL paths would depend on their names, which can be changed, deleted or new ones can be created.Samuel Nogueira Farrus
04/30/2025, 7:25 PM.env
variables according to environments?? My case: I have two environments named prod1
and prod2
and my target-postgres
credentials are different for each, so I would like to have them both at the .env
file and switch according to the environment, if possible (also, I do accept workarounds and bypasses).