-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#7809][YSQL] Add session flag to enable non-transactional writes on …
…COPY Summary: Allowing faster writes on copy command by using session variable "yb_force_non_transactional_writes". The default value for this flag is false. To enable the flag, ``` SET yb_force_non_transactional_writes=true ``` To disable the flag, ``` SET yb_force_non_transactional_writes=false ``` Note, the session variable must be applied on non-DDL operations as non-transactional writes on DDL operations is not supported. Test Plan: Verified using non transactional flag improves latency on release build. Added Java unit test. Reviewers: mihnea, smishra Reviewed By: smishra Subscribers: smishra, yql Differential Revision: https://phabricator.dev.yugabyte.com/D13703
- Loading branch information
Showing
4 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters