You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, inclusion rule name insertion will use bulk uploading optionally depending on how a user has their the environment variables set. Here is a reference to the code:
Generally, the amount of rows to insert for inclusion rules is small so we should disable bulk upload here since may require additional R package dependencies based on the target RDMBS for the insert. Specifically, RedShift requires additional AWS packages when bulk uploading is performed.
The text was updated successfully, but these errors were encountered:
The notion of uploading the inclusion rule names should be removed per #158 but since this is a breaking change, we'll wait for v1.x to address this. In the meantime, the exportCohortStatsTables function now takes a cohortDefinitionSet argument to avoid the need to upload inclusion rules per #156.
Currently, inclusion rule name insertion will use bulk uploading optionally depending on how a user has their the environment variables set. Here is a reference to the code:
CohortGenerator/R/CohortStats.R
Lines 120 to 128 in f170a50
And the documentation for the
insertTable
command:http://ohdsi.github.io/DatabaseConnector/reference/insertTable.html
Generally, the amount of rows to insert for inclusion rules is small so we should disable bulk upload here since may require additional R package dependencies based on the target RDMBS for the insert. Specifically, RedShift requires additional AWS packages when bulk uploading is performed.
The text was updated successfully, but these errors were encountered: