Stéphane Burwash
09/05/2024, 11:24 AMmetlano run tap target
I would like to explode this into multiple tasks inside 1 job:
meltano run tap-stream_a target; meltano run tap-stream_b target; ...
Or even inside different jobs.
The easiest way in my mind to do this would be to create 1 child extractor per stream, but this would be a quite manual and tedious process.
I was wondering if there was a way in the CLI to select streams inside an extractor.
Example: meltano run tap.stream_a target; meltano run tap-stream_b target; ...
Please let me know if this question requires additional clarification. Thanks 😄visch
09/05/2024, 12:54 PMStéphane Burwash
09/05/2024, 1:55 PMStéphane Burwash
09/05/2024, 5:49 PMselect_filter-extra
feature is functional for the run
command?
Here is the output I am getting:
root@ee93c6fc5718:/project/meltano# meltano run tap-hibob target-jsonl --select employees_search
Usage: meltano run [OPTIONS] [BLOCKS]...
Try 'meltano run --help' for help.
Error: No such option: --select
root@ee93c6fc5718:/project/meltano#
Following the https://docs.meltano.com/concepts/plugins/?meltano-tabs=terminal#how-to-use-5 instructions.
I'm using meltano, version 3.5.0
Stéphane Burwash
09/05/2024, 5:52 PMelt
command
-s, --select TEXT Select only these specific entities for
extraction.
-e, --exclude TEXT Exclude these specific entities from
extraction.
Edgar Ramírez (Arch.dev)
09/05/2024, 5:53 PMmeltano run
, but the env vars should work, i.e. TAP_HIBOB__SELECT_FILTER=employees_search meltano run ...