jan_soubusta
12/05/2023, 8:45 AMpoetry run pytest
It got stuck forever at 99%. Advice?
My local setup is: Latest Ubuntu, Python 3.10.omu inetimi
01/16/2024, 5:18 PMM
01/17/2024, 3:57 PMjan_soubusta
01/18/2024, 9:26 AMmeltano compile
creates manifest.json.
The problem is that it does not expand attributes in streams.
Example: using tap-github, I declare workflows.*
. When I run the compile, manifest.json contains workflows.*
, the wildcard is not expanded.
Current workaround solution:
Run meltano select --list --all
and extract selected (and expanded) attributes for the workflows stream.
It is not an ideal workaround because meltano select
command much slower than meltano compile
.
Questions:
• Would it feasible to extend the meltano compile
command accordingly?
• If yes, I can contribute, if anyone is so kind to guide me 😉
cc: @Justin Cohenjan_soubusta
01/22/2024, 11:55 AMMindaugas Nižauskas
01/30/2024, 12:54 PMMindaugas Nižauskas
01/31/2024, 6:08 AMclement
01/31/2024, 12:50 PMJared Garvin-Joseph
02/07/2024, 8:52 PMJared Garvin-Joseph
02/14/2024, 3:55 PMMatt Menzenski
02/16/2024, 1:18 AMRaül Bonet
03/19/2024, 10:08 AMload_method
= overwrite
, which we would get out of the box with the current version of the SDK). I posted a comment here and I am willing to take over the refactor.
2. The column caching seems to throw wrong results on schema changes. I also posted my opinion here
Looking forward to contributing!rene_czepluch
03/25/2024, 9:36 AMhaleemur_ali
03/27/2024, 3:24 PMDevansh Malik
04/15/2024, 7:01 PMjoshua_janicas
06/05/2024, 3:45 PMMindaugas Nižauskas
07/03/2024, 2:43 PMben_theunissen
07/18/2024, 4:22 PMConner Panarella
07/25/2024, 3:15 PMtap-airbyte-wrapper
which breaks Docker functionality. I created a PR to fix it: https://github.com/MeltanoLabs/tap-airbyte-wrapper/pull/20visch
07/26/2024, 3:34 PMTrish Gillett
07/29/2024, 3:53 PMEdgar Ramírez (Arch.dev)
07/30/2024, 7:43 PMEdgar Ramírez (Arch.dev)
08/01/2024, 5:49 PMpablo_seibelt
08/14/2024, 2:53 PMhaleemur_ali
09/11/2024, 2:44 AMvisch
10/25/2024, 7:16 PMinvoke
have --refresh-catalog
(.venv) visch@visch-work-2:~/git/ironman_meltano$ meltano invoke --help
Usage: meltano invoke [OPTIONS] PLUGIN_NAME[:COMMAND_NAME] [PLUGIN_ARGS]...
Invoke a plugin's executable with specified arguments.
Read more at <https://docs.meltano.com/reference/command-line-interface#invoke>
Options:
--print-var TEXT Print to stdout the values for the provided
environment variables, as passed to the
plugininvoker context. Useful for debugging.
--plugin-type [extractor|extractors|loader|loaders|transform|transforms|orchestrator|orchestrators|transformer|transformers|file|files|utility|utilities|mapper|mappers|mapping|mappings]
--dump [catalog|config] Dump content of specified file to disk.
--list-commands List the commands supported by the plugin.
--containers Execute plugins using containers where
possible.
--install Install the subject plugin(s) automatically.
--no-install Do not install the subject plugin(s)
automatically.
--only-install Only install the subject plugin(s).
--database-uri TEXT System database URI.
--help Show this message and exit.
Trying to give steps for someone to dump the catalog they have without telling them to delete .meltano/
or a clean installReuben (Matatika)
12/06/2024, 4:37 PMv3.6.0
due for release soon? I'd like to upgrade our platform to leverage https://github.com/meltano/meltano/pull/8815.Abhishek Singh
01/20/2025, 5:12 PMvisch
05/01/2025, 3:16 PMasync def _outstream_handler_tap(self, handle, name, procname, queue):
data = "initial"
i = 0
queue_max_size = queue.maxsize
while data:
data = await handle.readline()
line = data.decode()
if data:
await queue.put(line)
i = i + 1
if (i >= (queue_max_size*.1)):
i = 0
if (queue.qsize() >= queue_max_size*.1):
<http://logging.info|logging.info>(f"Queue Size is >10% currently at: {queue.qsize()}. Max Queue size is: {queue_max_size}. Target is behind")
I'm having some back pressure issues and haven't dove in, but it'd be nice to know if the target wasn't keeping up with the tapEdgar Ramírez (Arch.dev)
05/08/2025, 3:39 PM