Showing
2 changed files
with
3 additions
and
2 deletions
... | ... | @@ -116,7 +116,7 @@ public class ThingsboardInstallService { |
116 | 116 | |
117 | 117 | log.info("Installing DataBase schema..."); |
118 | 118 | |
119 | - databaseSchemaService.createDatabaseSchema();//TODO | |
119 | + databaseSchemaService.createDatabaseSchema();//TODO issue 1005 - create both SQL and C* schemas in hybrid mode | |
120 | 120 | |
121 | 121 | log.info("Loading system data..."); |
122 | 122 | ... | ... |
... | ... | @@ -164,7 +164,8 @@ database: |
164 | 164 | entities: |
165 | 165 | type: "${DATABASE_TYPE:sql}" # cassandra OR sql |
166 | 166 | ts: |
167 | - type: "${DATABASE_TYPE:cassandra}" # cassandra OR sql | |
167 | + type: "${DATABASE_TYPE:sql}" # cassandra OR sql (for hybrid mode, only this value should be cassandra) | |
168 | + | |
168 | 169 | |
169 | 170 | # Cassandra driver configuration parameters |
170 | 171 | cassandra: | ... | ... |