Sitecore MongoDB not creating all database/collections -


we working on sitecore deployment in azure.

  • sitecore experience platform 8.0 rev. 160115
  • mongodb - 3.0.4

we installed mongodb, , can connect localhost using robomongo. can see “analytics” database/collections. our connection strings setup are:

connectionstring.config

but other 3 databases , collections not created.

  • tracking.live
  • tracking.history
  • tracking.contact

in sitecore.analytics.config file – setting “analytics.enabled” set true.

sitecore.analytics.config

in log found references xdb cloud initialization failed issues, therefore disabled it.

are missing configurations? or suggestions appreciated.

thank

keep in mind mongodb schemaless. of course, in production environment have create these databases manually - ensure access rights assigned correctly. in development environment, database can created on fly.

the reason analytics database created because sitecore creates indexes interactions collection. otherwise, wouldn't see database until xdb wrote data into it. same goes mongodb collection - won't appear until there's either data being written or index created.

the other 3 databases created once aggregation/processing logic executed. i.e. when instance starts collect , process visit data.

as conclusion, don't worry these databases missing (for now). verify xdb functionality working properly.


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -