Open nwoolmer opened 1 week ago
Set up docker.
Take this docker-compose.yml:
docker-compose.yml
services: historic-data: image: questdb/questdb:8.1.4 ports: - "9000:9000" - "9009:9009" - "8812:8812" - "9003:9003" volumes: - "P:/volume/questdb:/var/lib/questdb"
Change the volume to something appropriate on your machine.
Start the database.
Create a table:
create table foo ( symbol symbol, tenant symbol, source symbol, ask double, bid double, value double, state long, entity long, timestamp timestamp ) timestamp(timestamp) partition by day wal;
Insert data:
insert into foo values ('USD', 'examp', 'api', 1, 2, 3, 4, 5, now())
Observe that the numeric values have become 0:
Not reproducible in 8.0.3 down to 8.0.0.
8.1.0+
Docker Windows 11 WSL2
NTFS and ReFS
Nick Woolmer
QuestDB
No response
this is an unsupported platform for now, we will investigate this problem when we can
To reproduce
Set up docker.
Take this
docker-compose.yml
:Change the volume to something appropriate on your machine.
Start the database.
Create a table:
Insert data:
Observe that the numeric values have become 0:
Not reproducible in 8.0.3 down to 8.0.0.
QuestDB version:
8.1.0+
OS, in case of Docker specify Docker and the Host OS:
Docker Windows 11 WSL2
File System, in case of Docker specify Host File System:
NTFS and ReFS
Full Name:
Nick Woolmer
Affiliation:
QuestDB
Have you followed Linux, MacOs kernel configuration steps to increase Maximum open files and Maximum virtual memory areas limit?
Additional context
No response