Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, Guys! Encountered Strange Behavior. My Task Has Been Completed( De Facto ( I Can Clearly See That Code Inside The Task Has Been Executed)), But The Next Step In The Pipeline Didn'T Start+ The Task Is Still In The Running Process(De Jure) . I Have A Su

Hi, guys! Encountered strange behavior. My task has been completed( de facto ( I can clearly see that code inside the task has been executed)), but the next step in the pipeline didn't start+ the task is still in the running process(de jure) . I have a suggestion that smth happens during this code execution

It’s clearml code:

result_names = ['preprocess_data_id']
if result_names:
if not isinstance(results, (tuple, list)) or len(result_names) == 1:
results = [results]
parameters = dict()
parameters_types = dict()
for name, artifact in zip(result_names, results):
if type(artifact) in (float, int, bool, str):
parameters[return_section + '/' + name] = artifact
parameters_types[return_section + '/' + name] = get_basic_type(artifact)
else:
task.upload_artifact(
name=name,
artifact_object=artifact,
extension_name='.pkl' if isinstance(artifact, dict) else None,
serialization_function=None
)
if parameters:
task._set_parameters(parameters, __parameters_types=parameters_types, __update=True)

Do you have any ideas whats going on ?)

  
  
Posted 3 months ago
Votes Newest

Answers 3


Didn't had that problem, sorry I can not help you. 😢

  
  
Posted 3 months ago

Hey, I had similar problem. Take a look here: None

As I understood, pipeline controller is a task, and it blocks queue. I solved problem by adding one more agent.

  
  
Posted 3 months ago

Thanks for your reply. As far as I understand in your case, you have a problem with running the pipeline and finding a task in the queue. In my case, the pipeline is running and the task is running, but the task is not completed when all the calculations are done. It is just stays in running mode forever...

  
  
Posted 3 months ago
342 Views
3 Answers
3 months ago
3 months ago
Tags