简体   繁体   中英

using MongoDB in WSO2 EI

I want to use MongoDB for the DBlookup in sequence. My WSO2 EI version 6.1.1. I using PostgreSQL to logging calling sequences steps. Is WSO2 supporting NoSQL(not RDBMS)? Here example my PostgreSQL DB lookup:

<dblookup>
    <connection>
        <pool>
            <dsName>jdbc/WSO2EsbLogsDB</dsName>
        </pool>
    </connection>
    <statement>
        <sql><![CDATA[select id as table_name]]></sql>
        <result column="id" name="Id"/>
    </statement>
</dblookup>

Unfortunately you cannot use a NOSQL database with a DBLookup mediator in WSO2 EI. The implementation does not support that.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM