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
Profile picture
DespicableSeaturtle77
Moderator
1 Question, 4 Answers
  Active since 27 February 2023
  Last activity one year ago

Reputation

0

Badges 1

Eureka!
0 Votes
2 Answers
640 Views
0 Votes 2 Answers 640 Views
Hello, Is there a config option where I can force all steps in a Pipeline to run in the same Docker Container?
one year ago
0 Hi Everyone! When I Execute

Solved my issue by adding this before the Task.init()
Task.force_requirements_env_freeze(requirements_file='./requirements.txt')

one year ago
0 Hello, Is There A Config Option Where I Can Force All Steps In A Pipeline To Run In The Same Docker Container?

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

one year ago
0 Hi Everyone! When I Execute

incompatibility issue because the agent was trying to setup a version of numpy not supported.
image
image

one year ago
0 Hi Everyone! When I Execute

I have a question regarding docker mode use here, I want to run my task remotely on docker, when I execute the script containing task.execute_remotely(), it analyzes the packages in the current env which are different from the ones needed.
I also tried using the task.set_packages('./requirements.txt')
but it didn't work

one year ago