skshetry

Results 205 comments of skshetry

We now have a `desc` and `size` keywords in the stages, which we can use it to our advantage, and provide `--help` like message for the stages. ```console $ dvc...

> It's a bit more human-friendly for sure though.

@philipp-kohl, the parameters are loaded relative to the `dvc.yaml` file, so they are not loaded from the root of the repo. On other locations, you may need to explicitly specify...

@ldelphinpoulat, can you please share the verbose output from `dvc exp show -v`? It has tracebacks and more logging information.

One way would be to make `rwlock` itself granular. eg: `.dvc/tmp/rwlocks/.lock`. The path could be a path or a checksum of the path too. That way, we can replace the...

@sisp, the Gitlab generic packages repository is new to me, does it support uploads to arbitrary prefix? Also, would it be possible to try uploading with `fsspec`'s `HTTPFileSystem` and see...

@sisp, we added timeout because large downloads were freezing. See #7414 and #7460. However, we are open to introducing `timeout=0` option that disables any timeout. This will require support in...

@sisp, my understanding about `sock_read` timeout is that it's a timeout waiting to read the data. Either the server is misconfigured, or there's some bug in aiohttp or your internet...

@sisp, I don't see any response from the server in the above curl output.

Could you please check if httpx solves this issue? Just trying to confirm if it is http1.1 issue (curl is using http/2): ```python # pip install httpx[http2] import httpx client...