shy-island-99768
02/25/2022, 4:06 PMSource (lookml) report:
{'workunits_produced': 0,
'workunit_ids': [],
'warnings': {},
'failures': {'/models/google_ads.model.lkml': ['cannot resolve include /views/vm_datawarehouse/sales/sales_orderline.view.lkml']},
'models_discovered': 9,
'models_dropped': [...],
'views_discovered': 0,
'views_dropped': []}
Sink (datahub-rest) report:
{'records_written': 0,
'warnings': [],
'failures': [],
'downstream_start_time': None,
'downstream_end_time': None,
'downstream_total_latency_in_seconds': None}
Pipeline finished with failures
Note that im running this in docker:
FROM python:3.8-slim-bullseye
WORKDIR /app
COPY ./models /models
COPY ./views /views
COPY ./receipt.yml /app/
RUN pip install acryl-datahub[lookml]
RUN ls /views/vm_datawarehouse/sales/
CMD ["datahub", "ingest", "-c", "receipt.yml"]
With the receipt:
source:
type: "lookml"
config:
# Coordinates
base_folder: /models/
# Options
api:
# Coordinates for your looker instance
base_url: <https://host>
client_id: ID
client_secret: SECRET
github_info:
repo: VanMoof/looker
model_pattern:
allow:
- "google_ads"
sink:
type: "datahub-rest"
config:
server: "<http://HOST:8080>"
token: "TOKEN"
Note that when running the 'ls' I can see the view in the correct folder. Any ideas why this is failing? Something particular related to the absolute paths?shy-island-99768
02/25/2022, 4:16 PMlittle-megabyte-1074