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
Unanswered
Hi Everyone, I'M Currently Trying To Set Up S3 As A File Server For Storing All My Data (Artifacts, Datasets, Etc.) Using Clearml, But I'M Encountering Some Issues With The Configuration. I Am Getting This Error


Here’s the relevant portion of my clearml.conf file located at ~/clearml.conf :

sdk {
    aws {
        s3 {
            key: "AWS_ACCESS_KEY"
            secret: "AWS_SECRET_KEY"
            region: "us-east-1"
            use_credentials_chain: true

            credentials: [
                {
                    bucket: "clearml-s3"
                    key: "AWS_ACCESS_KEY"
                    secret: "AWS_SECRET_KEY"
                    region: "us-east-1"
                    use_credentials_chain: true
                }
            ]
        }

        boto3 {
            pool_connections: 512
            max_multipart_concurrency: 16
        }
    }

    storage {
        default_output_uri: " [None](s3://clearml-s3/) "
    }
}

I'm using a t3a.large instance and running the default Docker Compose file on Ubuntu.

Despite following the documentation, I’m having trouble getting it to work. If anyone has experience setting up S3 with ClearML or can point me in the right direction, I would really appreciate your help!

Thanks in advance!

  
  
Posted 26 days ago
9 Views
0 Answers
26 days ago
25 days ago