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 People, I Cant Force Deleting Datasets It Tells Me Storageerror: Can'T Find Azure Configuration For

Hi people, i cant force deleting datasets
It tells me
StorageError: Can't find azure configuration for None
I wanna just force it and delete the folders in azure, or reset the hole app, because I was testing it

  
  
Posted 12 days ago
Votes Newest

Answers 14


Now it tells me 🫠

Storage helper problem for clearml/vehicle_detection/.datasets/round1/round1.452107f4e6784d77be9b9c4143255579/artifacts/state/state.json: Operation returned an invalid status 'The specified blob does not exist.'
ErrorCode:BlobNotFound
Could not get dataset with ID 452107f4e6784d77be9b9c4143255579: Could not load Dataset id=452107f4e6784d77be9b9c4143255579 state
  
  
Posted 12 days ago

dataset_id = "..."
Dataset.get(
dataset_id = dataset_id
)
Dataset.delete(
dataset_id = dataset_id,
force=True,
entire_dataset=True,
delete_files=False,
delete_external_files=False
)

  
  
Posted 12 days ago

Is it possible that you don't have permissions for deletion on that Azure account with your credentials?

  
  
Posted 12 days ago

I have permissions, I deleted some datasets
But there are some of them that gives me that error

  
  
Posted 12 days ago

I just want to start again because I was learning

  
  
Posted 12 days ago

Try with delete_files=False parameter

  
  
Posted 12 days ago

But i wanna delete the dataset in the web

  
  
Posted 12 days ago

I SOLVED IT!
THANKS FOR YOUR HELP

  
  
Posted 12 days ago

I deleted the azure folder

  
  
Posted 12 days ago

Now it tells me No projects were found with name(s): hme_vehicle_detection/.datasets/test1

  
  
Posted 12 days ago

I used that

  
  
Posted 12 days ago

Also with delete_external_files=False

  
  
Posted 12 days ago

Dataset.delete(
dataset_id="708f4e2bb4354d58b79916a3db7f04c7",
force=True,
)
Used

  
  
Posted 12 days ago

Im doing this
Dataset.delete(
dataset_project="hme_vehicle_detection",
dataset_name="test1",
force=True,
entire_dataset=True,
delete_files=False
)
And I deleted the hole azure clearml folder

  
  
Posted 12 days ago
59 Views
14 Answers
12 days ago
11 days ago
Tags