Hey, I am trying to move our meltano setup from el...
# troubleshooting
n
Hey, I am trying to move our meltano setup from elts to defined jobs. I have a bunch of extractors and loaders defined using
inherit_from
to specify variations of extractions and loads to the same set of sources. However, I am getting this error when trying to run my job:
Copy code
meltano.core.block.blockset.BlockSetValidationError: block violates set requirements: Unknown command type or bad block sequence at index 1, starting block 'my-plugin'
My extractor and loader share the same name, which I believe is valid, and my job looks like this:
Copy code
- name: my_job
  tasks:
    - my-plugin my-plugin
Follow-up question: would the correct state ID here be
dev:my-plugin-to-my-plugin
assuming dev is my environment?