Set up on-premises Looker access
You will need access to a machine that can run Docker on-premises. You will also need your Looker access details, including credentials.
In some cases you won't be able to expose your Looker instance for Atlan to crawl and ingest metadata. For example, this may happen when security requirements restrict access to sensitive, mission-critical data.
In such cases you may want to decouple the extraction of metadata from its ingestion in Atlan. This approach gives you full control over your resources and metadata transfer to Atlan.
Prerequisites
To extract metadata from your on-premises Looker instance you will need to use Atlan's looker-extractor tool.
Atlan uses exactly the same looker-extractor behind the scenes when it connects to Looker in the cloud.
Install Docker Compose
Docker Compose is a tool for defining and running applications composed of many Docker containers. (Any guesses where the name came from? 😉)
To install Docker Compose:
Instructions provided in this documentation should be enough even if you are completely new to Docker and Docker Compose. But you can also walk through the Get started with Docker Compose tutorial if you want to learn Docker Compose basics first.
Get the looker-extractor tool
To get the looker-extractor tool:
-
Raise a support ticket to get a link to the latest version.
-
Download the image using the link provided by support.
-
Load the image to the server you'll use to crawl Looker:
sudo docker load -i /path/to/looker-extractor-master.tar
Get the compose file
Atlan provides you with a configuration file for the looker-extractor tool. This is a Docker compose file.
To get the compose file:
- Download the latest compose file.
- Save the file to an empty directory on the server you'll use to access your on-premises databases.
- The file is
docker-compose.yaml.
Define Looker connections
The structure of the compose file includes three main sections:
x-templatescontains configuration fragments. You should ignore this section - do not make any changes to it.servicesis where you will define your Looker connections.volumescontains mount information. You should ignore this section as well - do not make any changes to it.
Define services
For each on-premises Looker instance, define an entry under services in the compose file.
Each entry will have the following structure:
services:
CONNECTION-NAME:
<<: *extract
environment:
<<: *looker-defaults
INCLUDE_PROJECTS: "project1,project2"
USE_FIELD_LEVEL_LINEAGE: "true"
volumes:
- ./output/looker-example:/output/process
- Replace
CONNECTION-NAMEwith the name of your connection. <<: *extracttells the looker-extractor tool to run.environmentcontains all parameters for the tool. Replaces the values given forINCLUDE_PROJECTSwith the names of your own Looker projects you want to extract. Separate each project name by a comma.volumesspecifies where to store results. In this example, the extractor will store results in the./output/looker-examplefolder on the local file system.
You can add as many Looker connections as you want.
Docker's documentation describes the services format in more detail.
Provide credentials
To define the credentials for your Looker connections you will need to provide:
- A Looker SDK configuration file
- A private key to access your git repository via ssh (to extract field-level lineage)
- A passphrase to decipher the private key (to extract field-level lineage)
The Looker metadata includes the git repo locations.
The Looker SDK configuration is a .ini file with the following format:
[Looker]
# Base URL for your looker instance API. Do not include /api/* in the URL.
base_url=https://<host>:<port>
# API 3 client id
client_id=YourClientID
# API 3 client secret
client_secret=YourClientSecret
verify_ssl=True
Secure credentials
Using local files
If you decide to keep Looker credentials in plaintext files, we recommend you restrict access to the directory and the compose file. For extra security, we recommend you use Docker secrets to store the sensitive passwords.
To specify the local files in your compose file:
secrets:
looker_config:
file: ./looker.ini
looker_git_private_key:
file: ./id_ed25519
looker_git_private_key_passphrase:
file: ./passphrase.txt
This secrets section is at the same top-level as the services section described earlier. It is not a sub-section of the services section.
Using Docker secrets
To create and use Docker secrets:
-
Store the Looker SDK configuration file:
sudo docker secret create looker_config path/to/looker.ini -
At the top of your compose file, add a secrets element to access your secret:
secrets:
looker_config:
external: true
name: looker_config- The
nameshould be the same one you used in thedocker secret createcommand above. - Once stored as a Docker secret, you can remove the local Looker SDK configuration file.
info💪 Did you know? You can use the same steps to create Docker secrets for your git details, as well. Replace the name (
looker_config) and path to the file, but otherwise run the same command. - The
-
Within the
servicesection of the compose file, add a new secrets element and specify the name of the secret within your service to use it.
Example
Let's explain in detail with an example:
secrets:
looker_config:
external: true
name: looker_config
looker_git_private_key:
file: ./id_ed25519
looker_git_private_key_passphrase:
external: true
name: looker_git_private_key_passphrase
x-templates:
# ...
services:
my-looker:
<<: *extract
environment:
<<: *looker-defaults
INCLUDE_PROJECTS: "project1,project2"
USE_FIELD_LEVEL_LINEAGE: "true"
volumes:
- ./output/looker-example:/output/process
secrets:
- looker_config
- looker_git_private_key
- looker_git_private_key_passphrase
volumes:
jars:
- In this example we've defined the secrets at the top of the file (you could also define them at the bottom):
looker_configrefers to an external Docker secret created using thedocker secret createcommand.looker_git_private_keyrefers to a local file.looker_git_private_key_passphraserefers to an external Docker secret created using thedocker secret createcommand.
- The name of this service is
my-looker. You can use any meaningful name you want. - The
<<: *looker-defaultssets the connection type to Looker. INCLUDE_PROJECTStells the extractor to only extractproject1andproject2from Looker.USE_FIELD_LEVEL_LINEAGEtells the extractor to extract field-level lineage. This means the git private key information is also required.- The
./output/looker-example:/output/processline tells the extractor where to store results. In this example, the extractor will store results in the./output/looker-exampledirectory on the local file system. We recommend you output metadata for different connections in separate directories. - The
secretssection withinservicestells the extractor which secrets to use for this service. Each of these refers to the name of a secret listed at the beginning of the compose file.