Search before asking
Version
master
What's Wrong?
When properties contains "memory_limit", parse the value from "data_lifetime".
CreateDictionaryInfo.java:
if (properties.containsKey("memory_limit")) {
memoryLimit = Long.parseLong(properties.get("data_lifetime"));
}
What You Expected?
correct it
How to Reproduce?
CREATE DICTIONARY xxx.xxx USING xxx.xxx
(
xxx
)
LAYOUT(HASH_MAP)
PROPERTIES(
'data_lifetime' = '3600',
'memory_limit' = '21474836480'
);
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct