Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tenants can also be seen simply as a logical grouping of datasources data sources (see below).

DatasourceData source

A "datasourcedata source" in Membrane is the data that defines a connection to a datastore such as a JDBC database, a file or something else.

Data sources are configured using key/value properties. For example:

{
"type": "csv",
"resource": "/path/to/file.csv",
"quote-char": "\"",
"separator-char": ";",
"escape-char": "\\",
"encoding": "UTF-8"
}
or
{
  "type": "jdbc",
  "url": "jdbc:postgresql://localhost:5432/mydb"
  "username": "johndoe",
  "password": "secret"
}

Security in Membrane

Currently Membrane does not attempt to implement its own security layer. Rather it leans on RESTful principles which would make it easy for you to define a secure HTTP proxy as a security gateway for the service.

...