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(
123123 table_name : str ,
124124 input_table : InputType ,
125125 format : str = None ,
126- persist : bool = True ,
126+ persist : bool = False ,
127127 schema_name : str = None ,
128128 gpu : bool = False ,
129129 ** kwargs ,
@@ -144,8 +144,9 @@ def create_table(
144144 Typical file formats are csv or parquet.
145145 Any additional parameters will get passed on to the read method.
146146 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.
149150
150151 See :ref:`data_input` for more information.
151152
@@ -185,7 +186,7 @@ def create_table(
185186 Specify the file format directly here if it can not be deduced from the extension.
186187 If set to "memory", load the data from a published dataset in the dask cluster.
187188 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.
189190 **kwargs: Additional arguments for specific formats. See :ref:`data_input` for more information.
190191
191192 """
You can’t perform that action at this time.
0 commit comments