miniature-eve-89383
12/08/2021, 9:03 PMnginx
container as a reverse-proxy and got the same error: Failed to log in! SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
. I have searched for documentation to do that but I couldn't find anything except some document explaining how to chang a port number in the case where mysql is already running locally, for example.miniature-eve-89383
12/09/2021, 4:57 PMminiature-eve-89383
12/09/2021, 4:58 PMminiature-eve-89383
12/09/2021, 5:02 PMminiature-eve-89383
12/09/2021, 5:50 PMminiature-eve-89383
12/09/2021, 5:53 PMmysterious-lamp-91034
12/09/2021, 8:34 PMdatahub docker quickstart
https://gist.github.com/wizardxz/bbdfc5aba74a6f7f61b4d9ef7f521745#file-gistfile1-txt-L32
Then I replaced all the 8081 to 8089 in datahub code
find . -type f -exec sed -i 's/8081/8089/g' {} +
Then I still see it complaining the same error.
I wish I can get some support here. Thanksminiature-eve-89383
12/10/2021, 2:50 PMminiature-eve-89383
12/10/2021, 2:51 PMgentle-florist-49869
12/13/2021, 6:58 PMminiature-eve-89383
12/13/2021, 8:24 PMstrong-kite-83354
12/14/2021, 9:46 AMtall-toddler-62007
12/14/2021, 2:43 PMFile "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/datahub/entrypoints.py", line 93, in main
sys.exit(datahub(standalone_mode=False, **kwargs))
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/click/core.py", line 1128, in __call__
return self.main(*args, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/click/core.py", line 1053, in main
rv = self.invoke(ctx)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/click/core.py", line 1659, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/click/core.py", line 1659, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/click/core.py", line 1395, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/click/core.py", line 754, in invoke
return __callback(*args, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/datahub/cli/ingest_cli.py", line 67, in run
pipeline = Pipeline.create(pipeline_config, dry_run, preview)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/datahub/ingestion/run/pipeline.py", line 143, in create
return cls(config, dry_run=dry_run, preview_mode=preview_mode)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/datahub/ingestion/run/pipeline.py", line 108, in __init__
source_class = source_registry.get(source_type)
File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/datahub/ingestion/api/registry.py", line 124, in get
raise KeyError(f"Did not find a registered class for {key}")
KeyError: 'Did not find a registered class for clickhouse'
dazzling-appointment-34954
12/15/2021, 3:11 PMmagnificent-carpet-1266
12/16/2021, 8:58 PMmammoth-bear-12532
future-petabyte-5942
12/20/2021, 5:52 AMagreeable-river-32119
12/20/2021, 8:38 AMMCE_CONSUMER_ENABLED=true MAE_CONSUMER_ENABLED=true DATAHUB_ANALYTICS_ENABLED=true ./gradlew :metadata-service:war:run
It cause a error
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ebeanAspectDao' defined in com.linkedin.gms.factory.entity.EbeanAspectDaoFactory: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.linkedin.metadata.entity.ebean.EbeanAspectDao]: Factory method 'createInstance' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ebeanServer' defined in com.linkedin.gms.factory.entity.EbeanServerFactory: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [io.ebean.EbeanServer]: Factory method 'createServer' threw exception; nested exception is java.lang.NullPointerException
😭miniature-eve-89383
12/21/2021, 2:37 PMminiature-eve-89383
12/22/2021, 1:23 AMdocker-compose.yml
file to add a standard nginx in front to expose port 80 instead of 9002 directly from the frontent
container. Easy to install, but I don't know how to deal with that when upgrading.mysterious-lamp-91034
12/22/2021, 10:30 PMbrief-church-81973
12/23/2021, 2:41 PMbland-orange-13353
12/27/2021, 10:28 AMwhite-air-98106
12/27/2021, 12:57 PMcuddly-telephone-51804
12/30/2021, 1:17 AMdatahub docker quickstart
and that did not include source code, just several running containers. How can I edit user.props
file to add user to login? I tried to edit this file inside the datahub-frontend-react
container but it didn't work.powerful-flower-6452
12/30/2021, 6:12 AM@Searchable
to include numeric field types? Currently the ones available are https://datahubproject.io/docs/metadata-modeling/extending-the-metadata-model/#searchable. This can enable simple numeric filters. Any particular reason why this isn’t supported currently?busy-dusk-4970
12/30/2021, 9:35 PMrhythmic-kitchen-64860
01/03/2022, 5:57 AMpowerful-flower-6452
01/03/2022, 11:11 AMmetadata-models-custom
repo and deploy it as an extension to the metadata service.
The example on https://github.com/linkedin/datahub/tree/master/metadata-models-custom tells how to deploy an extension on local. What should I do if I want an extension to gms service running on Kubernetes? Should I do something like mount the plugins folder on the gms pod?few-air-56117
01/03/2022, 2:05 PMdatahub docker quickstart
with the localhost server. Thx 😄 ,