Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Tags
    3. cluster
    Log in to post
    • baris

      config.json cluster change
      NodeBB Development • 0.6.0 cluster config nginx • • <baris>

      5
      2
      Votes
      5
      Posts
      7324
      Views

      wzrdtales

      Finally the pull request is open https://github.com/NodeBB/NodeBB/pull/2527.

      I'm out for today guys, hope you get everything. If not just ask, gn8.

      wzrdtales created this issue in NodeBB/NodeBB closed Enabling cluster, sticky-sessions, level 4 based hash balancing #2527
    • mootzville

      Running NodeBB in clusters
      General Discussion • cluster • • mootzville

      9
      0
      Votes
      9
      Posts
      2660
      Views

      mootzville

      I'm impressed...thanks fellas

    • Xiph

      Read and Write from different Redis instances
      Feature Requests • cluster database redis • • Xiph

      1
      0
      Votes
      1
      Posts
      1704
      Views

      Xiph

      Considering Redis' clustering is strictly master-slave and doesn't support multi-master, it would be nice to be able to read and write from different Redis instances.

      A very basic example: reading from the local Redis slave while writing to an external Redis master. Compared to the current situation (reading from and writing to the same Redis instance, which has to be the master because you can't write to slaves), this would result in data being returned faster from the local slave and the load on the remote master would be lowered.

      Some potential failover situations:

      Master up, slave(s) down: Read from the Master instead of the slaves Master up, one of many slaves down: Read from the node specified in the config as failover for this one, if not configured read from other slave, if all slaves are down read from master. Master down, slave(s) up: Enter a StackOverflow-esque read-only mode, 503 all requests to the yet-to-be-written Write API.