Hello everybody,
I am new to the OHDSI platform and I am trying to setup a local OHDSI stack environment using BroadSea and postgresql as database. I have followed the guide provided in the BroadSea documentation page(https://github.com/OHDSI/Broadsea ) and I get no error messages.
When I make specific GET requests, I get normal replies and the expected results (according to the documentation and forum discussions) e.g. :
http://<ipaddress>:<port>/WebAPI/info
Result: {“version”:“2.7.2”}
http://<ipaddress>:<port>/WebAPI/vocabulary/OHDSI-CDMV5-synthea/info
Result: {“version”:“v5.0 10-JAN-19”,“dialect”:“postgresql”}
http://<ipaddress>:<port>/WebAPI/source/sources
Result:
[{“sourceId”:1,“sourceName”:“OHDSI CDM synthea Database”,“sourceDialect”:“postgresql”,“sourceKey”:“OHDSI-CDMV5-synthea”,“daimons”:[{“sourceDaimonId”:1,“daimonType”:“CDM”,“tableQualifier”:“cdm”,“priority”:2},{“sourceDaimonId”:2,“daimonType”:“Vocabulary”,“tableQualifier”:“cdm”,“priority”:2},{“sourceDaimonId”:3,“daimonType”:“Results”,“tableQualifier”:“ohdsi”,“priority”:2},{“sourceDaimonId”:4,“daimonType”:“CEM”,“tableQualifier”:“ohdsi”,“priority”:2},{“sourceDaimonId”:5,“daimonType”:“Temp”,“tableQualifier”:“temp”,“priority”:2}]}]
I have setup three schemas in my database. One for cdm and vocabulary (cdm), one for results and evidence (ohdsi) and one for temp (temp).
From pgadmin and dbeaver I check the data and seem to have been loaded successfully from synthea csv files.
Some POST requests and the corresponding actions seem to have been executed successfully too e.g. :
http://<ipaddress>:<port>/WebAPI/ddl/results?dialect=postgresql&schema=ohdsi&vocabSchema=cdm&tempSchema=temp&initConceptHierarchy=true
Unfortunately when I hit:
http://<ipaddress>:<port>/atlas/#/datasources/OHDSI-CDMV5-synthea/dashboard
on browser, I get an Internal Server Error for:
http://<ipaddress>:<port>/WebAPI/cdmresults/OHDSI-CDMV5-synthea/dashboard
As far as I can understand, the specific error is:
ERROR: relation “ohdsi.achilles_analysis” does not exist
Does anybody have any clue, what the problem could be?
Thanks in advance