Example: SourceStream with Stateless Store Migration

In CCL, the Aleri SourceStream element with an attached stateless store migrates to an input stream element because streams are stateless in CCL.

AleriML:

   <Store file="store1" fullsize="64" id="store1" kind="stateless"/>
    <SourceStream id="alldatatypes" store="store1" insertOnly="true">
	<Column datatype="int32" key="true" name="id"/>
    <Column datatype="int64" key="true" name="a"/>
    <Column datatype="string" key="false" name="charData"/>
  </SourceStream>

CCL:

CREATE  INPUT  STREAM alldatatypes
SCHEMA (id INTEGER, a LONG, charData STRING);