###Latest Release https://github.com/BigDataCorp/bigdata-pipeline/releases/tag/0.8
###Documentation Documentation
###Install Wiki Documentation on Install
- Mono support
- Refactored Module System
- Plugable Web endpoints (Nancy controllers and views)
The system has evolved to have plugins/modules for:
- Authentication
- Storage
- Action
- System
- Nancy Controller and View
Note: Only one storage module can be used. If more than one is installed, only the first one is loaded...
- MongoDb Storage: uses mongodb for storage (mono and windows)
- SQLite Storage: windows only
A connection string and database name must be configured in the app.config: Connection string format
mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
Sample configuration:
<appSettings>
<add key="mongoConnectionString" value="mongodb://username:password@localhost:27017/admin" />
<add key="mongoDatabaseName" value="BigdataPipeline" />
</appSettings>