Recent content by Maani

  1. M

    Redis changing to a non-free licensing model.

    KeyDB also has Master/Master replication support.
  2. M

    Best method for Basic FusionPBX API?

    Hi Thanks @markjcrane for wonderful fusionpbx. Is there any list of member features that opened for all in 5.0 release ? Regards
  3. M

    FusionPBX BDR setup

    Hi I remember from old irc discussion a suggestion for using CockroachDB. It is postgresql compatible and has Active Active availability.
  4. M

    FreeSWITCH forum

    I also think it is good idea. We may borrow some idea and techniques from fusionpbx ;)
  5. M

    Ideal Fusionpbx Load Balaning Solution

    I think it is possible via putting special intelligence in a sip proxy(Opensips) in front of Fusionpbx farms omits need to shared FS database or DNS load balancing.
  6. M

    Ideal Fusionpbx Load Balaning Solution

    @DigitalDaz @KonradSC @markjcrane @phonesimon Hi I think Ideal Fusionpbx Load Balancing Solution should have this features: Load balance single domain over multiple Fusionpbx servers. Register cache and rate throttling. No need special feature on sip phones. No Need to replicate internal...
  7. M

    FusionPbx top performance setting

    Hi Comparing putting internal Freeswitch in sqite but in RAM vs postgrsql on hard disk , which one perform better ?
  8. M

    FusionPbx top performance setting

    Do not forget Opensips mid_registrar module, it can lift 90% register traffic without any complexity and without fusionpbx configuration change.
  9. M

    FusionPbx top performance setting

    In " Building Telephony Systems with OpenSIPS" book mentioned: ...To prevent these attacks, many people employ the use of a utility called Fail2ban successfully. While Fail2ban is effective, it requires intensive processing of log files, possibly degrading the performance of the whole system...
  10. M

    FusionPbx top performance setting

    @markjcrane So may be this helps improving performance: tmpfs /var/cache/fusionpbx tmpfs defaults 0 0
  11. M

    FusionPbx top performance setting

    @markjcrane @KonradSC In recent version of Fusionpbx memcache was disabled. according to mcrane:"file cache out performs memcache at scale..because of listeners getting busy and using TCP". If I am correct when memchached is disabled Fusionpbx XML handler is reading directly from postgresql...
  12. M

    FusionPbx top performance setting

    Thanks for reply. you are correct about PHP posts but another small point was if someone just needs simple CDR (A ,B numbers ,duration and date) in simple csv format, He/She can omit huge amount of Hard Disk I/O(if database was local) with disabling mod_xml_cdr so expecting increasing in...
  13. M

    FusionPbx top performance setting

    Hi 1-If someone can live with CSV CDR , it is possible to disable and stop mod_xml_cdr and increase performance.(it seems it stops posts to web server) 2- Also comment from DigiDaz in another post for putting internal freeswitch DB in RAM: add this to fstab, reboot and you are done: tmpfs...
  14. M

    FusionPbx top performance setting

    Hi In order to reduce CDR http posts to WEB server in Advanced , Default Setting, Category CDR, Subcategory storage I changed value from db to dir and reboot server. CDR directories populated with XML CDR but still database is populating with same information. Is there any way to offload...
  15. M

    FusionPbx top performance setting

    Why php limits performance ? Except call broadcast is there any other place php code involves in call setup ? Even if no one configuring via web interface still there is problem from php side ? Comparing to ordinary bare Freeswitch , is there any places Fusionpbx puts much higher processing...