Maximilian Linhoff
Maximilian Linhoff
I tried today by just starting a second instance in our rancher instance but it did not work out. No connection was possible thorugh the second jvb
@ashirwad007786 that's exactly the same issue
> May I ask at which user count you run into problems with the single jvb instance? We are more concerned about bandwidth, so looking for a second jvb with...
This is actually not a problem for us, as we use a rancher (still 1.6 though) infrastructure and the containers can still communicate via internal docker networks even if running...
@rmorshea In the actual codebase, we would use something like this: ``` from traitlets import HasTraits, Unicode class Foo(HasTraits): bar = Unicode(default_value=None, allow_none=False, required=True) def __init__(bar, **kwargs): super().__init__(bar=bar, **kwargs) ```...
Just noting, that the behavior with the current release of `traitlets` here has changed, however in a for me even more suprising way. Now, the class instantiation works, and the...
Probably an issue for http://github.com/ibab/root_pandas
You need to convert the str columns to the numpy string type `S`. However, there seems to be a bug in pandas which is preventing that on reassigment, I filed...
They actually consider it a bug that the dtype on new assignments is not `object`.