mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Merge pull request #330 from hatarist/doc_so
Reference improvements: StackOverflow URL & server's readonly mode
This commit is contained in:
commit
5d4cc978f6
@ -241,7 +241,7 @@
|
||||
|
||||
<div class="feedback_form">
|
||||
<h2>Feedback</h2>
|
||||
<p>Ask any questions on <a href="https://stackoverflow.com/">Stackoverflow</a>.</p>
|
||||
<p>Ask any questions on <a href="https://stackoverflow.com/questions/tagged/clickhouse">Stack Overflow</a>.</p>
|
||||
<p>Use <a href="https://groups.google.com/group/clickhouse">Google Group</a> for discussion.</p>
|
||||
<p>Or send private message to developers: <a href="mailto:clickhouse-feedback@yandex-team.com">clickhouse-feedback@yandex-team.com</a>.</p>
|
||||
<p>Discuss with real users in Telegram chat in <a href="https://telegram.me/clickhouse_en">English</a> or in <a href="https://telegram.me/clickhouse_ru">Russian</a>.</p>
|
||||
|
@ -546,7 +546,7 @@ Otherwise, you could use one of available public datasets, described <a href="ht
|
||||
If you are Yandex employee, use internal ClickHouse maillist.
|
||||
You can subscribe to this list to get announcements, information on new developments, and questions that other users have.
|
||||
|
||||
Otherwise, you could ask questions on <a href="https://stackoverflow.com/">Stackoverflow</a>; discuss in <a href="https://groups.google.com/group/clickhouse">Google Groups</a>; or send private message to developers to address <a href="mailto:clickhouse-feedback@yandex-team.com">clickhouse-feedback@yandex-team.com</a>.
|
||||
Otherwise, you could ask questions on <a href="https://stackoverflow.com/questions/tagged/clickhouse">Stack Overflow</a>; discuss in <a href="https://groups.google.com/group/clickhouse">Google Groups</a>; or send private message to developers to address <a href="mailto:clickhouse-feedback@yandex-team.com">clickhouse-feedback@yandex-team.com</a>.
|
||||
|
||||
|
||||
|
||||
@ -6837,9 +6837,11 @@ any (only for group_by_overflow_mode) - Continuing aggregation for the keys that
|
||||
|
||||
===readonly===
|
||||
|
||||
If set to 1, run only queries that don't change data or settings.
|
||||
As an example, SELECT and SHOW queries are allowed, but INSERT and SET are forbidden.
|
||||
After you write %%SET readonly = 1%%, you can't disable readonly mode in the current session.
|
||||
If set to 0, allows to run any queries.
|
||||
If set to 1, allows to run only queries that don't change data or settings (e.g. SELECT or SHOW). INSERT and SET are forbidden.
|
||||
If set to 2, allows to run queries that don't change data (SELECT, SHOW) and allows to change settings (SET).
|
||||
|
||||
After you set the read-only mode, you won't be able to disable it in the current session.
|
||||
|
||||
When using the GET method in the HTTP interface, 'readonly = 1' is set automatically. In other words, for queries that modify data, you can only use the POST method. You can send the query itself either in the POST body, or in the URL parameter.
|
||||
|
||||
|
@ -558,7 +558,7 @@ Connected to ClickHouse server version 0.0.18749.
|
||||
Если вы являетесь сотрудником Яндекса, обращайтесь на внутреннюю рассылку по ClickHouse.
|
||||
Вы можете подписаться на эту рассылку, чтобы получать анонсы, быть в курсе нововведений, а также видеть вопросы, которые возникают у других пользователей.
|
||||
|
||||
Иначе вы можете задавать вопросы на <a href='https://stackoverflow.com/'>Stackoverflow</a> или участвовать в обсуждениях на <a href='https://groups.google.com/group/clickhouse'>Google Groups</a>. Также вы можете отправить приватное сообщение для разработчиков по адресу <a href='mailto:clickhouse-feedback@yandex-team.com'>clickhouse-feedback@yandex-team.com</a>.
|
||||
Иначе вы можете задавать вопросы на <a href='https://stackoverflow.com/questions/tagged/clickhouse'>Stack Overflow</a> или участвовать в обсуждениях на <a href='https://groups.google.com/group/clickhouse'>Google Groups</a>. Также вы можете отправить приватное сообщение для разработчиков по адресу <a href='mailto:clickhouse-feedback@yandex-team.com'>clickhouse-feedback@yandex-team.com</a>.
|
||||
|
||||
|
||||
|
||||
@ -7097,9 +7097,11 @@ any (только для group_by_overflow_mode) - продолжить агре
|
||||
|
||||
===readonly===
|
||||
|
||||
Если установлено в 1 - выполнять только запросы, которые не меняют данные и настройки.
|
||||
Для примера запросы SELECT и SHOW разрешены, а запросы INSERT и SET - запрещены.
|
||||
Написав %%SET readonly = 1%%, вы уже не сможете выключить readonly режим в текущей сессии.
|
||||
При значении 0 можно выполнять любые запросы.
|
||||
При значении 1 можно выполнять только запросы на чтение (например, SELECT и SHOW). Запросы на запись и изменение настроек (INSERT, SET) запрещены.
|
||||
При значении 2 можно выполнять запросы на чтение (SELECT, SHOW) и изменение настроек (SET).
|
||||
|
||||
Включив режим readonly, вы уже не сможете выключить его в текущей сессии.
|
||||
|
||||
При использовании метода GET HTTP интерфейса, автоматически выставляется readonly = 1. То есть, для запросов, модифицирующие данные, можно использовать только метод POST. Сам запрос при этом можно отправлять как в теле POST-а, так и в параметре URL.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user