You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[StockDataSource](pyspark_datasources/stock.py)|`stock`| Batch Read | Read stock data from Alpha Vantage | None |`pip install pyspark-data-sources`<br/>`spark.read.format("stock").option("symbols", "AAPL,GOOGL").option("api_key", "key").load()`|
51
51
|**Batch Write**||||||
52
52
|[LanceSink](pyspark_datasources/lance.py)|`lance`| Batch Write | Write data in Lance format |`lance`|`pip install pyspark-data-sources[lance]`<br/>`df.write.format("lance").mode("append").save("/tmp/lance_data")`|
53
+
|[SimpleJsonDataSource](pyspark_datasources/simplejson.py)|`simplejson`| Batch Write | Write JSON data to Databricks DBFS |`databricks-sdk`|`pip install pyspark-data-sources[simplejson]`<br/>`df.write.format("simplejson").save("/path/to/output")`|
0 commit comments