I created an iceberg table within databricks and shared it via delta sharing with token
Then I use curl command to access it with iceberg endpoint like this:
curl -X GET \
-H "Authorization: Bearer ***"\
-H "Accept: application/json" \
"https://ohio.cloud.databricks.com/api/2.0/delta-sharing/metastores/e6da0ff4-5f22-4fc4-b2e8-fe49d047c..."
But got the error below:
{"error":{"message":"Malformed request: INVALID_PARAMETER_VALUE: DS_UNSUPPORTED_TABLE_TYPE: Could not retrieve default.diamonds_iceberg from Share delta-share because table with type [Databricks managed storage] is currently unsupported in delta sharing queries.","type":"BadRequestException","code":400}}
Are there any configuration steps I missed or is it not supported? Any document I can reference to make the iceberg endpoint working?