Databricks Unity Catalog Rest API’s

This post is how to work with Databricks Unity Catalog Rest API’s.

Set Catalog Isolation Mode to ISOLATED

  1. curl --location --request PATCH 'https://<DATABRICK_URL>/api/2.1/unity-catalog/catalogs/<CATALOG_NAME>' \
  2. --header 'Authorization: Bearer <TOKEN>' \
  3. --header 'Content-Type: application/json' \
  4. --data-raw '{
  5. "isolation_mode": "ISOLATED"
  6. }'

Bind Workspace to Catalog

  1. curl --location --request PATCH 'https://<DATABRICK_URL>/api/2.1/unity-catalog/bindings/catalog/<CATALOG_NAME>' \
  2. --header 'Authorization: Bearer <TOKEN>' \
  3. --header 'Content-Type: application/json' \
  4. --data-raw '{
  5. "add": [{ "workspace_id": "<WORKSPACEE_ID>", "binding_type": "BINDING_TYPE_READ_WRITE" }]
  6. "remove": []
  7. }'

Unbind Workspace to Catalog

  1. curl --location --request PATCH 'https://<DATABRICK_URL>/api/2.1/unity-catalog/bindings/catalog/<CATALOG_NAME>' \
  2. --header 'Authorization: Bearer <TOKEN>' \
  3. --header 'Content-Type: application/json' \
  4. --data-raw '{
  5. "unassign_workspaces": ["<WORKSPACE_ID>"]
  6. }'

List Workspaces Assigned to Catalog

  1. curl --location --request GET 'https://<DATABRICK_URL>/api/2.1/unity-catalog/bindings/catalog/<CATALOG_NAME>' \
  2. --header 'Authorization: Bearer <TOKEN>' \
  3. --header 'Content-Type: application/json'

 

Dropwizard: Resource

This entry is part 4 of 5 in the series Dropwizard

In this tutorial I will give a basic example of a resource endpoint. If you haven’t configured Guice yet please do so before continuing.

So basically now that you have Guice configured and working you can now create an api endpoint. For this we will just use a GET but you can also do POST, PUT, DELETE.

  1. package ca.gaudreault.mydropwizardapp.resources;
  2.  
  3. import javax.ws.rs.GET;
  4. import javax.ws.rs.Path;
  5. import javax.ws.rs.Produces;
  6. import javax.ws.rs.core.MediaType;
  7.  
  8. import com.codahale.metrics.annotation.Timed;
  9. import com.google.inject.Inject;
  10.  
  11. import ca.gaudraeult.mydropwizardapp.services.MyService;
  12. import ca.gaudreault.mydropwizardapp.models.MyModel;
  13.  
  14. @Timed
  15. @Path("/my-resource")
  16. public class MyResource {
  17. MyService myService;
  18.  
  19. @Inject
  20. public MyResource(final MyService myService) {
  21. this.myService = myService;
  22. }
  23.  
  24. @GET
  25. @Timed
  26. @Produces(MediaType.APPLICATION_JSON)
  27. public MyModel runTest() {
  28. return this.myService.runTest();
  29. }
  30. }

Once you run your application you can view the endpoint by going to http://localhost:8080/my-resource.

The output will be as follows.

  1. {"value":123123}

If you noticed we added the “@Timed” annotation. You can now go to http://localhost:8081/metrics?pretty=true to view the metrics on our “runTest” method. The output will look like the below.

  1. {
  2. "ca.gaudreault.mydropwizardapp.resources.MyResource.runTest": {
  3. "count": 0,
  4. "max": 0.0,
  5. "mean": 0.0,
  6. "min": 0.0,
  7. "p50": 0.0,
  8. "p75": 0.0,
  9. "p95": 0.0,
  10. "p98": 0.0,
  11. "p99": 0.0,
  12. "p999": 0.0,
  13. "stddev": 0.0,
  14. "m15_rate": 0.0,
  15. "m1_rate": 0.0,
  16. "m5_rate": 0.0,
  17. "mean_rate": 0.0,
  18. "duration_units": "seconds",
  19. "rate_units": "calls/second"
  20. }

NiFi: Rest API

NiFi has a bunch of Rest API’s that you can use. They are located here.

They are very comprehensive. The only thing that I would say is missing is getting the root process group of NiFi. It is not documented what the api call would be. All api calls must be authenticated as well.

The api call to get the root process group called “NiFi Flow” which is the main process group is.

  1. https://lcoalhost/nifi-api/process-groups/root