I'm going to try the Community Edition. I want to know if this edition can support high availability. Since the community edition can only use two data/compute nodes, can I build a high-availability cluster with it?
Does the Community Edition of DolphinDB support high availability?
62 views Asked by Polly At
1
There are 1 answers
Related Questions in HIGH-AVAILABILITY
- How to configure in build keepalived of opensips?
- Assigning a dedicated Primary node for write operations in MongoDB replica set
- PostgreSQL high availability setup along with Read-Replica's
- Flink high-availaility in standalone cluster, kill the jobmanager process. But the jobmanager can not recover later
- How to use pacemaker to use Virtual/Floating IP address?
- ActiveMQ Artemis HA split-brain issue on OOME crash
- Kafka mirror maker: Data in some topics are not replicated
- Difference between Edge and HA clusters artifactory
- Do we need to share /var/lib/nfs for NFSv4 recovery process?
- MQTT on Raspberry Pi 3B+ (Raspbian) not working anymore
- Issue encountered while adding a script for REPMGR split-brain prevention
- What is use case where we can see the benefit out of having witness node in the PG cluster
- Do we need a load balancer while we have multiple master nodes?
- Why the values from Hadoop API doesn't match with the calculated values?
- How can I manage DB switchover for write queries?
Related Questions in DOLPHINDB
- How to append an array vector to a database?
- Does the following value partition cover the day of December 31st?
- How can three int variables, start_year, start_month, and start_day, which are 2024, 3, and 4 respectively, be merged into a date variable (date)?
- How to specify multiple databases when connecting to DolphinDB Server with JDBC interface?
- The Asof join engine output does not match expectations
- Why does having GROUP BY in an IN clause cause the query to become unexecutable?
- Why the same regular expression outputs different results in Linux and Windows?
- Fail to write to a DFS table due to the error The column used for value-partitioning cannot contain NULL values
- DolphinDB: How to solve the error The number of partitions [xxxx] relevant to the query is too large?
- How to retrieve the row/column names of a matrix in DolphinDB?
- How to boost the data distribution speed of stream tables in DolphinDB?
- How to rename multiple columns?
- Fail to run overly long DolphinDB scripts with Python API
- asof join returns empty for unmatched partitioned data
- How to quickly create an empty wide table in DolphinDB?
Related Questions in COMMUNITY-SERVER
- how to make a Relay Game via Lobby group?
- Does the Community Edition of DolphinDB support high availability?
- Problem with setting up mySql on Fedora 36
- Cannot start a Tomcat server with the Community Server Connectors extension in VS Code
- What is the problem while running mongod.exe?
- Mongodb download option for community server not available
- Error while trying to find a role for the user 'chuacw'. Possible cause is a invalid client cookie or a user rename
- How to get all users from assignment group in service now?While creating an INCIDENT i need to assign a User from the particular group
- User Username not found in membership store does not exist
- Forms authentication in Community Server
- How to change a string into integer?
- Moving my blog to a new platform - SEO perspective
- Prioritize folders in URL rewrite for IIS7
- Cannot connect to mysql server with MAMP nor with Community Server
- Eval inside an ASP.net repeater doesn't work inside another control
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The DolphinDB HA cluster offers high availability for both metadata and data, which can tolerate the failure of a single node without interrupting operation.
Metadata is stored on controllers. To ensure its high availability, DolphinDB adopts the Raft protocol to form a group with multiple controllers. The cluster can continue to operate as long as more than half of the controllers are available.
DolphinDB supports storing chunk replicas on different nodes. If one or more data nodes fail, the database can still function with at least one available replica. Data consistency across multiple replicas is ensured by a two-phase commit protocol.
DolphinDB APIs support automatic reconnection and switching mechanism for high availability. If a data node becomes unavailable, the API will attempt to reconnect to it. If the attempt fails, the API will automatically switch to another available node.
The Community Edition of DolphinDB allows for deploying two data/compute nodes, which supports high availability for data and API clients. However, it does not support high availability for metadata, which requires at least three nodes.
The Community Edition has the same features as the Enterprise Edition. The only difference is the limitations on CPU cores and memory.