[
https://issues.apache.org/jira/browse/IGNITE-7415?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16355235#comment-16355235
]
Anton Vinogradov edited comment on IGNITE-7415 at 2/7/18 9:57 AM:
------------------------------------------------------------------
SQL:
Turning on
{{ALTER TABLE tableName LOGGING}}
Turning off
{{ALTER TABLE tableName NOLOGGING}}
Java:
Current state
{{ignite.cluster().isWalEnabled(cacheName);}}
Turning on
{{ignite.cluster().enableWal(cacheName);}}
Turning off
{{ignite.cluster().disableWal(cacheName);}}
was (Author: avinogradov):
SQL:
Turning on
{{ALTER TABLE cacheName LOGGING}}
Turning off
{{ALTER TABLE cacheName NOLOGGING}}
Java:
Current state
{{ignite.cluster().isWalEnabled(cacheName);}}
Turning on
{{ignite.cluster().enableWal(cacheName);}}
Turning off
{{ignite.cluster().disableWal(cacheName);}}
> Ability to disable WAL (Documentation)
> --------------------------------------
>
> Key: IGNITE-7415
> URL: https://issues.apache.org/jira/browse/IGNITE-7415
> Project: Ignite
> Issue Type: Task
> Components: documentation
> Reporter: Anton Vinogradov
> Assignee: Vladimir Ozerov
> Priority: Major
> Fix For: 2.4
>
>
> Need to update
> [https://apacheignite.readme.io/docs/write-ahead-log#section-wal-modes]
> [https://apacheignite.readme.io/docs/data-loading]
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)