Siddhi HTTP NoSuchMethodError

时间:2018-04-25 09:10:20

标签: java wso2 siddhi

这个问题是关于Siddhi的Java库 - CEP

说明

我尝试建立HTTP源来接收数据。创建运行时并启动它没有错误。

[nioEventLoopGroup-2-1] INFO org.wso2.transport.http.netty.listener.ServerConnectorBootstrap$HTTPServerConnector - HTTP(S) Interface starting on host localhost and port 9056
[main] INFO org.wso2.extension.siddhi.io.http.source.HttpConnectorPortBindingListener - siddhi: started HTTP server connector localhost:9056
[main] INFO org.wso2.extension.siddhi.io.http.source.HttpSourceListener - Source Listener has created for url http://localhost:9056/endpoints/

然而,当我向指定地址发送POST请求时。我收到一个错误:

[nioEventLoopGroup-3-1] ERROR org.wso2.extension.siddhi.io.http.source.HTTPConnectorListener - Error in http server connector
java.lang.NoSuchMethodError: io.netty.handler.codec.http.HttpRequest.method()Lio/netty/handler/codec/http/HttpMethod;
    at org.wso2.transport.http.netty.listener.CustomHttpContentCompressor.decode(CustomHttpContentCompressor.java:44)
    at org.wso2.transport.http.netty.listener.CustomHttpContentCompressor.decode(CustomHttpContentCompressor.java:14)
    at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81)
    at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89)
    at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:318)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:304)
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:276)
    at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:354)
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:244)
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:318)
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:304)
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:846)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:131)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:112)
    at io.netty.util.concurrent.DefaultThreadFactory$DefaultRunnableDecorator.run(DefaultThreadFactory.java:137)
    at java.lang.Thread.run(Thread.java:748)

有人能说出我做错了什么吗?提前谢谢。

受影响的产品版本: 4.1.17

操作系统,数据库,其他环境详细信息和版本:
IntelliJ IDEA 2017.3.5(社区版) Build#IC-173.4674.33,建于2018年3月6日 JRE:1.8.0_152-release-1024-b15 amd64 JVM:JetBrains s.r.o的OpenJDK 64位服务器VM Windows 10 10.0

重现的步骤: 我写的测试代码:

import org.wso2.siddhi.core.SiddhiAppRuntime;
import org.wso2.siddhi.core.SiddhiManager;
import org.wso2.siddhi.core.event.Event;
import org.wso2.siddhi.core.stream.output.StreamCallback;
import org.wso2.siddhi.core.util.EventPrinter;
//import org.wso2.extension.siddhi.io.http.source.*;

public class httpTest
{
    public static void main(String[] args) {
        String siddhiString = "@App:name(\"haha\") " +
                "@App:description(\"fasd\") " +
                "@App:statistics(reporter = \"jmx\", interval = \"30\") " +
                "@source(type=\"http\",receiver.url=\"http://localhost:9056/endpoints/\",@map(type=\"text\",fail.on.missing.attribute=\"true\",regex.A=\"(.*)\",@attributes(data=\"A\"))) " +
                "@sink(type=\"mqtt\",url=\"tcp://120.78.71.179:1883\",topic=\"34\",@map(type=\"text\")) " +
                "define stream a4P068X5YCK(data String);";
        SiddhiManager siddhiManager = new SiddhiManager();
        SiddhiAppRuntime siddhiAppRuntime = siddhiManager.createSiddhiAppRuntime(siddhiString);

        siddhiAppRuntime.addCallback("a4P068X5YCK", new StreamCallback() {
            @Override
            public void receive(Event[] events) {
                EventPrinter.print(events);
            }
        });

        siddhiAppRuntime.start();
    }
}

然后我向http://localhost:9056/endpoints/发送POST请求。它返回上面发布的异常。

更新 我回去查看Siddhi-io-http github documentation page。我发现它说:

  

...此扩展仅适用于WSO2数据分析服务器,不能与独立的siddhi一起运行。

我想这可能表明目前siddhi库不支持http。我已经在siddhi存储库页面上提交了问题以请求确认。

更新2: 我已经更改了我的Siddhi查询,以便将源流复制到另一个接收器流中。代码的其他部分保持不变:

String siddhiString = "@App:name(\"haha\") " +
            "@App:description(\"fasd\") " +
            "@App:statistics(reporter = \"jmx\", interval = \"30\") " +
            "@source(type=\"http\",receiver.url=\"http://localhost:9056/endpoints/\",@map(type=\"text\",fail.on.missing.attribute=\"true\",regex.A=\"(.*)\",@attributes(data=\"A\"))) " +
            "define stream a4P068X5YCK(data String); " +
            "@sink(type=\"mqtt\",url=\"tcp://120.78.71.179:1883\",topic=\"34\",@map(type=\"text\")) " +
            "define stream pout(data String); " +
            "from a4P068X5YCK " +
            "select * " +
            "insert into pout; " +
            "";

同样的问题仍然存在。我尝试了wso2处理器,它工作正常。现在我的猜测是:
1.版本不匹配
2. wso2处理器依赖缺少一些软件包。

我将尝试在这两个方向上识别它,并且一旦我找到新的东西就会在这里更新并发布问题页面。

更新3: 随着我不断添加更新,格式似乎有一些问题但幸运的是这个问题也结束了。我试图从wso2处理器源代码中包含所有依赖项,我的测试程序开始工作。因此我假设wid2处理器中有一个siddhi库缺少的组件。

我尝试逐个删除依赖项,看看我的测试程序是否仍然有效。最后我发现了包裹。有了这个包,我的代码运行良好。

    <dependency>
        <groupId>org.wso2.msf4j</groupId>
        <artifactId>org.wso2.msf4j.feature</artifactId>
        <version>${msf4j.version}</version>
            <type>zip</type>
    </dependency>

由于我是编码的初学者,我不是什么问题。如果有人能向我解释问题背后的原因,我将不胜感激。我很感激在这个过程中获得的所有帮助,这对我来说也是一次很棒的经历。

更新4: @Grainier我尝试了您发布的示例代码,它确实有效!虽然我仍然不知道为什么。我试图将您的确切代码复制到我项目中的新.java中。它仍然没有工作。因此我猜POM文件有一些关系。

我注意到的一点是,当我运行你的示例代码时,在控制台中打印的警告几乎没有: SMALL UPDATE:我发现警告出现是因为我使用的是JDK 10.一旦切换回1.8警告消失,代码仍然有效。所以也许这不是原因。

WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by io.netty.util.internal.ReflectionUtil (file:/C:/Users/ktz001/.m2/repository/io/netty/netty-common/4.1.16.Final/netty-common-4.1.16.Final.jar) to constructor java.nio.DirectByteBuffer(long,int)
WARNING: Please consider reporting this to the maintainers of io.netty.util.internal.ReflectionUtil
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

第二个区别在于POM文件。与你的相比,你增加了一个存储库。

<repository>
        <id>wso2-nexus</id>
        <name>WSO2 internal Repository</name>
        <url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
        <releases>
            <enabled>true</enabled>
            <updatePolicy>daily</updatePolicy>
            <checksumPolicy>ignore</checksumPolicy>
        </releases>
    </repository>

如果你能提出任何理由,那就太好了。 谢谢你的所有工作!这真的很有用。

1 个答案:

答案 0 :(得分:2)

文档似乎存在问题......这应该与独立的Siddhi一起使用。您所要做的就是在项目中添加以下依赖项(也是mqtt,我在下面没有包含这些依赖项);

<dependencies>
    <dependency>
        <groupId>org.wso2.siddhi</groupId>
        <artifactId>siddhi-core</artifactId>
        <version>${siddhi.version}</version>
    </dependency>
    <dependency>
        <groupId>org.wso2.siddhi</groupId>
        <artifactId>siddhi-annotations</artifactId>
        <version>${siddhi.version}</version>
    </dependency>
    <dependency>
        <groupId>org.wso2.siddhi</groupId>
        <artifactId>siddhi-query-compiler</artifactId>
        <version>${siddhi.version}</version>
    </dependency>
    <dependency>
        <groupId>org.wso2.extension.siddhi.io.http</groupId>
        <artifactId>siddhi-io-http</artifactId>
        <version>${siddhi.io.http.version}</version>
    </dependency>
    <dependency>
        <groupId>org.wso2.extension.siddhi.map.text</groupId>
        <artifactId>siddhi-map-text</artifactId>
        <version>${siddhi.mapper.text.version}</version>
    </dependency>
</dependencies>

但是,您的查询存在问题,即您已为单个流定义了@source@sink。哪个错了。如果你想让它成为直通,那么你必须定义两个流(一个用于源,一个用于接收)并编写一个查询以将事件从源流插入到接收流中。

更新:

可以找到样本here;请尝试一下,看看它是否有效。