Marius Dammen
- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 11
Posts
Recent activity by Marius Dammen-
Add header support for json source
CompletedHeaders are currently supported using a json sink, but it is not allowed with a json source.
-
Support for routing a response to another pipe
Not plannedWhen posting data to a service, it will sometimes return an array with e.g. an id, and a status on the individual record. This result can be merged back (correlated) into the source pipe in Sesam. ...
-
Support for $SECRET in pipes
CompletedI see that $ENV is supported in pipes, but it seems like $SECRET doesn't work, is that correct? The context is sending an specific api key in a header for a specific GET/POST operation. That kind o...
-
Memory consumption
AnsweredThe subscription page does not list the available amount of memory available for a node. There is also no metrics showing the amount of memory used. This would make it easier to foresee bottlenecks...
-
Ability to suppress specific pipeline configuration warnings
CompletedConfiguration warnings show up on the pipeline list, but in some cases it may be more of a suggestion. In those cases the warning is misleading. One example is the sql sink "use_bulk_operations" at...
-
Better comments
AnsweredA possibility to add multi line comments to the config, and not just in the transform.
-
Additional support for chaining systems
AnsweredCurrently there is a way to chain system calls via e.g. the URL, but it is not a first class citizen. Example "url": "https://www.secondsystem.com?firstStep=https://SESAM-SYSTEM/api" This approach ...
-
String template feature
AnsweredAdd basic string template support, mainly for the URL part of a micro-service configuration. Example: https://www.api.com/somerecords?startdate={{ date.now | date.to_string `%m%d%Y%H%M%S` }} An exa...
-
Change primary key limitation for MS SQL Server sinks
AnsweredIf a table (e.g. a staging/interface table) has a auto incrementing id set as the primary key (PK), Sesam cannot be used. It cannot supply the value, since it is generated, and if the PK-column is ...
-
Remove timestamp limitation for MS SQL Server sinks
AnsweredIf a target database table has a column with the type "timestamp", it will fail on the first update. It seems like the update process is based on updating with the existing values, and just replaci...