bob pasker
bob pasker
I think it might be worthwhile to conduct a high-level review of the ML API before merging it in. There are consistency and orthogonality issues that caused me a lot...
+1 on the 'error handling' it seems that HTTP responses (eg `GET //_search` AKA `response = client.search(index="")` on a non-existing index) are thrown as errors rather than returned in the...
its actually worse because there's no semantic error checking, eg `*** Error: RequestError(400, 'resource_already_exists_exception', 'index [opinions/FduukSQQQcuRcp4ZK0w51g] already exists') ` requires: ``` except TransportError as e: if e.status_code == 400 and...
yep, there are probably also other errors that I haven't encountered yet that could probably benefit from specialization
I am having this problem as well. my app doesn't use any @werkzeug classes at all, just flask and flask-gzip. perhaps someone from @werkzeug can help.
i am actually trying to do a `JOIN` with this table, and it fails in exactly the same way (OOM @80%), but this is a more minimal example. Hopefully, if...
Further update, i tried restricting the size of the JOIN to smaller result by adding `where MOD(o.id, 10) == 0` (rows with '0' in the units digit of the `PRIMARY...
+1 for the problem -1 for the solution I just posted something like this on the slack channel: https://opensearch.slack.com/archives/C05BGJ1N264/p1718823006253339 why not make `model` name unique in the same way that...
What purpose does a model name even serve, if it is not unique, is never used by the system anywhere else,and there is a separate model description? Alternatively, make model...