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
Hey All, I'M Running A Task Inside Docker, And One Of The Functions Call: Latest_Dataset = Dataset.Get(Dataset_Project=Dataset_Project]) A I Get: Raise Valueerror('Could Not Load Dataset Id={} State'.Format(Task.Id)) Valueerror: Could Not Load Dataset

Hey all,
I'm running a task inside docker, and one of the functions call:

latest_dataset = Dataset.get(dataset_project=dataset_project])

A I get:

raise ValueError('Could not load Dataset id={} state'.format(task.id))
ValueError: Could not load Dataset id=..... state

How can I fix that?
Thanks

  
  
Posted 2 years ago
Votes Newest

Answers 2


I think you need to do latest_dataset = Dataset.get(dataset_id=<DATASET_ID>)

  
  
Posted 2 years ago

Thanks!

  
  
Posted 2 years ago