Romain Slootmaekers
Romain Slootmaekers
you can add it via the cli `alba add-osd --help` (to add an asd, you will need its `host` and `port` , the `abm-url` for the backend) After you've add...
normally, ASDs are discovered by alba components (maintenance, proxies) via UDP multicast. But this multicast does not always work because of network (configuration) issues.
there are 2 id's in this context. `osd_id` : this is the number the abm gives the osd when it's added (it just increases) `long_id` : this is the world...
ftr, which alba version, and which framework version is this?
I interpret the first solution as "suffix the value" and then there's an alternative in suffixing a type marker in the key.
you don't wanna know how much money this cost us. A new julia release was downloaded automagically on all nodes individually in a distributed cluster because a new julia was...
well, we had this in place: ``` from juliacall import Pkg as jlPkg from juliacall import Main as jl ... jPkg.offline(True) jlPkg.activate(project) ``` so we thought we were safe ......
Import side effects are really not ok. Just don't
It can get worse: - I've seen the julia part, not knowing it was running inside a python process starting to download and install a python interpreter to be able...
> You can also import `juliapkg` before `juliacall` in order to change to offline status programmatically. if import order matters you're doing something wrong. really.