conductor-python icon indicating copy to clipboard operation
conductor-python copied to clipboard

Conductor OSS SDK for Python programming language

Results 32 conductor-python issues
Sort by recently updated
recently updated
newest added

As for now it's impossible for me to use KafkaPublish task due to swagger issue. I've added a KafkaPublishTask to my workflow, it looks like this: ``` def send_kafka_message_task( workflow_id:...

If we look at how the Java SDK is implemented, ``` public boolean registerWorkflow(WorkflowDef workflowDef, boolean overwrite) { try { if (overwrite) { metadataClient.updateWorkflowDefs(Arrays.asList(workflowDef)); } else { metadataClient.registerWorkflowDef(workflowDef); } return...

There are two sets of integration tests, one for testing registration, the other execution. The registration test tries to register a workflow, which requires simple tasks and sub-workflow to be...

enhancement

- Add new parameter for `batchSize` - Each worker will have a standalone subprocess to poll indefinitely - For each polled task, start a new subprocess to execute and update...

enhancement

Hi everyone 👋, I'm encountering a problem when trying to run the helloworld script. The error message I receive is a PicklingError related to multiprocessing. It seems that the issue...

Hello everyone, My team seems to have stumbled upon a really weird issue with the conductor python sdk where the memory of the worker continues to climb until the worker...

While runing python conductor I am getting following error. EOFError: Ran out of input: The detailed stacktrace is given below: ```(venv) F:\differentbyte\conductor_test>python helloworld.py 2024-10-03 22:01:21,229 [13468] conductor.client.automator.task_handler INFO created worker...

I've been working on a basic secrets management example, the idea being to push tokens into Orkes/Conductor for various purposes. Have the following example code: ```python from conductor.client.configuration.configuration import Configuration...