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 Everyone, How Can One Import Additional Requirements To The Pipeline While Remote Execution

Hi everyone, how can one import additional requirements to the pipeline while remote execution

  
  
Posted 8 months ago
Votes Newest

Answers 13


So I am running a pipeline(using tasks) remotely and one of my task is importing stuff from one of my local repository, but it's giving me an error when I run the pipeline remotely

  
  
Posted 8 months ago

Hi @<1610083503607648256:profile|DiminutiveToad80> , can you please elaborate on what you mean/want to do?

  
  
Posted 8 months ago

And also I have a requirements file which I want to be installed when I run the pipeline remotely

  
  
Posted 8 months ago

I am able to run the pipeline locally though

  
  
Posted 8 months ago

@<1610083503607648256:profile|DiminutiveToad80> , can you give a stand alone code example for such a pipeline that reproduces the issue? Each task should have it's own requirements logged. What is failing, the controller or individual steps?

  
  
Posted 8 months ago

individual steps are failing

  
  
Posted 8 months ago

So what I want to do is import the custom packages into my remote execution

  
  
Posted 7 months ago

All I need to do is

pip install -r requirements.txt
pip install .
  
  
Posted 7 months ago

I am able to get the requirements installed for each task

  
  
Posted 7 months ago

yes

  
  
Posted 7 months ago

I want to know how to execute pip install . to import all the custom packages

  
  
Posted 7 months ago

Custom packages which are just local to the repository cannot be installed, since the location of the cloned repository is not predefined

  
  
Posted 7 months ago

@<1610083503607648256:profile|DiminutiveToad80> is this local repository where the pipeline code resides?

  
  
Posted 7 months ago
521 Views
13 Answers
8 months ago
7 months ago
Tags