You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add as many indices as you like.
In addition to the special index column labels datetime, id, and value, the values of all keys within the Pipe.columns dictionary will be treated as indices when creating and updating tables:
Added a default 60-second timeout for pipe attributes.
All parameter properties (e.g. Pipe.columns, Pipe.target, Pipe.dtypes, etc.) will sync with the instance every 60 seconds. The in-memory attributes will be patched on top of the database values, so your unsaved state won't be lost (persist your state with Pipe.edit()). You can change the timeout duration with mrsm edit config pipes under the keys attributes:local_cache_timeout_seconds. To disable this caching behavior, set the value to null.
Added custom indices and Pandas data types to the Web UI.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
v1.3.0: Dynamic Columns
Improvements
Syncing now handles dynamic columns.
Syncing a pipe with new columns will trigger an
ALTER TABLE
query to append the columns to your table:If you've specified index columns, you can use this feature to fill in
NULL
values in your table:Add as many indices as you like.
In addition to the special index column labels
datetime
,id
, andvalue
, the values of all keys within thePipe.columns
dictionary will be treated as indices when creating and updating tables:Added a default 60-second timeout for pipe attributes.
All parameter properties (e.g.
Pipe.columns
,Pipe.target
,Pipe.dtypes
, etc.) will sync with the instance every 60 seconds. The in-memory attributes will be patched on top of the database values, so your unsaved state won't be lost (persist your state withPipe.edit()
). You can change the timeout duration withmrsm edit config pipes
under the keysattributes:local_cache_timeout_seconds
. To disable this caching behavior, set the value tonull
.Added custom indices and Pandas data types to the Web UI.
This discussion was created from the release v1.3.0: Dynamic Columns.
Beta Was this translation helpful? Give feedback.
All reactions