i set the config to apply it i tried with bypass wal as well but its just create all my tables as wal disabled, i enabled it in the server.conf and also tried this : CREATE TABLE IF NOT EXISTS motion (
ts TIMESTAMP,
axis INT,
opcode INT,
value DOUBLE
) TIMESTAMP(ts)
PARTITION BY NONE BYPASS WAL its just not works…
WAL tables must be partitioned.
Additionally, BYPASS WAL
will create a non-WAL table. You should just write something like PARTITION BY DAY WAL
.