Github user huafengw commented on a diff in the pull request:
https://github.com/apache/incubator-gearpump/pull/178#discussion_r114961959
--- Diff:
external/rabbitmq/src/main/scala/org/apache/gearpump/external/rabbitmq/RMQSink.scala
---
@@ -0,0 +1,177 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.gearpump.external.rabbitmq
+
+import org.apache.gearpump.Message
+import org.apache.gearpump.cluster.UserConfig
+import org.apache.gearpump.streaming.sink.DataSink
+import org.apache.gearpump.streaming.task.TaskContext
+import com.rabbitmq.client.Channel
+import com.rabbitmq.client.{Connection, ConnectionFactory}
+
+class RMQSink(userConfig: UserConfig) extends DataSink{
+
+ var connection: Connection = null
+ var channel: Channel = null
+ var queueName: String = null
+
+ override def open(context: TaskContext): Unit = {
+ val factory : ConnectionFactory =
RMQSink.getConnectionFactory(userConfig)
+ connection = factory.newConnection
+ channel = connection.createChannel
+ if (channel == null) {
+ throw new RuntimeException("None of RabbitMQ channels are
available.")
+ }
+ setupQueue()
+ }
+
+ override def write(message: Message): Unit = {
+ publish(message.msg)
+ }
+
+ override def close(): Unit = {
+ channel.close()
+ connection.close()
+ }
+
+ protected def setupQueue(): Unit = {
+ val queue = RMQSink.getQueueName(userConfig)
+ if (!queue.nonEmpty) {
+ throw new RuntimeException("can not get a RabbitMQ queue name")
+ }
+
+ queueName = queue.get
+ channel.queueDeclare(queue.get, false, false, false, null)
+ }
+
+ def publish(msg: Any): Unit = {
+ msg match {
+ case seq: Seq[Any] =>
+ seq.foreach(publish)
+ case str: String => {
+ channel.basicPublish("", queueName, null,
msg.asInstanceOf[String].getBytes)
+ }
+ case byteArray: Array[Byte@unchecked] => {
+ channel.basicPublish("", queueName, null, byteArray)
+ }
+ case _ => {
+
+ }
+ }
+ }
+
+}
+
+object RMQSink {
+
+ val RMQSINK = "rmqsink"
+ val QUEUE_NAME = "rabbitmq.queue.name"
+ val SERVER_HOST = "rabbitmq.connection.host"
+ val SERVER_PORT = "rabbitmq.connection.port"
+ val CONNECTION_URI = "rabbitmq.connection.uri"
+ val VIRTUAL_HOST = "rabbitmq.virtualhost"
+ val AUTH_USERNAME = "rabbitmq.auth.username"
+ val AUTH_PASSWORD = "rabbitmq.auth.password"
+ val AUTOMATIC_RECOVERY = "rabbitmq.automatic.recovery"
+ val CONNECTION_TIMEOUT = "rabbitmq.connection.timeout"
+ val NETWORK_RECOVERY_INTERVAL = "rabbitmq.network.recovery.interval"
+ val REQUESTED_HEARTBEAT = "rabbitmq.requested.heartbeat"
+ val TOPOLOGY_RECOVERY_ENABLED = "rabbitmq.topology.recoveryenabled"
+ val REQUESTED_CHANNEL_MAX = "rabbitmq.channel.max"
+ val REQUESTED_FRAME_MAX = "rabbitmq.frame.max"
+
+ def getConnectionFactory(userConfig : UserConfig): ConnectionFactory = {
+ val factory : ConnectionFactory = new ConnectionFactory;
--- End diff --
don't need comma here
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---