-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tables do not exist: data_integration_node_run #62
Comments
Did you run When you are new to mara, I suggest you to try out project https://github.com/mara/mara-example-project-1 where these things are automatically done by the makefile |
@hz-lschick Where is it mentioned in the README? It means your README info about setup is misleading? I am just following what is given there. |
@kadnan I am not sure what you are referring to. In the https://github.com/mara/mara-example-project-1 project it is written in the install section that you should "hit I would wish there would be a better documentation I could refer you to, but as of today, there isn't. |
@hz-lschick If you follow this README, you would not be able to run the hell world script at all. How can you make this script run without referring to the example project? I was misleading to this README. |
Never tried that. Maybe @martin-loetzsch can help here |
Hi @kadnan , since version 3.3.0, it is possible to run a pipeline without database. You will get a warning that the Here a example how to run a simple pipeline: Run a simple pipelineSet up a python virtual environment and enter into it: python3 -m venv .venv
source .venv/bin/activate Install the package: pip install mara-pipelines>=3.3.0 Create a python file from mara_pipelines.commands.bash import RunBash
from mara_pipelines.pipelines import Pipeline, Task
from mara_pipelines.ui.cli import run_pipeline
pipeline = Pipeline(
id='demo_pipeline',
description="My demo pipeline")
pipeline.add(
Task(id='ping_google',
description="Checks if google is available. Requires `ping` to be installed.",
commands=[
RunBash("ping google.com -c 4")
]))
run_pipeline(pipeline) Run the pipeline: python data_pipeline.py This worked for me quite well: I hope I was able to help you getting started with mara 😃 |
I am getting the error:
Running config code I only see the below. No tables were created:
The text was updated successfully, but these errors were encountered: