- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2026 10:13 PM
I was trying to implement the example posted on the below link for Zerobus connector to test its functionality on my free edition workspace but unfortunately I am getting below error.
Reference Code: https://learn.microsoft.com/en-us/azure/databricks/ingestion/zerobus-ingest
ERROR:zerobus_sdk:Non-retriable gRPC error during stream creation: <_MultiThreadedRendezvous of RPC that terminated with: status = StatusCode.UNAUTHENTICATED details = "{"X-Databricks-Reason-Phrase":"The workspace is not enrolled in Zerobus gated preview."}" debug_error_string = "UNKNOWN:Error received from peer {grpc_message:"{\"X-Databricks-Reason-Phrase\":\"The workspace is not enrolled in Zerobus gated preview.\"}", grpc_status:16, created_time:"2026-01-12T05:53:00.344531824+00:00"}" >
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2026 10:28 PM
Hey @HarishKumarM , I did some digging and found some helpful information to help you troubleshoot.
What the error means
Your workspace isn’t currently enrolled in the Zerobus Ingest preview. Even though Zerobus is labeled a Public Preview, it’s still gated. Workspaces have to be explicitly enrolled by Databricks before the SDK is allowed to create a stream.
That’s exactly why you’re seeing: “The workspace is not enrolled in Zerobus gated preview.”
Enrollment is handled per workspace through Databricks’ Preview Portal (an internal workflow). Until your specific workspace ID is approved and enrolled, Zerobus endpoints will consistently return UNAUTHENTICATED at stream creation time — which matches the behavior you’re hitting.
You can reach out to your account team to see if you can get enrolled in the program.
Hope this helps, Louis.