Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
master
Branches (24)
Tags (112)
master
3.1
3.2
2.4
3.0
feature/tls_postgres
dialog_custom_ping_interval
uuid_doc_fix
feature/rtp_relay
feature/sql-cacher-iterators
coverity_scan
feature/pi
2.3
2.2
feature/new-globals-syntax
1.11
2.1
1.9
1.10
1.8
3.1.7
3.2.4
3.1.6
3.2.3
3.1.5
3.2.2
3.1.4
3.2.1
3.2.0
3.2.0-rc1
3.1.3
2.4.11
3.2.0-beta
2.4.10
3.1.2
3.0.5
2.4.9
3.0.4
3.1.1
3.1.0
master
Branches (24)
Tags (112)
master
3.1
3.2
2.4
3.0
feature/tls_postgres
dialog_custom_ping_interval
uuid_doc_fix
feature/rtp_relay
feature/sql-cacher-iterators
coverity_scan
feature/pi
2.3
2.2
feature/new-globals-syntax
1.11
2.1
1.9
1.10
1.8
3.1.7
3.2.4
3.1.6
3.2.3
3.1.5
3.2.2
3.1.4
3.2.1
3.2.0
3.2.0-rc1
3.1.3
2.4.11
3.2.0-beta
2.4.10
3.1.2
3.0.5
2.4.9
3.0.4
3.1.1
3.1.0
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (24)
Tags (112)
master
3.1
3.2
2.4
3.0
feature/tls_postgres
dialog_custom_ping_interval
uuid_doc_fix
feature/rtp_relay
feature/sql-cacher-iterators
coverity_scan
feature/pi
2.3
2.2
feature/new-globals-syntax
1.11
2.1
1.9
1.10
1.8
3.1.7
3.2.4
3.1.6
3.2.3
3.1.5
3.2.2
3.1.4
3.2.1
3.2.0
3.2.0-rc1
3.1.3
2.4.11
3.2.0-beta
2.4.10
3.1.2
3.0.5
2.4.9
3.0.4
3.1.1
3.1.0
opensips
/
modules
/
db_virtual
contribute
Sync branch
See difference Through Pull Request Sync
Sync branch
Through Pull Request Sync
A Pull Request will be created to the current
branch and will be merged in to complete the sync
File empty ...
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README
db_virtual Module
 __________________________________________________________
 Table of Contents
 1. Admin Guide
 1.1. Overview
 1.1.1. The idea
 1.1.2. Modes
 1.1.3. Capabilities
 1.1.4. Failures
 1.1.5. The timer process
 1.2. Dependencies
 1.2.1. OpenSIPS Modules
 1.2.2. External Libraries or Applications
 1.3. Exported Parameters
 1.3.1. db_urls (str)
 1.3.2. db_probe_time (integer)
 1.3.3. db_max_consec_retrys (integer)
 1.4. Exported MI Functions
 1.4.1. db_get
 1.4.2. db_set
 2. Contributors
 2.1. By Commit Statistics
 2.2. By Commit Activity
 3. Documentation
 3.1. Contributors
 List of Tables
 2.1. Top contributors by DevScore^(1), authored commits^(2) and
 lines added/removed^(3)
 2.2. Most recently active contributors^(1) to this module
 List of Examples
 1.1. Set db_urls parameter
 1.2. Set db_probe_time parameter
 1.3. Set db_max_consec_retrys parameter
Chapter 1. Admin Guide
1.1. Overview
1.1.1. The idea
 A virtual DB will expose the same front DB api however, it will
 backed by many real DB. This means that a virtual DB URL
 translates to many real DB URLs. This virtual layer also
 enables us to use the real dbs in multiple ways such as:
 parallel, failover(hotswap) and round-robin. Therefore: each
 virtual DB URL with associated real dbs and a way to use(mode)
 it's real dbs must be specified.
1.1.2. Modes
 The implemented modes are:
 * FAILOVER
 Use the first URL; if it fails, take the next URL and redo
 the operation.
 * PARALLEL
 Use all the URLs in the virtual DB URL set. Fails if all
 the URLs fail.
 * ROUND (round-robin)
 Use the next URL each time; if it fails, use the next one,
 redo operation.
 When choosing the db virtual mode, be sure that there is a full
 compatibility between the DB operations you want to do
 (inserts, updates, deletes,...) and the relation (if any)
 between the real DB URLs you have in the set - can be
 completely independent, can be nodes of the same cluster, or
 any other combination.
1.1.3. Capabilities
 For each set (or new virtual DB URL), the capabilities are
 automatically calculated based on the capabilities provided by
 the real DB URLs from the set. A logical AND is done for each
 cabability over all the URLs in the set. Shortly, in order for
 the virtual URL to provide a certain capability, ALL its real
 URLs must provide that capability.
 Note that starting with version 2.2 db_virtual supports
 async_raw_query and async_raw_resume functions currently
 implemented only by the mysql database engine.
1.1.4. Failures
 When an operation from a process on a real DB fails:
 it is marked (global and local CAN flag down)
 its connection closed
 Later a timer process (probe):
 foreach virtual db_url
 foreach real db_url
 if global CAN down
 try to connect
 if ok
 global CAN up
 close connection
 Later each process:
 if local CAN down and global CAN up
 if db_max_consec_retrys *
 try to connect
 if ok
 local CAN up
 Note *: there could be inconsistencies between the probe and
 each process so a retry limit is in order. It is reset and
 ignored by an MI command.
1.1.5. The timer process
 The timer process(probe) is a process that tries to reconnect
 to failed dbs from time to time. It is a separate process so
 that when it blocks (for a timeout on the connection) it
 doesn't matter.
1.2. Dependencies
1.2.1. OpenSIPS Modules
 The following modules must be loaded before this module:
 * At least one real DB module.
1.2.2. External Libraries or Applications
 The following libraries or applications must be installed
 before running OpenSIPS with this module loaded:
 * None.
1.3. Exported Parameters
1.3.1. db_urls (str)
 Multiple value parameter used for virtual DB URLs declaration.
 Example 1.1. Set db_urls parameter
...
modparam("group","db_url","virtual://set1")
modparam("presence|presence_xml", "db_url","virtual://set2")
modparam("db_virtual", "db_urls", "define set1 PARALLEL")
modparam("db_virtual", "db_urls", "mysql://opensips:opensipsrw@localhost
/testa")
modparam("db_virtual", "db_urls", "postgres://opensips:opensipsrw@localh
ost/opensips")
modparam("db_virtual", "db_urls", "define set2 FAILOVER")
modparam("db_virtual", "db_urls", "mysql://opensips:opensipsrw@localhost
/testa")
...
1.3.2. db_probe_time (integer)
 Time interval after which a registered timer process attempts
 to check failed(as reported by other processes) connections to
 real dbs. The probe will connect and disconnect to the failed
 real DB and announce others.
 Default value is 10 (10 sec).
 Example 1.2. Set db_probe_time parameter
...
modparam("db_virtual", "db_probe_time", 20)
...
1.3.3. db_max_consec_retrys (integer)
 After the timer process has reported that it can connect to the
 real db, other processes will try to reconnect to it. There are
 cases where although the probe could connect some might fail.
 This parameter represents the number of consecutive failed
 retries that a process will do before it gives up. This value
 is reset and suppressed by a MI function(db_set).
 Default value is 10 (10 consecutive times).
 Example 1.3. Set db_max_consec_retrys parameter
...
modparam("db_virtual", "db_max_consec_retrys", 20)
...
1.4. Exported MI Functions
1.4.1. db_get
 Return information about global state of the real dbs.
 Name: db_get
 Parameters:
 * None.
 MI FIFO Command Format:
 opensips-cli -x mi db_get
1.4.2. db_set
 Sets the permissions for real dbs access per set per db.
 Sets the reconnect reset flag.
 Name: db_set
 Parameters:
 * set_index [int]
 * db_url_index [int]
 * may_use_db_flag [boolean]
 * ignore_retries[boolean](optional)
 db_set 3 2 0 1 means:
 * 3 - the fourth set (must exist)
 * 2 - the third URL in the fourth set(must exist)
 * 0 - processes are not allowed to use that URL
 * 1 - reset and suppress db_max_consec_retrys
 MI FIFO Command Format:
 opensips-cli -x mi db_set 3 2 0 1
Chapter 2. Contributors
2.1. By Commit Statistics
 Table 2.1. Top contributors by DevScore^(1), authored
 commits^(2) and lines added/removed^(3)
 Name DevScore Commits Lines ++ Lines --
 1. Razvan Pistolea 31 7 2244 297
 2. Bogdan-Andrei Iancu (@bogdan-iancu) 20 17 98 122
 3. Liviu Chircu (@liviuchircu) 16 12 105 140
 4. Razvan Crainea (@razvancrainea) 14 12 21 19
 5. Vlad Patrascu (@rvlad-patrascu) 9 5 85 145
 6. Ionut Ionita (@ionutrazvanionita) 6 3 232 9
 7. Zero King (@l2dy) 3 1 5 5
 8. Anca Vamanu 3 1 3 3
 9. Walter Doekes (@wdoekes) 3 1 2 2
 10. Julián Moreno Patiño 3 1 1 1
 All remaining contributors: Peter Lemenkov (@lemenkov).
 (1) DevScore = author_commits + author_lines_added /
 (project_lines_added / project_commits) + author_lines_deleted
 / (project_lines_deleted / project_commits)
 (2) including any documentation-related commits, excluding
 merge commits. Regarding imported patches/code, we do our best
 to count the work on behalf of the proper owner, as per the
 "fix_authors" and "mod_renames" arrays in
 opensips/doc/build-contrib.sh. If you identify any
 patches/commits which do not get properly attributed to you,
 please submit a pull request which extends "fix_authors" and/or
 "mod_renames".
 (3) ignoring whitespace edits, renamed files and auto-generated
 files
2.2. By Commit Activity
 Table 2.2. Most recently active contributors^(1) to this module
 Name Commit Activity
 1. Razvan Crainea (@razvancrainea) Sep 2011 - Jan 2021
 2. Zero King (@l2dy) Mar 2020 - Mar 2020
 3. Bogdan-Andrei Iancu (@bogdan-iancu) Aug 2009 - Apr 2019
 4. Vlad Patrascu (@rvlad-patrascu) May 2017 - Apr 2019
 5. Peter Lemenkov (@lemenkov) Jun 2018 - Jun 2018
 6. Liviu Chircu (@liviuchircu) Oct 2013 - Jun 2018
 7. Ionut Ionita (@ionutrazvanionita) Feb 2016 - Mar 2017
 8. Julián Moreno Patiño Feb 2016 - Feb 2016
 9. Walter Doekes (@wdoekes) Jun 2014 - Jun 2014
 10. Anca Vamanu Jan 2011 - Jan 2011
 All remaining contributors: Razvan Pistolea.
 (1) including any documentation-related commits, excluding
 merge commits
Chapter 3. Documentation
3.1. Contributors
 Last edited by: Razvan Crainea (@razvancrainea), Vlad Patrascu
 (@rvlad-patrascu), Bogdan-Andrei Iancu (@bogdan-iancu), Peter
 Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Julián
 Moreno Patiño, Ionut Ionita (@ionutrazvanionita), Razvan
 Pistolea.
 Documentation Copyrights:
 Copyright © 2009 Voice Sistem SRL
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/phpgoer/opensips.git
git@gitee.com:phpgoer/opensips.git
phpgoer
opensips
opensips
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /