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
Is There An Example Of Simple Pipeline Using Task Scheduler? I Want To Create A Simple Pipeline Where First A Folder Is Monitored Using A Taskscheduler, And Under Certain Conditions, Data Is Uploaded And Dataset Id Is Given To The Next Step In The Pipeli

Is there an example of Simple Pipeline using Task Scheduler?

I want to create a simple pipeline where first a folder is monitored using a TaskScheduler, and under certain conditions, data is uploaded and dataset id is given to the next step in the pipeline step. I can't find a specific example for this.

  
  
Posted 2 years ago
Votes Newest

Answers 10


VexedCat68 , I don't think such an example exists, but if you create one it would be great if you opened a PR for the open source 🙂

  
  
Posted 2 years ago

Considering I don't think the function itself requires Venv to run normally but in this case it says it can't find venv

  
  
Posted 2 years ago

From the error you provided it looks like virtualenv isn't installed on the environment

  
  
Posted 2 years ago

I think the pipeline runs from start to end, starting when the first step starts

  
  
Posted 2 years ago

for now installing venv fixes the problem.

  
  
Posted 2 years ago

are there other packages other than venv required on the agent? Since I'm not sure exactly what packages do I need on the agent. Since the function normally wouldn't need venv. It just adds a number by 1

  
  
Posted 2 years ago

Any way to make it automatically install any packages it finds that it requires? Or do I have to explicitly pass them in packages?

  
  
Posted 2 years ago

I would normally like for it to install any requirements needed on its own.

  
  
Posted 2 years ago

Alright. Anyway I'm practicing with the pipeline. I have an agent listening to the queue. Only problem is, it fails because of requirement issues but I don't know how to pass requirements in this case.

  
  
Posted 2 years ago

Ok since its my first time working with pipelines, I wanted to ask. Does the pipeline controller run endlessly or does it run from start to end with me telling it when to start based on a trigger?

  
  
Posted 2 years ago