If I create table:
│ CREATE TABLE default.graphite
(
`Path` String,
`Value` Float64,
`Time` UInt32,
`Date` Date,
`Timestamp` UInt32
)
ENGINE = GraphiteMergeTree('graphite_rollup')
PARTITION BY toYYYYMM(Date)
ORDER BY (Path, Time)
SETTINGS index_granularity = 8192
I can: ALTER TABLE graphite MODIFY SETTING storage_policy = '???';
But if my table created:
│ CREATE TABLE graphite
(
`Path` String,
`Value` Float64,
`Time` UInt32,
`Date` Date,
`Timestamp` UInt32
)
ENGINE = GraphiteMergeTree(Date, (Path, Time), 8192, 'graphite_rollup') │
I can't =( I recieve error: DB::Exception: Cannot alter settings, because table engine doesn't support settings changes.
Help me, how I can change settin?
└──────────────────────────────────────────────────────────────────────────