lmeyerov
lmeyerov
I found one chunk in the docs about this, `. You should not mix block- and file-caches in the same directory`, and `Only “simplecache” is guaranteed thread/process-safe.` (https://filesystem-spec.readthedocs.io/en/latest/features.html#caching-files-locally) Any guidance...
thanks for filing! fyi: this impacts graphistry/pygraphistry, but as impacts any embedded view, should be in the graphistry/graphistry viz repo
i'm actually thinking 2 things: 1. panels can/should add a scroll when media is below expected size? 2. should the main area add horizontal/vertical scrolls too?
Hi @conker84 @jexp sure thing: -- raw Apache Arrow over REST API: https://hub.graphistry.com/docs/api/#upload2 . Conceptually, JSON bindings file (`src: colX, dst: colY, color: colZ, ..`), edges.arrow typed columnar properties table,...
Also, I believe Mark Quinsland was looking at something similar via Parquet. Arrow is designed more for in-memory + streaming, so I'd recommend that, but Parquet achieves similar efficiency &...
Maybe a useful, more declarative question is: What might be a good path to enabling plugging in custom handlers, and limiting selection to them? In our case, sometimes we want...
RE: "What if you do not want the nvidia runtime as the default runtime?", that's what we're hitting for a couple reasons: * Portable install: Users repeatedly blow hours/days not...
Additional scenario: ```python edges = pd.DataFrame({'s': ['a'], 'd': ['b']}) nodes = pd.DataFrame({'n': ['a', 'b']} graphistry.nodes(nodes, 'n').edges(edges, 's', 'd').plot()) graphistry.nodes(nodes.rename(columns={'n': 'n2'}), 'n2').edges(edges, 's', 'd').plot() ``` => ``` 422 Client Error: for...
+ @silkspace for visibility
You should now be able to do `&pruneOrphans=true` (or `.settings(url_params={'pruneOrphans': 'true'})`) Landed w/ server 2.34.14 🚀