has anyone came across this issue while connecting...
# troubleshoot
a
has anyone came across this issue while connecting / syncing source. mysql
Copy code
see thread
Copy code
'tabulate-0.8.9 termcolor-1.1.0 toml-0.10.2 toolz-0.11.2 tqdm-4.64.0 traitlets-5.1.1 types-Deprecated-1.2.5 types-termcolor-1.1.3 '
           'typing-extensions-4.1.1 typing-inspect-0.7.1 tzdata-2022.1 tzlocal-4.2 urllib3-1.26.9 wcwidth-0.2.5 websocket-client-1.3.2 wrapt-1.14.0 '
           'zipp-3.8.0\n'
           '[2022-04-11 14:10:15,095] INFO     {datahub.cli.ingest_cli:88} - DataHub CLI version: 0.8.32\n'
           '[2022-04-11 14:10:15,338] ERROR    {datahub.entrypoints:152} - File '
           '"/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/cli/ingest_cli.py", line 95, in run\n'
           '    78   def run(\n'
           '    79       ctx: click.Context,\n'
           '    80       config: str,\n'
           '    81       dry_run: bool,\n'
           '    82       preview: bool,\n'
           '    83       strict_warnings: bool,\n'
           '    84       preview_workunits: int,\n'
           '    85   ) -> None:\n'
           ' (...)\n'
           '    91       pipeline_config = load_config_file(config_file)\n'
           '    92   \n'
           '    93       try:\n'
           '    94           logger.debug(f"Using config: {pipeline_config}")\n'
           '--> 95           pipeline = Pipeline.create(pipeline_config, dry_run, preview, preview_workunits)\n'
           '    96       except ValidationError as e:\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/run/pipeline.py", line '
           '184, in create\n'
           '    176  def create(\n'
           '    177      cls,\n'
           '    178      config_dict: dict,\n'
           '    179      dry_run: bool = False,\n'
           '    180      preview_mode: bool = False,\n'
           '    181      preview_workunits: int = 10,\n'
           '    182  ) -> "Pipeline":\n'
           '    183      config = PipelineConfig.parse_obj(config_dict)\n'
           '--> 184      return cls(\n'
           '    185          config,\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/run/pipeline.py", line '
           '116, in __init__\n'
           '    105  def __init__(\n'
           '    106      self,\n'
           '    107      config: PipelineConfig,\n'
           '    108      dry_run: bool = False,\n'
           '    109      preview_mode: bool = False,\n'
           '    110      preview_workunits: int = 10,\n'
           '    111  ):\n'
           '    112      self.config = config\n'
           '    113      self.dry_run = dry_run\n'
           '    114      self.preview_mode = preview_mode\n'
           '    115      self.preview_workunits = preview_workunits\n'
           '--> 116      self.ctx = PipelineContext(\n'
           '    117          run_id=self.config.run_id,\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/api/common.py", line '
           '53, in __init__\n'
           '    44   def __init__(\n'
           '    45       self,\n'
           '    46       run_id: str,\n'
           '    47       datahub_api: Optional[DatahubClientConfig] = None,\n'
           '    48       pipeline_name: Optional[str] = None,\n'
           '    49       dry_run: bool = False,\n'
           '    50       preview_mode: bool = False,\n'
           '    51   ) -> None:\n'
           '    52       self.run_id = run_id\n'
           '--> 53       self.graph = DataHubGraph(datahub_api) if datahub_api is not None else None\n'
           '    54       self.pipeline_name = pipeline_name\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/graph/client.py", line '
           '51, in __init__\n'
           '    39   def __init__(self, config: DatahubClientConfig) -> None:\n'
           ' (...)\n'
           '    47           retry_max_times=self.config.retry_max_times,\n'
           '    48           extra_headers=self.config.extra_headers,\n'
           '    49           ca_certificate_path=self.config.ca_certificate_path,\n'
           '    50       )\n'
           '--> 51       self.test_connection()\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/emitter/rest_emitter.py", line '
           '161, in test_connection\n'
           '    139  def test_connection(self) -> dict:\n'
           ' (...)\n'
           '    157              raise ConfigurationError(message)\n'
           '    158      else:\n'
           '    159          auth_message = "Maybe you need to set up authentication? "\n'
           '    160          message = f"Unable to connect to {self._gms_server}/config with status_code: {response.status_code}. {auth_message if '
           "response.status_code == 401 else ''}Please check your configuration and make sure you are talking to the DataHub GMS (usually "
           '<datahub-gms-host>:8080) or Frontend GMS API (usually <frontend>:9002/api/gms)."\n'
           '--> 161          raise ConfigurationError(message)\n'
           '\n'
           '---- (full traceback above) ----\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/cli/ingest_cli.py", line 95, in '
           'run\n'
           '    pipeline = Pipeline.create(pipeline_config, dry_run, preview, preview_workunits)\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/run/pipeline.py", line '
           '184, in create\n'
           '    return cls(\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/run/pipeline.py", line '
           '116, in __init__\n'
           '    self.ctx = PipelineContext(\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/api/common.py", line '
           '53, in __init__\n'
           '    self.graph = DataHubGraph(datahub_api) if datahub_api is not None else None\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/ingestion/graph/client.py", line '
           '51, in __init__\n'
           '    self.test_connection()\n'
           'File "/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/emitter/rest_emitter.py", line '
           '161, in test_connection\n'
           '    raise ConfigurationError(message)\n'
           '\n'
           'ConfigurationError: Unable to connect to '
           '<http://a79a21afa4f014c8382069d69a96afad-834242307.eu-west-1.elb.amazonaws.com:9002/api/gms/config> with status_code: 401. Maybe you need '
           'to set up authentication? Please check your configuration and make sure you are talking to the DataHub GMS (usually '
           '<datahub-gms-host>:8080) or Frontend GMS API (usually <frontend>:9002/api/gms).\n'
           '[2022-04-11 14:10:15,338] INFO     {datahub.entrypoints:161} - DataHub CLI version: 0.8.32 at '
           '/tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/lib/python3.9/site-packages/datahub/__init__.py\n'
           '[2022-04-11 14:10:15,338] INFO     {datahub.entrypoints:164} - Python version: 3.9.9 (main, Dec 21 2021, 10:03:34) \n'
           '[GCC 10.2.1 20210110] at /tmp/datahub/ingest/venv-daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9/bin/python3 on '
           'Linux-5.4.176-91.338.amzn2.x86_64-x86_64-with-glibc2.31\n'
           '[2022-04-11 14:10:15,338] INFO     {datahub.entrypoints:167} - GMS config {}\n',
           "2022-04-11 14:10:16.241181 [exec_id=daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9] INFO: Failed to execute 'datahub ingest'",
           '2022-04-11 14:10:16.243675 [exec_id=daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9] INFO: Caught exception EXECUTING '
           'task_id=daf9d9c4-a66c-4bd1-9817-86c1ebfb73c9, name=RUN_INGEST, stacktrace=Traceback (most recent call last):\n'
           '  File "/usr/local/lib/python3.9/site-packages/acryl/executor/execution/default_executor.py", line 119, in execute_task\n'
           '    self.event_loop.run_until_complete(task_future)\n'
           '  File "/usr/local/lib/python3.9/site-packages/nest_asyncio.py", line 81, in run_until_complete\n'
           '    return f.result()\n'
           '  File "/usr/local/lib/python3.9/asyncio/futures.py", line 201, in result\n'
           '    raise self._exception\n'
           '  File "/usr/local/lib/python3.9/asyncio/tasks.py", line 256, in __step\n'
           '    result = coro.send(None)\n'
           '  File "/usr/local/lib/python3.9/site-packages/acryl/executor/execution/sub_process_ingestion_task.py", line 115, in execute\n'
           '    raise TaskError("Failed to execute \'datahub ingest\'")\n'
           "acryl.executor.execution.task.TaskError: Failed to execute 'datahub ingest'\n"]}
Execution finished with errors.
e
@dazzling-judge-80093 any ideas on this one by any chance?
I don’t even see the error message in this stack
a
FYI: i tried deploying datahub: • converted helm-chart to Yaml • Helm-chart Both yields same result. not sure if it's to do with EKS.
If helps here's logs from Pod
kubectl logs datahub-acryl-datahub-actions-8899b47f7-748bw
Copy code
[2022-04-12 07:54:58,807] INFO     {acryl_action_fwk.source.datahub_streaming:201} - Msg received: MetadataChangeLog_Versioned_v1, 0, 203
~~~~ Execution Summary ~~~~

RUN_INGEST - {'errors': [],
 'exec_id': '58e1ecf5-8baa-47ad-82da-8da189c43afd',
 'infos': ['2022-04-12 07:53:35.003918 [exec_id=58e1ecf5-8baa-47ad-82da-8da189c43afd] INFO: Starting execution for task with name=RUN_INGEST',
           '2022-04-12 07:54:58.762521 [exec_id=58e1ecf5-8baa-47ad-82da-8da189c43afd] INFO: stdout=Requirement already satisfied: pip in '
           '/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages (21.2.4)\n'

           '[2022-04-12 07:54:57,769] ERROR    {datahub.entrypoints:152} - File '
           '"/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connection.py", line 174, in '
           '_new_conn\n'
           '    161  def _new_conn(self):\n'
           ' (...)\n'
           '    170      if self.socket_options:\n'
           '    171          extra_kw["socket_options"] = self.socket_options\n'
           '    172  \n'
           '    173      try:\n'
           '--> 174          conn = connection.create_connection(\n'
           '    175              (self._dns_host, self.port), self.timeout, **extra_kw\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/util/connection.py", line 72, in '
           'create_connection\n'
           '    37   def create_connection(\n'
           '    38       address,\n'
           '    39       timeout=socket._GLOBAL_DEFAULT_TIMEOUT,\n'
           '    40       source_address=None,\n'
           '    41       socket_options=None,\n'
           '    42   ):\n'
           ' (...)\n'
           '    68           return six.raise_from(\n'
           '    69               LocationParseError(u"\'%s\', label empty or too long" % host), None\n'
           '    70           )\n'
           '    71   \n'
           '--> 72       for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):\n'
           '    73           af, socktype, proto, canonname, sa = res\n'
           '\n'
           'File "/usr/local/lib/python3.9/socket.py", line 954, in getaddrinfo\n'
           '    937  def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0):\n'
           ' (...)\n'
           '    950      """\n'
           '    951      # We override this function since we want to translate the numeric family\n'
           '    952      # and socket type values to enum constants.\n'
           '    953      addrlist = []\n'
           '--> 954      for res in _socket.getaddrinfo(host, port, family, type, proto, flags):\n'
           '    955          af, socktype, proto, canonname, sa = res\n'
           '\n'
           'gaierror: [Errno -2] Name or service not known\n'
           '\n'
           'While handling the above exception, another exception occurred:\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connectionpool.py", line 703, in '
           'urlopen\n'
           '    522  def urlopen(\n'
           '    523      self,\n'
           '    524      method,\n'
           '    525      url,\n'
           '    526      body=None,\n'
           '    527      headers=None,\n'
           '    528      retries=None,\n'
           '    529      redirect=True,\n'
           '    530      assert_same_host=True,\n'
           '    531      timeout=_Default,\n'
           '    532      pool_timeout=None,\n'
           '    533      release_conn=None,\n'
           '    534      chunked=False,\n'
           '    535      body_pos=None,\n'
           '    536      **response_kw\n'
           '    537  ):\n'
           ' (...)\n'
           '    699          if is_new_proxy_conn and http_tunnel_required:\n'
           '    700              self._prepare_proxy(conn)\n'
           '    701  \n'
           '    702          # Make the request on the httplib connection object.\n'
           '--> 703          httplib_response = self._make_request(\n'
           '    704              conn,\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connectionpool.py", line 398, in '
           '_make_request\n'
           '    361  def _make_request(\n'
           '    362      self, conn, method, url, timeout=_Default, chunked=False, **httplib_request_kw\n'
           '    363  ):\n'
           ' (...)\n'
           '    394      try:\n'
           '    395          if chunked:\n'
           '    396              conn.request_chunked(method, url, **httplib_request_kw)\n'
           '    397          else:\n'
           '--> 398              conn.request(method, url, **httplib_request_kw)\n'
           '    399  \n'
           '\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connection.py", line 239, in '
           'request\n'
           '    231  def request(self, method, url, body=None, headers=None):\n'
           ' (...)\n'
           '    235          # Avoid modifying the headers passed into .request()\n'
           '    236          headers = headers.copy()\n'
           '    237      if "user-agent" not in (six.ensure_str(k.lower()) for k in headers):\n'
           '    238          headers["User-Agent"] = _get_default_user_agent()\n'
           '--> 239      super(HTTPConnection, self).request(method, url, body=body, headers=headers)\n'
           '\n'
           'File "/usr/local/lib/python3.9/http/client.py", line 1285, in request\n'
           '    1282  def request(self, method, url, body=None, headers={}, *,\n'
           '    1283              encode_chunked=False):\n'
           '    1284      """Send a complete request to the server."""\n'
           '--> 1285      self._send_request(method, url, body, headers, encode_chunked)\n'
           '\n'
           'File "/usr/local/lib/python3.9/http/client.py", line 1331, in _send_request\n'
           '    1287  def _send_request(self, method, url, body, headers, encode_chunked):\n'
           ' (...)\n'
           '    1327      if isinstance(body, str):\n'
           '    1328          # RFC 2616 Section 3.7.1 says that text default has a\n'
           '    1329          # default charset of iso-8859-1.\n'
           "    1330          body = _encode(body, 'body')\n"
           '--> 1331      self.endheaders(body, encode_chunked=encode_chunked)\n'
           '\n'
           'File "/usr/local/lib/python3.9/http/client.py", line 1280, in endheaders\n'
           '    1269  def endheaders(self, message_body=None, *, encode_chunked=False):\n'
           ' (...)\n'
           '    1276      if self.__state == _CS_REQ_STARTED:\n'
           '    1277          self.__state = _CS_REQ_SENT\n'
           '    1278      else:\n'
           '    1279          raise CannotSendHeader()\n'
           '--> 1280      self._send_output(message_body, encode_chunked=encode_chunked)\n'
           '\n'
           'File "/usr/local/lib/python3.9/http/client.py", line 1040, in _send_output\n'
           '    1031  def _send_output(self, message_body=None, encode_chunked=False):\n'
           ' (...)\n'
           '    1036      """\n'
           '    1037      self._buffer.extend((b"", b""))\n'
           '    1038      msg = b"\\r\\n".join(self._buffer)\n'
           '    1039      del self._buffer[:]\n'
           '--> 1040      self.send(msg)\n'
           '    1041  \n'
           '\n'
           'File "/usr/local/lib/python3.9/http/client.py", line 980, in send\n'
           '    972  def send(self, data):\n'
           ' (...)\n'
           '    976      """\n'
           '    977  \n'
           '    978      if self.sock is None:\n'
           '    979          if self.auto_open:\n'
           '--> 980              self.connect()\n'
           '    981          else:\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connection.py", line 205, in '
           'connect\n'
           '    204  def connect(self):\n'
           '--> 205      conn = self._new_conn()\n'
           '    206      self._prepare_conn(conn)\n'
           '\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connection.py", line 186, in '
           '_new_conn\n'
           '    161  def _new_conn(self):\n'
           ' (...)\n'
           '    182              % (self.host, self.timeout),\n'
           '    183          )\n'
           '    184  \n'
           '    185      except SocketError as e:\n'
           '--> 186          raise NewConnectionError(\n'
           '    187              self, "Failed to establish a new connection: %s" % e\n'
           '\n'
           '---- (full traceback above) ----\n'
           'File "/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/urllib3/connectionpool.py", line 703, in '
           'urlopen\n'

  
           "ConnectionError: HTTPConnectionPool(host='<http://a4b65a018390942be8bf1ddf1e59b078-1112226007.eu-west-1.elb.amazonaws.com|a4b65a018390942be8bf1ddf1e59b078-1112226007.eu-west-1.elb.amazonaws.com>', port=9002): Max "
           "retries exceeded with url: /api/gms/config (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fe522a30910>: "
           "Failed to establish a new connection: [Errno -2] Name or service not known'))\n"
           '[2022-04-12 07:54:57,770] INFO     {datahub.entrypoints:161} - DataHub CLI version: 0.8.32 at '
           '/tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/lib/python3.9/site-packages/datahub/__init__.py\n'
           '[2022-04-12 07:54:57,770] INFO     {datahub.entrypoints:164} - Python version: 3.9.9 (main, Dec 21 2021, 10:03:34) \n'
           '[GCC 10.2.1 20210110] at /tmp/datahub/ingest/venv-58e1ecf5-8baa-47ad-82da-8da189c43afd/bin/python3 on '
           'Linux-5.4.176-91.338.amzn2.x86_64-x86_64-with-glibc2.31\n'
           '[2022-04-12 07:54:57,770] INFO     {datahub.entrypoints:167} - GMS config {}\n',
           "2022-04-12 07:54:58.764388 [exec_id=58e1ecf5-8baa-47ad-82da-8da189c43afd] INFO: Failed to execute 'datahub ingest'",
           '2022-04-12 07:54:58.764734 [exec_id=58e1ecf5-8baa-47ad-82da-8da189c43afd] INFO: Caught exception EXECUTING '
           'task_id=58e1ecf5-8baa-47ad-82da-8da189c43afd, name=RUN_INGEST, stacktrace=Traceback (most recent call last):\n'
           '  File "/usr/local/lib/python3.9/site-packages/acryl/executor/execution/default_executor.py", line 119, in execute_task\n'
           '    self.event_loop.run_until_complete(task_future)\n'
           '  File "/usr/local/lib/python3.9/site-packages/nest_asyncio.py", line 81, in run_until_complete\n'
           '    return f.result()\n'
           '  File "/usr/local/lib/python3.9/asyncio/futures.py", line 201, in result\n'
           '    raise self._exception\n'
           '  File "/usr/local/lib/python3.9/asyncio/tasks.py", line 256, in __step\n'
           '    result = coro.send(None)\n'
           '  File "/usr/local/lib/python3.9/site-packages/acryl/executor/execution/sub_process_ingestion_task.py", line 115, in execute\n'
           '    raise TaskError("Failed to execute \'datahub ingest\'")\n'
           "acryl.executor.execution.task.TaskError: Failed to execute 'datahub ingest'\n"]}
Execution finished with errors.
[2022-04-12 07:54:58,825] INFO     {acryl_action_fwk.source.datahub_streaming:86} - Calling act of ExecutionRequestAction
ok checking all the pods Logs FE has some error not sure if that is related to it
Copy code
kubectl logs datahub-datahub-frontend-bdbd86b7f-sxbkq

13:55:08,984 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [datahub-frontend/conf/logback.xml] at [file:/datahub-frontend/conf/logback.xml]
13:55:09,077 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - debug attribute not set
13:55:14 [main] INFO  play.core.server.AkkaHttpServer - Listening for HTTP on /0.0.0.0:9002
14:05:00 [application-akka.actor.default-dispatcher-71] INFO  org.eclipse.jetty.util.log - Logging initialized @593270ms to org.eclipse.jetty.util.log.Slf4jLog
14:05:01 [application-akka.actor.default-dispatcher-71] WARN  o.e.j.j.spi.PropertyFileLoginModule - Exception while starting propertyUserStore: 
java.lang.IllegalStateException: Config does not exist: file:///etc/datahub/plugins/frontend/auth/user.props
	at org.eclipse.jetty.security.PropertyUserStore.loadUsers(PropertyUserStore.java:245)
	at org.eclipse.jetty.security.PropertyUserStore.doStart(PropertyUserStore.java:308)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72)
	at org.eclipse.jetty.jaas.spi.PropertyFileLoginModule.setupPropertyUserStore(PropertyFileLoginModule.java:83)
	at org.eclipse.jetty.jaas.spi.PropertyFileLoginModule.initialize(PropertyFileLoginModule.java:64)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at javax.security.auth.login.LoginContext.invoke(LoginContext.java:736)
	at javax.security.auth.login.LoginContext.access$000(LoginContext.java:195)
	at javax.security.auth.login.LoginContext$4.run(LoginContext.java:682)
	at javax.security.auth.login.LoginContext$4.run(LoginContext.java:680)
	at java.security.AccessController.doPrivileged(Native Method)
	at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
	at javax.security.auth.login.LoginContext.login(LoginContext.java:587)
	at security.AuthenticationManager.authenticateUser(AuthenticationManager.java:27)
	at controllers.AuthenticationController.logIn(AuthenticationController.java:131)
	at router.Routes$$anonfun$routes$1$$anonfun$applyOrElse$5$$anonfun$apply$5.apply(Routes.scala:456)
	at router.Routes$$anonfun$routes$1$$anonfun$applyOrElse$5$$anonfun$apply$5.apply(Routes.scala:456)
	at play.core.routing.HandlerInvokerFactory$$anon$3.resultCall(HandlerInvoker.scala:134)
	at play.core.routing.HandlerInvokerFactory$$anon$3.resultCall(HandlerInvoker.scala:133)
	at play.core.routing.HandlerInvokerFactory$JavaActionInvokerFactory$$anon$8$$anon$2$$anon$1.invocation(HandlerInvoker.scala:108)
	at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:88)
	at play.http.DefaultActionCreator$1.call(DefaultActionCreator.java:31)
	at play.core.j.JavaAction$$anonfun$9.apply(JavaAction.scala:138)
	at play.core.j.JavaAction$$anonfun$9.apply(JavaAction.scala:138)
	at scala.concurrent.impl.Future$PromiseCompletingRunnable.liftedTree1$1(Future.scala:24)
	at scala.concurrent.impl.Future$PromiseCompletingRunnable.run(Future.scala:24)
	at play.core.j.HttpExecutionContext$$anon$2.run(HttpExecutionContext.scala:56)
	at play.api.libs.streams.Execution$trampoline$.execute(Execution.scala:70)
	at play.core.j.HttpExecutionContext.execute(HttpExecutionContext.scala:48)
	at scala.concurrent.impl.Future$.apply(Future.scala:31)
	at scala.concurrent.Future$.apply(Future.scala:494)
	at play.core.j.JavaAction.apply(JavaAction.scala:138)
	at play.api.mvc.Action$$anonfun$apply$2.apply(Action.scala:96)
	at play.api.mvc.Action$$anonfun$apply$2.apply(Action.scala:89)
	at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:253)
	at scala.concurrent.Future$$anonfun$flatMap$1.apply(Future.scala:251)
	at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:36)
	at akka.dispatch.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)
	at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:92)
	at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:92)
	at akka.dispatch.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:92)
	at scala.concurrent.BlockContext$.withBlockContext(BlockContext.scala:72)
	at akka.dispatch.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:91)
	at akka.dispatch.TaskInvocation.run(AbstractDispatcher.scala:41)
	at akka.dispatch.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:49)
	at akka.dispatch.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
	at akka.dispatch.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
	at akka.dispatch.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
	at akka.dispatch.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
14:05:01 [application-akka.actor.default-dispatcher-71] WARN  application - The submitted callback is unsupported! 

22:01:07 [application-akka.actor.default-dispatcher-1671] WARN  akka.actor.ActorSystemImpl - Illegal request, responding with status '400 Bad Request': Request is missing required `Host` header: Cannot establish effective URI of request to `/`, request has a relative URI and is missing a `Host` header; consider setting `akka.http.server.default-host-header`
07:36:24 [application-akka.actor.default-dispatcher-4027] WARN  akka.actor.ActorSystemImpl - Illegal request, responding with status '400 Bad Request': Unsupported HTTP method: HTTP method too long (started with '○↑Iᄇᄐ'). Increase `akka.http.server.parsing.max-method-length` to support HTTP methods with more characters.
e
This last error seems unrelated, but are you using static user auth here? Are you mounting the user.props file?
a
i am not mounting anything i am following https://datahubproject.io/docs/deploy/aws/ only thing i did not configure is that is the ingress part. here https://datahubproject.io/docs/deploy/aws/#:~:text=datahub%2Dfrontend%3A%0A%20%20enabled,use%2Dannotation%0A%20%20%20%20%20%20%20%20paths%3A but it should work without ingress forwarding to A record. NO ?