questdb / py-questdb-client

Python client for QuestDB InfluxDB Line Protocol
https://py-questdb-client.readthedocs.io
Apache License 2.0
55 stars 10 forks source link

Partition Planning #44

Closed chandler150 closed 1 year ago

chandler150 commented 1 year ago

Is there any way to modify the partition schema when generating new tables via a pandas dataframe. It seems the default is by day.

amunra commented 1 year ago

You would need to issue a create table statement in advance via PGWire or HTTP, before uploading your data via ILP.

chandler150 commented 1 year ago

Thanks!