You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In branch dictionary-clickhouse
When you create the DB you are using small letters for dictionaries.protocols but in the CSV you are using leading capital letter
It cause error in the Grafana dashboard for ports
Please change the DB to have leading capital letter
CREATE DATABASE dictionaries;
CREATE DICTIONARY dictionaries.protocols ( \
Proto UInt8, \
Name String, \
Description String \
) \
PRIMARY KEY Proto \
LAYOUT(FLAT()) \
SOURCE (FILE(path '/var/lib/clickhouse/user_files/protocols.csv' format 'CSVWithNames')) \
LIFETIME(3600);
The text was updated successfully, but these errors were encountered:
In branch dictionary-clickhouse
When you create the DB you are using small letters for dictionaries.protocols but in the CSV you are using leading capital letter
It cause error in the Grafana dashboard for ports
Please change the DB to have leading capital letter
The text was updated successfully, but these errors were encountered: