Stephan Gerhard

Results 26 comments of Stephan Gerhard

@awtkns Would it be possible to merge this PR? I'd like to test if the async support for SQLAlchemy would already also work with SQLModel mentioned in #109. Thanks.

Hi @awtkns - I tested the feature branch in the meantime. In my particular setup (perhaps useful to others), I am running into the following exception: `sqlalchemy.exc.InvalidRequestError: Can't operate on...

I should add that creating a new object via the generated API already works, so the session already commits data to the proper schema/table.

FYI. I think I fixed by my issue by replacing ``` await db.commit() await db.refresh(db_model) ``` with ``` await db.flush() ``` [here](https://github.com/il-s/fastapi-crudrouter/blob/master/fastapi_crudrouter/core/sqlalchemy.py#L180)

@sorasful Have you been successful in finding a solution. The repo from @Kludex is very useful for the configured dashboard for the variables that are exposed via the `/metrics` endpoint....

Using the annotation field in the connectivity widget on a most recent version of CATMAID (dev branch) does not seem to work. I tested it by adding an annotation (with...

Any chance that flipping the image could be added as an option to DVID? The Catmaid doc notes the issue on http://catmaid.readthedocs.io/en/stable/tile_sources.html#dvid-imageblk-voxels with "Because DVID prefers YZ axis ordering over...

Thanks for the feedback. When trying to run the a single ndmeasure function, I ran into another issue. I load a large zarr 3d image, and want to process a...

My entire 3d zarr array is about 120k x 70k x 7k voxels (`dask.array.from_zarr`), and I slice into a 10k x 10k x 2000 voxels subvolume (regular slicing syntax), so...

Thanks @GenevieveBuckley I will have a look.