Hey there, trying to remove the select pattern fro...
# getting-started
m
Hey there, trying to remove the select pattern from a
tap-jira
extractor in my Meltano project.
Copy code
$ meltano select tap-jira --rm projects key
Usage: meltano select [OPTIONS] EXTRACTOR [ENTITIES_FILTER]
                      [ATTRIBUTES_FILTER]
Try 'meltano select --help' for help.

Error: no such option: --rm
What am I doing wrong?
Copy code
$ meltano --version
meltano, version 1.82.0
v
If you run --help you'll get
Copy code
Usage: meltano select [OPTIONS] EXTRACTOR [ENTITIES_FILTER]
                      [ATTRIBUTES_FILTER]

  Execute the meltano select command.

Options:
  --list
  --all
  --rm, --remove
  --exclude
  --database-uri TEXT  System database URI
  --help               Show this message and exit.
So your command changes to
meltano select --rm tap-jira projects key
m
Copy code
$ meltano select --help
Usage: meltano select [OPTIONS] EXTRACTOR [ENTITIES_FILTER]
                      [ATTRIBUTES_FILTER]

  Execute the meltano select command.

Options:
  --list
  --all
  --exclude
  --database-uri TEXT  System database URI
  --help               Show this message and exit.
Copy code
$ meltano select --rm tap-jira projects key
Usage: meltano select [OPTIONS] EXTRACTOR [ENTITIES_FILTER]
                      [ATTRIBUTES_FILTER]
Try 'meltano select --help' for help.

Error: no such option: --rm
v
That's strange as I tested this just to be sure I was right 😄
m
appreciate the help though 👍
v
Ahh you need to upgrade meltano
1.83.0
m
beaut! thanks @visch, works now 👍
v
You're welcome! Good luck 😄