Liran BG
Liran BG
> @xaralis I managed to build it by changing LDFLAGS to > > ``` > LDFLAGS="-L/opt/homebrew/Cellar/boost/1.78.0_1/lib/" \ > ``` That worked for me. Thanks! the completed command I used ```bash...
Adding on top of @alonmr review - worth using the returyable http client to ensure retries upon transient connection issues
For other people encountering such issue - This might be caused when your server has CPU starvation. So each client, making a request, expect a keep alive that is configured...
True that @dberardo-com - mind opening a feature request for that? that way we can keep track on that. Regardless, if you feel comfortable enough playing with go, you are...
if you dont need to rebuild entirely, you can simply change the crd status.state from "X" to "waitingForResourceConfiguration" which will trigger the controller to redeploy perhaps the effort being done...
@daniels290813 - please fix conflicts or close if irrelevant
Hi @dberardo-com The max replicas is given as part of the function config, which is available from the container. having said that, giving each pod its "serial" number is anti...
worker id is unique per id and thus could be use a serial number. usage: `context.worker_id`. the number of replicas is given by the function config, which is mounted to...
> ok, but is this number between min_replicas and max_replicas ? or is it at least a sequential number? i mean, if i have 2 different function (A and B)...
It looks like python interpreter failed to start prematurely. perhaps using `PYTHONDEVMODE=1` envvar or `PYTHONMALLOC=debug` to allow python print to stdout the coredump would help you debugging.