public class DataFrameWriterAsyncActor extends Object
| Modifier and Type | Method and Description |
|---|---|
TypedAsyncJob<WriteFileResult> |
csv(String path)
Executes `DataFrameWriter.csv()` asynchronously.
|
TypedAsyncJob<WriteFileResult> |
json(String path)
Executes `DataFrameWriter.json()` asynchronously.
|
TypedAsyncJob<WriteFileResult> |
parquet(String path)
Executes `DataFrameWriter.parquet()` asynchronously.
|
TypedAsyncJob<Void> |
saveAsTable(String tableName)
Executes `DataFrameWriter.saveAsTable` asynchronously.
|
TypedAsyncJob<Void> |
saveAsTable(String[] multipartIdentifier)
Executes `DataFrameWriter.saveAsTable` asynchronously.
|
public TypedAsyncJob<Void> saveAsTable(String tableName)
tableName - Name of the table where the data should be saved.public TypedAsyncJob<Void> saveAsTable(String[] multipartIdentifier)
multipartIdentifier - An array of strings that specify the database name, schema name, and
table name.@PublicPreview public TypedAsyncJob<WriteFileResult> csv(String path)
path - The path (including the stage name) to the CSV file.@PublicPreview public TypedAsyncJob<WriteFileResult> json(String path)
path - The path (including the stage name) to the JSON file.@PublicPreview public TypedAsyncJob<WriteFileResult> parquet(String path)
path - The path (including the stage name) to the PARQUET file.© 2023 Snowflake Inc. All Rights Reserved