Bill Katz
Bill Katz
After a little discussion, we decided to make the JSON schema separate from DVID since non-DVID services may wish to reuse the schema. Under the above scenario, this can be...
This milestone was added just to reference the issue, particularly in context of possible use of gRPC endpoints, which have built-in schema.
The logs show that sparsevol encompassed 169,469 blocks, 167,817,016 runs. The error is occuring in the C lz4 code.
The maximum compression size for the C lz4 library is: `#define LZ4_MAX_INPUT_SIZE 0x7E000000 /* 2 113 929 216 bytes */` https://github.com/cloudflare/golz4/blob/master/src/lz4.h Each run requires four int32 = 16 bytes, so...
We could (1) return an error you could check and then ask for bodies using multiple queries delimited in Z range, (2) allow "paging" of really huge bodies, (3) move...
I think the proper solution is a way to handle arbitrarily large neurons that will become more likely as we move to 100+ TB volumes. Multiscale addresses this issue. Since...
Previous error return was reasonable given bodies could be arbitrarily large, particularly for HTTP API responses. After discussion with Ting, the future sparsevol API (built into labelblk) should automatically choose...
So this raises a question we've debated before, which is whether an instance name should be allowed to refer to two different data instances in non-overlapping sub-DAGs. Each data instance...
[Can scan paths for tilde and replace using package os/user](http://stackoverflow.com/questions/17609732/expand-tilde-to-home-directory)
This error was hit again for the following: `https://emdata5.janelia.org/api/node/31597d95bd844060b0ccc928a1a8a0a4/segmentation/sparsevol/1574160129?scale=0&minx=25844&maxx=25844&miny=28670&maxy=28670&minz=22204&maxz=22204` Given that the label index should give a fast way to screen at level 0 before using downres scale, we should...