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
Hello, Is There A Config Option Where I Can Force All Steps In A Pipeline To Run In The Same Docker Container?

Hello, Is there a config option where I can force all steps in a Pipeline to run in the same Docker Container?

  
  
Posted one year ago
Votes Newest

Answers 2


I am defining a pipeline step as follows:
pipe.add_function_step(
name='Split Data',
function=step_one,
cache_executed_step=True,
)

from the docs I can only specify the docker image using docker kwarg

  
  
Posted one year ago

Hi @<1540867420321746944:profile|DespicableSeaturtle77> , I think you need to define it per step

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