dolphinscheduler-sdk-python icon indicating copy to clipboard operation
dolphinscheduler-sdk-python copied to clipboard

Apache DolphinScheduler Python API, aka PyDolphinscheduler.

Results 35 dolphinscheduler-sdk-python issues
Sort by recently updated
recently updated
newest added

For example ``` from pydolphinscheduler.core import Workflow ``` to ``` from pydolphinscheduler import Workflow ```

We can not activate dolphinscheduler resource center in docker because we have to change common.properties. and I try to change them in https://github.com/apache/dolphinscheduler-sdk-python/pull/35/commits/34aa71b1f369fcb9cd3cce133dc19dd13869b938 by java properties but fail, we should...

improvement
test

We should only declare tenant once when we create a user instead of each time create workflows,

improvement
incompatible

Sometime, we hope out workflow can run success locally, and also can work in production environment, and we will they can use variable too. such as in locally ```py the_var...

enhancement

in https://github.com/apache/dolphinscheduler/issues/10911, we add new mechanisms for reading resource from other system, but in yaml define, we also have its own file resource syntax https://github.com/apache/dolphinscheduler-sdk-python/blob/6cd9784534eb3c78dbbf0daf53bf457a597fe3be/examples/yaml_define/Sagemaker.yaml#L24-L27 and we should combine then...

help wanted
improvement

Sometime user may want to overwrite workflow parameter during trigger workflow with CLI, such as: ```py with ProcessDefinition( name="tutorial", schedule="0 0 0 * * ? *", start_time="2021-01-01", tenant="tenant_exists", ) as...

enhancement
help wanted

# Highlights You can though link https://github.com/apache/dolphinscheduler/issues?q=is%3Aopen+is%3Aissue+label%3APython to see all our old issues in repository apache/dolphinscheduler # Background In https://github.com/apache/dolphinscheduler-sdk-python/pull/1 and https://github.com/apache/dolphinscheduler/pull/12779, we separate Python API code into this new...

help wanted
dep-main-repo

Sometimes we may create a PR base on apache/dolphinscheduler change, but DolphinScheduler-sdk-python only can run on dev head ref commit, we should find out a way to run on specific...

help wanted
chore

ive tried to create a workfow n task using below py code, how to get the status of this task from another python script dynamically. kindly help. # [start workflow_declare]...