5

snlammと私は、Rails アプリに複数の Web ソケット チャネルを実装する際に問題を抱えています。エラーは、以下の応答の後にサーバーがフリーズすることです。

Started GET "/cable" for ::1 at 2016-05-24 11:42:16 -0400
Started GET "/cable/" [WebSocket] for ::1 at 2016-05-24 11:42:16 -0400
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)

注: ブラウザー コンソールはエラーをスローしません。Chrome v 50.0 (最新バージョン) を使用しています。

ただし、ブラウザーとサーバーの両方を再起動すると、矛盾して次のようになります。

Started GET "/cable" for ::1 at 2016-05-24 11:45:54 -0400
Started GET "/cable/" [WebSocket] for ::1 at 2016-05-24 11:45:54 -0400
Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket)
ItemsChannel is transmitting the subscription confirmation
ItemsChannel is streaming from items
MessagesChannel is transmitting the subscription confirmation
MessagesChannel is streaming from messages

すべてが正常に動作します。

前述のように、この修正には一貫性がなく、多くの場合、サーバーがフリーズします。実行中のチャネルが 1 つだけの場合、問題がないことに気付きました。

これは、追加した 2 つのチャネルのうちの 1 つであるアイテム チャネルのコードです。両方のチャネルのコードはほぼ同じです。

ルート

mount ActionCable.server => '/cable'

チャンネル/application_cable/channel.rb

module ApplicationCable
  class Channel < ActionCable::Channel::Base
  end
end

チャンネル/application_cable/connection.rb

module ApplicationCable
  class Connection < ActionCable::Connection::Base
  end
end

チャンネル/items_channel.rb

class ItemsChannel < ApplicationCable::Channel
  def subscribed
    stream_from 'items'
  end
end

ビュー/注文/show.html.erb

これは、アイテムの表示に関連付けられたチャネルのビューです。

<div id="item-list">
      <h2>Items: <% @order.items.each do |item| %></h2>
      <li><%= item.name %> - $<%= item.cost %></li>
      <% end %>
    </div>
  </ol>
  <div id="item-errors">
  </div>
  <br>
  <h3>Time until ordered: <%= ((@order.expiration - @order.date_ordered) / 60).round %> minutes</h3></div>

  <%= form_for @item, remote: true do |f| %>
    <%= f.hidden_field :order_id, value: @order.id, id: "order-id" %>
  <span id='item-content-reset'>
    Item name: <%= f.text_field :name, id: 'item-name' %>
    Cost: <%= f.text_field :cost, id: 'item-cost' %>
  </span>
    <%= f.submit "Add Item", :id => 'item-create-btn' %>
  <% end %>
</div>

controllers/items_controller.rb

class ItemsController < ApplicationController
  def create
    @item = Item.new(item_params)
    @item.user = @current_user
    if @item.save
      ActionCable.server.broadcast 'items',
        name: @item.name,
        cost: @item.cost
      head :ok
    else
      error_message = @item.errors.messages
      render partial: 'shared/errors', locals: { errors: flash.now[:alert] = "Item " + error_message[:name][0] }
    end
  end

  private

  def item_params
    params.require(:item).permit(:order_id, :cost, :name)
  end
end

assets/application.js

//= require jquery
//= require bootstrap-sprockets
//= require jquery_ujs
//= require bootstrap-switch
// require jquery.session
// require turbolinks
//= require_tree .

assets/javascripts/channels/chatrooms.js

//= require action_cable
//= require_self
//= require_tree .

this.App = {};

App.cable = ActionCable.createConsumer("/cable");

assets/javascripts/channels/items.js

App.items = App.cable.subscriptions.create('ItemsChannel', {
  received: function(data) {
    return $("#item-list").append(this.renderItem(data));
  },
  renderItem: function(data) {
    return "<li> " + data.name + " - " + "$" + data.cost + "</li>";
  }
});

サーバーを終了した後、ps aux | を実行します。rails、ruby、puma、redis を grep すると、それらはすべて正常に終了しました (つまり、ゾンビ プロセスはありませんでした)。サーバーがフリーズする原因は何ですか?

4

1 に答える 1