jsreport-fs-store-azure-sb-sync
v1.1.0
Published
Synchronize jsreport fs store between multiple instances using azure service bus
Downloads
26
Readme
jsreport-fs-store-azure-sb-sync
Run jsreport fs store in cluster and synchronize using azure service bus
Installation
npm install jsreport-fs-store
npm install jsreport-fs-store-azure-sb-sync
Create an azure service bus and copy the connection string from the shared access policies. Then alter jsreport configuration:
"store": {
"provider": "fs"
},
"extensions": {
"fs-store": {
"sync": {
"provider": "azure-sb"
}
},
"fs-store-azure-sb-sync": {
"connectionString": "...",
// the rest is optional
"topic": "jsreport",
"subscription": "<host id>"
}
}
},