I have setup clickhouse server, I have dont following things.
- Under default user in users.xml have enabled these settings.
<access_management>1</access_management> <named_collection_control>1</named_collection_control> <show_named_collections>1</show_named_collections> <show_named_collections_secrets>1</show_named_collections_secrets>
- Now since default user have access management settings enabled, I logged in with default user and created an admin user,
admin
, usingCREATE USER admin IDENTIFIED BY '<password>'; GRANT ALL ON *.* TO admin WITH GRANT OPTION;
- I restarted the server and logged in with this admin user and enabled Async insert settings.
This gave a success query execution response.ALTER USER admin SETTINGS async_insert = 1;
Ok
After step 3 if I check select * from system.settings where name ilike '%async%';
It is showing async_insert is still disabled and has not been changed. Why is that? What am I doing wrong here?