In CCL, the Aleri store element migrates to a CREATE MEMORY STORE statement and the SourceStream element migrates to an input window.
AleriML:
<Store file="store1" fullsize="64" id="store1" kind="memory"/>
<SourceStream id="alldatatypes" store="store1">
<Column datatype="int32" key="true" name="id"/>
<Column datatype="int64" key="true" name="a"/>
<Column datatype="string" key="false" name="charData"/>
</SourceStream>
CCL:
CREATE MEMORY STORE store1 PROPERTIES INDEXTYPE ='tree', INDEXSIZEHINT =8 ; CREATE INPUT WINDOW alldatatypes SCHEMA (id INTEGER, a LONG, charData STRING) PRIMARY KEY (id, a ) STORE store1;