Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuebin Su committed Dec 21, 2023
1 parent a0712fd commit 699ab35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/source/notebooks/package.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"\n",
"Setting up a NFS mount makes it easier to share a Python environment on multiple hosts and containers.\n",
"\n",
"This is important for distributed database systems such as [Greenplum](https://greenplum.org/) because otherwise the same set of pcakges need to be copied to every host in the cluster.\n",
"This is important for distributed database systems such as [Greenplum](https://greenplum.org/) because otherwise the same set of packages needs to be copied to every host in the cluster.\n",
"\n",
"### Starting an NFS server\n",
"\n",
Expand Down
6 changes: 3 additions & 3 deletions doc/source/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ There are a few points to note when working with `PL/Python`:
We will remove this limitation soon by supporting `PL/Container <https://github.com/greenplum-db/plcontainer>`_.
- Python 3.x is required on server. Please make sure that :code:`libpython3.x.so` is in :code:`$LD_LIBRARY_PATH`.

There is no hard requiremet on the minor version, but Python language features and libraries available for use in a UDF depends on it.
There is no hard requirement on the minor version, but Python language features and libraries available for use in a UDF depends on it.
Therefore, it is recommended that the Python version on server is greater than or equal to the one on client.
- Modules installed in :code:`sys.path` on server will be available for use in a UDF. It is recommended to use a dedicated virtual
environment on server for UDFs. To achieve this, one way is to activate the environment before starting the database server.
Expand Down Expand Up @@ -90,8 +90,8 @@ in the server's Python environment.

Please refer to the :doc:`tutorial <./tutorial_embedding>` for a simple working example to validate your setup.

Uplading Data Files from Localhost (Experimental)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Uploading Data Files from Localhost (Experimental)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

With GreenplumPython, we can upload data files of any format from localhost to server and parse them with a UDF.

Expand Down

0 comments on commit 699ab35

Please sign in to comment.