-
Notifications
You must be signed in to change notification settings - Fork 960
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Amundsen is unable to import MYSQL data #2066
Comments
Thanks for opening your first issue here! |
I am not totally sure this will help you but it worked for me.
Configure SSL Policy for Bolt server and HTTPS server I would suggest you to try to set encrypted to false in the default security configuration:
both in databuilder/databuilder/publisher/neo4j_csv_publisher.py and databuilder/databuilder/extractor/neo4j_extractor.py Try it out and let me know! |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
This issue has been automatically closed for inactivity. If you still wish to make these changes, please open a new pull request or reopen this one. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
on possibles solutions proposed by the op worked for me. |
Expected Behavior
Changed the connection string in https://github.com/amundsen-io/amundsen/blob/main/databuilder/example/scripts/sample_mysql_loader.py to load locally hosted MySQL data into Amundsen .
Changes made in above file:
Current Behavior
While running the python file, I get the following error:
ERROR:neo4j:Failed to write data to connection IPv4Address(('127.0.0.1', 7687)) (IPv4Address(('127.0.0.1', 7687)))
.I tried loading the sample data by running the https://github.com/amundsen-io/amundsen/blob/main/databuilder/example/scripts/sample_data_loader.py file and it worked.
Possible Solution
fix: Adding the below code to job_config in sample_mysql_loader.py fixed the issue.
f'publisher.neo4j.{neo4j_csv_publisher.NEO4J_ENCRYPTED}': False
So now the code looks like this:
Your Environment
The text was updated successfully, but these errors were encountered: