2016-11-07 1 views
0

親愛なるアクカ/キャメルマスターズ!キャメルアッカとアクターからの返信

私はルート以下います

(netty4:TCP) - >(アッカ:俳優)

を私はアッカ・ラクダのモジュールを使用しています:

アッカを:俳優はタイプUntypedConsumerActorでありますIは、TCPソケットにバイトを送信すると、私はどのTEL例外を受け取る俳優

netty4:tcp://localhost:8000?textline=true 

: netty4:TCPは、アッカのgetEndopointUri方法で定義されたエンドポイントでありますそのソケットチャンネルは閉じていますか:

Caused by: java.nio.channels.ClosedChannelException: null 
     at io.netty.channel.AbstractChannel$AbstractUnsafe.write(...)(Unknown Source) [netty-all-4.1.4.Final.jar:4.1.4.Final] 

Message History 
--------------------------------------------------------------------------------------------------------------------------------------- 
RouteId    ProcessorId   Processor                  Elapsed (ms) 
[akka://FileDaemonS] [akka://FileDaemonS] [tcp://localhost:8000               ] [  60061] 
[akka://FileDaemonS] [to1    ] [akka://FileDaemonSystem/user/FileDaemonTcpEndpoint?autoAck=false&replyTimeout=] [  60037] 
java.util.concurrent.TimeoutException: Failed to get response from the actor [ActorEndpointPath(akka://FileDaemonSystem/user/FileDaemonTcpEndpoint)] within timeout [1 minute]. Check replyTimeout and blocking settings [Endpoint[akka://FileDaemonSystem/user/FileDaemonTcpEndpoint?autoAck=false&replyTimeout=60000+milliseconds]] 
     at akka.camel.internal.component.ActorProducer$$anonfun$1.applyOrElse(ActorComponent.scala:151) ~[akka-camel_2.11-2.4.9.jar:na] 
     at akka.camel.internal.component.ActorProducer$$anonfun$1.applyOrElse(ActorComponent.scala:148) ~[akka-camel_2.11-2.4.9.jar:na] 
     at scala.runtime.AbstractPartialFunction.apply(AbstractPartialFunction.scala:36) ~[scala-library-2.11.8.jar:na] 
     at scala.PartialFunction$AndThen.apply(PartialFunction.scala:186) [scala-library-2.11.8.jar:na] 
     at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32) [scala-library-2.11.8.jar:na] 

私は間違っていますか?

+0

サーバーが正常に動作します。私はFileDaemonTcpEndpoint#onReceiveメソッドでメッセージを受け取ります。応答の送信中に問題が発生する –

答えて

0

解決策が見つかりました。一方向としてNettyエンドポイントを設定すると、問題が解決されます。

netty4:tcp://localhost:8000?textline=true&sync=false 
関連する問題