```[2021-07-02 16:17:51,963] INFO {datahub.ent...
# ingestion
c
Copy code
[2021-07-02 16:17:51,963] INFO     {datahub.entrypoints:75} - Using config: {'source': {'type': 'hive', 'config': {'host_port': 'localhost:10000', 'database': 'test'}}, 'sink': {'type': 'datahub-rest', 'config': {'server': '<http://localhost:8080>'}}}
[2021-07-02 16:17:52,210] ERROR    {datahub.ingestion.run.pipeline:52} - failed to write record with workunit test.test.test1 with Expecting value: line 1 column 1 (char 0) and info {}

Source (hive) report:
{'failures': {},
 'filtered': [],
 'tables_scanned': 1,
 'views_scanned': 0,
 'warnings': {},
 'workunit_ids': ['test.test.test1'],
 'workunits_produced': 1}
Sink (datahub-rest) report:
{'failures': [{'e': JSONDecodeError('Expecting value: line 1 column 1 (char 0)')}], 'records_written': 0, 'warnings': []}
g
The version different is likely ok - it seems like datahub wasn’t fully up when you tried to ingest. If you’re running using docker, can you run
datahub docker check
to verify that it’s running correctly
c
That's very helpful. My bad. Thank you