-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delta table not created as expected #144
Comments
Thank you for reporting this issue! Could this possibly be a configuration issue with the credentials not being picked up or not granting access to the bucket? Are you configuring them with https://www.pulumi.com/registry/packages/databricks/api-docs/storagecredential/ and It does appear that even if it is the case Pulumi should be reporting an error when credentials are invalid or missing. |
Hi, I am encountering the same issue. The table appears in Databricks web UI but no transaction log is written to S3, and if I navigate to the Sample Data tab I get an error:
Code: table_resource = table.Table(
table_name,
catalog_name=catalog,
schema_name=schema,
name=table_name,
columns=[
table.TableColumnArgs(
name="col1", position=0, type_name="STRING", type_text="varchar(64)", comment="first column",
type_json="{\"name\":\"col1\",\"type\":\"varchar(64)\",\"nullable\":true,\"metadata\":{}}",
),
],
data_source_format="DELTA",
table_type="EXTERNAL",
storage_location="<REDACTED>"
) Pulumi about:
|
What happened?
We're trying to use the databricks.Table to create an empty external Delta table in our Unity Catalog. The table is created but no transaction log is written in the external location (s3 in our case) making the table unusable (no insert can be performed).
Expected Behavior
A delta table is created along with transaction logs so that such table can be lately filled by spark jobs.
Steps to reproduce
Create a
databricks.Table
resource with the following configuration:Output of
pulumi about
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
The text was updated successfully, but these errors were encountered: