Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonels-msft committed Jun 17, 2022
1 parent 13b9912 commit f7f6787
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 19 deletions.
8 changes: 4 additions & 4 deletions admin_guide/upgrading_citus.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ To upgrade a Citus version to its latest patch, issue a standard upgrade command
.. code-block:: bash
sudo apt-get update
sudo apt-get install --only-upgrade postgresql-14-citus-beta-11.0
sudo apt-get install --only-upgrade postgresql-14-citus-11.0
sudo service postgresql restart
**Fedora, CentOS, or Red Hat**

.. code-block:: bash
sudo yum update citus110_beta_14
sudo yum update citus110_14
sudo service postgresql-14 restart
.. _major_minor_upgrade:
Expand All @@ -53,15 +53,15 @@ If upgrading both Citus and Postgres, always be sure to upgrade the Citus extens
.. code-block:: bash
sudo apt-get update
sudo apt-get install postgresql-13-citus-beta-11.0
sudo apt-get install postgresql-13-citus-11.0
sudo service postgresql restart
**Fedora, CentOS, or Red Hat**

.. code-block:: bash
# Fedora, CentOS, or Red Hat
sudo yum swap citus102_13 citus110_beta_13
sudo yum swap citus102_13 citus110_13
sudo service postgresql-13 restart
Step 2. Apply Update in DB
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '11.0'
# The full version, including alpha/beta/rc tags.
release = '11.0-beta'
release = '11.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 2 additions & 6 deletions develop/api_udf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1026,12 +1026,8 @@ Example

.. _check_cluster_node_health:

citus_check_cluster_node_health (beta)
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

.. note::

This function is part of Citus 11-beta.
citus_check_cluster_node_health
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$

Check connectivity between all nodes. If there are N nodes, this function
checks all N\ :sup:`2` connections between them.
Expand Down
4 changes: 2 additions & 2 deletions develop/reference_ddl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -420,14 +420,14 @@ distributes the table:

COMMIT;

Prior to Citus 11.0 beta, Citus would defer creating the type on the worker
Prior to Citus 11.0, Citus would defer creating the type on the worker
nodes, and commit it separately when creating the distributed table. This
enabled the data copying in ``create_distributed_table()`` to happen in
parallel. However, it also meant that the type was not always present on the
Citus worker nodes -- or if the transaction rolled back, the type would remain
on the worker nodes.

With Citus 11.0 beta, the default behaviour changes to prioritize schema
With Citus 11.0, the default behaviour changes to prioritize schema
consistency between coordinator and worker nodes. The new behavior has a
downside: if object propagation happens after a parallel command in the same
transaction, then the transaction can no longer be completed, as highlighted by
Expand Down
2 changes: 1 addition & 1 deletion index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Citus Documentation
===================

Welcome to the documentation for Citus 11 (Beta)! Citus is an open source extension
Welcome to the documentation for Citus 11.0! Citus is an open source extension
to PostgreSQL that transforms Postgres into a distributed database. To scale
out Postgres horizontally, Citus employs distributed tables, reference tables,
and a distributed SQL query engine. The query engine parallelizes SQL queries
Expand Down
2 changes: 1 addition & 1 deletion installation/multi_node_debian.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Steps to be executed on all nodes
::

# install the server and initialize db
sudo apt-get -y install postgresql-14-citus-beta-11.0
sudo apt-get -y install postgresql-14-citus-11.0

# preload citus extension
sudo pg_conftool 14 main set shared_preload_libraries citus
Expand Down
2 changes: 1 addition & 1 deletion installation/multi_node_rhel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Steps to be executed on all nodes
::

# install PostgreSQL with Citus extension
sudo yum install -y citus110_beta_14
sudo yum install -y citus110_14
# initialize system database (using RHEL 6 vs 7 method as necessary)
sudo service postgresql-14 initdb || sudo /usr/pgsql-14/bin/postgresql-14-setup initdb
# preload citus extension
Expand Down
2 changes: 1 addition & 1 deletion installation/single_node_debian.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This section describes the steps needed to set up a single-node Citus cluster on
curl https://install.citusdata.com/community/deb.sh | sudo bash
# install the server and initialize db
sudo apt-get -y install postgresql-14-citus-beta-11.0
sudo apt-get -y install postgresql-14-citus-11.0
.. _post_install:
Expand Down
2 changes: 1 addition & 1 deletion installation/single_node_docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can start Citus in Docker with one command:
# start the image
docker run -d --name citus -p 5432:5432 -e POSTGRES_PASSWORD=mypass \
citusdata/citus:11.0-beta
citusdata/citus:11.0
# verify it's running, and that Citus is installed:
psql -U postgres -h localhost -d postgres -c "SELECT * FROM citus_version();"
Expand Down
2 changes: 1 addition & 1 deletion installation/single_node_rhel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This section describes the steps needed to set up a single-node Citus cluster on
curl https://install.citusdata.com/community/rpm.sh | sudo bash
# install Citus extension
sudo yum install -y citus110_beta_14
sudo yum install -y citus110_14
.. _post_install:

Expand Down

0 comments on commit f7f6787

Please sign in to comment.