```Source (mysql) report: {'workunits_produced': 1...
# ingestion
l
Copy code
Source (mysql) report:
{'workunits_produced': 13,
 'workunit_ids': ['container-info-none-urn:li:container:572998b031769da2cb678f19608a921f',
                  'container-platforminstance-none-urn:li:container:572998b031769da2cb678f19608a921f',
                  'container-subtypes-none-urn:li:container:572998b031769da2cb678f19608a921f',
                  'container-info-audience_manager-urn:li:container:7e15bde4c890869dbd7058de93e81a98',
                  'container-platforminstance-audience_manager-urn:li:container:7e15bde4c890869dbd7058de93e81a98',
                  'container-subtypes-audience_manager-urn:li:container:7e15bde4c890869dbd7058de93e81a98',
                  'container-parent-container-audience_manager-urn:li:container:7e15bde4c890869dbd7058de93e81a98-urn:li:container:572998b031769da2cb678f19608a921f',
                  'container-urn:li:container:7e15bde4c890869dbd7058de93e81a98-to-urn:li:dataset:(urn:li:dataPlatform:mysql,audience_manager.tableA,PROD)',
                  'audience_manager.tableA',
                  'audience_manager.tableA-subtypes',
                  'container-urn:li:container:7e15bde4c890869dbd7058de93e81a98-to-urn:li:dataset:(urn:li:dataPlatform:mysql,audience_manager.task_events,PROD)',
                  'audience_manager.task_events',
                  'audience_manager.task_events-subtypes'],
 'warnings': {},
 'failures': {},
 'cli_version': '0.8.38',
 'cli_entry_location': '/usr/local/lib/python3.9/site-packages/datahub/__init__.py',
 'py_version': '3.9.13 (main, May 24 2022, 21:28:44) \n[Clang 13.0.0 (clang-1300.0.29.30)]',
 'py_exec_path': '/usr/local/opt/python@3.9/bin/python3.9',
 'os_details': 'macOS-11.6.2-x86_64-i386-64bit',
 'tables_scanned': 2,
 'views_scanned': 0,
 'entities_profiled': 0,
 'filtered': ['information_schema.*', 'datahub.*', 'mysql.*', 'performance_schema.*', 'sys.*'],
 'soft_deleted_stale_entities': [],
 'query_combiner': None}
Sink (datahub-kafka) report:
{'records_written': 13,
 'warnings': [],
 'failures': [],
 'downstream_start_time': None,
 'downstream_end_time': None,
 'downstream_total_latency_in_seconds': None}

Pipeline finished successfully producing 13 workunits
[2022-07-18 15:11:21,048] WARNING  {urllib3.connectionpool:810} - Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x13ea2b5b0>: Failed to establish a new connection: [Errno 61] Connection refused')': /config
[2022-07-18 15:11:25,049] WARNING  {urllib3.connectionpool:810} - Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x13ea2b6a0>: Failed to establish a new connection: [Errno 61] Connection refused')': /config
[2022-07-18 15:11:33,055] WARNING  {urllib3.connectionpool:810} - Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x13ea2b8b0>: Failed to establish a new connection: [Errno 61] Connection refused')': /config
any idea what exactly is these warnings and why it is trying to call /config.
m
Hi Dipesh, these are non-fatal checks the cli does to verify if it is talking to a compatible server (will not fail ingestion). These warnings should not be showing in the latest releases of the cli (e.g. 0.8.41)
l
@mammoth-bear-12532 thank you