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 All, Is It Possible To Define Some Kind Of Conditional Retry Logic When Using Pipelines From Decorator? I’M Using The

Hi all, is it possible to define some kind of conditional retry logic when using pipelines from decorator? I’m using the retry_on_failure option on the @PipelineDecorator.component decorator and I’d like to retry a step only if it failed on specific errors. e.g. if it’s a connection issue, retry, otherwise fail. Is there a way to get the exception in the retry_on_failure callback? Or some kind of error message?

  
  
Posted one year ago
Votes Newest

Answers 2


Thanks @<1523701087100473344:profile|SuccessfulKoala55> , I’ll take a look

  
  
Posted one year ago

Hi @<1570220858075516928:profile|SlipperySheep79> , the callback received the node object, where you can find the job object - you might try to get some info from there

  
  
Posted one year ago
663 Views
2 Answers
one year ago
one year ago
Tags