File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def create_table(
123
123
table_name : str ,
124
124
input_table : InputType ,
125
125
format : str = None ,
126
- persist : bool = True ,
126
+ persist : bool = False ,
127
127
schema_name : str = None ,
128
128
gpu : bool = False ,
129
129
** kwargs ,
@@ -144,8 +144,9 @@ def create_table(
144
144
Typical file formats are csv or parquet.
145
145
Any additional parameters will get passed on to the read method.
146
146
Please note that some file formats require additional libraries.
147
- By default, the data will be loaded directly into the memory
148
- of the nodes. If you do not want that, set persist to False.
147
+ By default, the data will be lazily loaded. If you would like to
148
+ load the data directly into memory you can do so by setting
149
+ persist=True.
149
150
150
151
See :ref:`data_input` for more information.
151
152
@@ -185,7 +186,7 @@ def create_table(
185
186
Specify the file format directly here if it can not be deduced from the extension.
186
187
If set to "memory", load the data from a published dataset in the dask cluster.
187
188
persist (:obj:`bool`): Only used when passing a string into the ``input`` parameter.
188
- Set to false to turn off loading the file data directly into memory.
189
+ Set to true to turn on loading the file data directly into memory.
189
190
**kwargs: Additional arguments for specific formats. See :ref:`data_input` for more information.
190
191
191
192
"""
You can’t perform that action at this time.
0 commit comments