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
let client = DbfsClient::new("https://dbc-beef84de-82d1.cloud.databricks.com","dapi938c7b3a990ade61bff831cf0f731190");
let tables = client.list("/user/hive/warehouse").await.unwrap();
let mut lines = client.read("/user/hive/warehouse/squirrel_data").unwrap().lines();
while let Some(Ok(line)) = lines.next().await {
println!("Line is `{:?}`", line);
}
Is your feature request related to a problem? Please describe.
Allow users to use data from databricks in ingestion.
Describe the solution you'd like
Implement new connector based on the current connector interface.
The text was updated successfully, but these errors were encountered: