remote_processing {RGMQL} | R Documentation |
It allows to enable or disable remote processing
remote_processing(is_remote)
is_remote |
logical value used in order to set the processing mode. TRUE: you set a remote query processing mode, otherwise it will be local |
The invocation of this function allows to change mode of processing. After invoking collect() function, it is not possbile to switch the processing mode.
None
## This statement initializes GMQL with local processing with sample ## files output format as tab-delimited, and then it changes processing ## mode to remote init_gmql("tab", remote_processing = FALSE) remote_processing(TRUE)