Stephan Gerhard
Stephan Gerhard
@martin-wiebusch-thg I have similar use cases as you described, and found [DuckDB](https://duckdb.org/) to be an interesting option. It can to join across partitioned parquet datasets, use all the cores, and...
Any update on this? Has anybody figured out a workaround?
I'm having difficulty to loading it with `react-kapsule` in a Next.Js app: ``` import dynamic from 'next/dynamic' import fromKapsule from 'react-kapsule' const CirclePack = dynamic( () => { return import('circlepack-chart')...
I could solve it by wrapping in a separate component, i.e. Use ``` import dynamic from 'next/dynamic' const CirclePackComponent = dynamic( () => { return import('./CirclePack') }, { ssr: false...
@yinziyan1206 This works if the field is not the primary key. If I want to create a primary key of type BigInteger, I get the exception: ``` sqlalchemy.exc.ArgumentError: Mapper mapped...
thanks @yinziyan1206 - this did the trick!