142.5.3. 작업 삭제.

HBase 삭제 작업을 수행하기 위해 camel-hbase를 사용할 수도 있습니다. 삭제 작업은 전체 행을 제거합니다. 지정해야 하는 모든 행은 메시지 헤더의 일부로 하나 이상의 행입니다.

        <route>
            <from uri="direct:in"/>
            <!-- Set the HBase Row of the Get -->
            <setHeader headerName="CamelHBaseRowId">
                <el>${in.body.id}</el>
            </setHeader>
            <to uri="hbase:mytable?operation=CamelHBaseDelete"/>
        </route>