Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonels-msft committed Sep 19, 2022
1 parent 8f3a884 commit 4f7e266
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion admin_guide/cluster_management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ In this section, we discuss how you can add or remove nodes from your Citus clus

.. note::

To make moving shards across nodes or re-replicating shards on failed nodes easier, Citus Community edition 11.0 supports fully online shard rebalancing. We discuss briefly the functions provided by the shard rebalancer when relevant in the sections below. You can learn more about these functions, their arguments, and usage, in the :ref:`cluster_management_functions` reference section.
To make moving shards across nodes or re-replicating shards on failed nodes easier, Citus Community edition 11.0+ supports fully online shard rebalancing. We discuss briefly the functions provided by the shard rebalancer when relevant in the sections below. You can learn more about these functions, their arguments, and usage, in the :ref:`cluster_management_functions` reference section.

.. _production_sizing:

Expand Down
12 changes: 6 additions & 6 deletions admin_guide/upgrading_citus.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ Upgrading the Citus version requires first obtaining the new Citus extension and
Patch Version Upgrade
---------------------

To upgrade a Citus version to its latest patch, issue a standard upgrade command for your package manager. Assuming version 11.0 is currently installed on Postgres 14:
To upgrade a Citus version to its latest patch, issue a standard upgrade command for your package manager. Assuming version 11.1 is currently installed on Postgres 14:

**Ubuntu or Debian**

.. code-block:: bash
sudo apt-get update
sudo apt-get install --only-upgrade postgresql-14-citus-11.0
sudo apt-get install --only-upgrade postgresql-14-citus-11.1
sudo service postgresql restart
**Fedora, CentOS, or Red Hat**

.. code-block:: bash
sudo yum update citus110_14
sudo yum update citus111_14
sudo service postgresql-14 restart
.. _major_minor_upgrade:
Expand All @@ -46,22 +46,22 @@ Each major and minor version of Citus is published as a package with a separate
Step 1. Update Citus Package
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If upgrading both Citus and Postgres, always be sure to upgrade the Citus extension first, and the PostgreSQL version second (see :ref:`upgrading_postgres`). Here is how to do a Citus upgrade from 10.2 to 11.0 on Postgres 13:
If upgrading both Citus and Postgres, always be sure to upgrade the Citus extension first, and the PostgreSQL version second (see :ref:`upgrading_postgres`). Here is how to do a Citus upgrade from 10.2 to 11.1 on Postgres 13:

**Ubuntu or Debian**

.. code-block:: bash
sudo apt-get update
sudo apt-get install postgresql-13-citus-11.0
sudo apt-get install postgresql-13-citus-11.1
sudo service postgresql restart
**Fedora, CentOS, or Red Hat**

.. code-block:: bash
# Fedora, CentOS, or Red Hat
sudo yum swap citus102_13 citus110_13
sudo yum swap citus102_13 citus111_13
sudo service postgresql-13 restart
Step 2. Apply Update in DB
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '11.0'
version = '11.1'
# The full version, including alpha/beta/rc tags.
release = '11.0'
release = '11.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.0! Citus is an open source extension
Welcome to the documentation for Citus 11.1! 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-11.0
sudo apt-get -y install postgresql-14-citus-11.1

# 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_14
sudo yum install -y citus111_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-11.0
sudo apt-get -y install postgresql-14-citus-11.1
.. _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
citusdata/citus:11.1
# 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_14
sudo yum install -y citus111_14
.. _post_install:

Expand Down

0 comments on commit 4f7e266

Please sign in to comment.