Skip to content

Commit

Permalink
updating documentation for #721, new filetypes extra.
Browse files Browse the repository at this point in the history
documenting recent changes (optional filetypes extra) and recent
both languages.
  • Loading branch information
petersilva committed Jul 27, 2023
1 parent ddbd669 commit 2ce3a33
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 12 deletions.
14 changes: 8 additions & 6 deletions docs/source/Contribution/Development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,18 @@ Local Installation

There are many different ways to install python packages on a computer. Different developers
will prefer different methods, and all the methods need to be tested prior to each release.
Sarracenia can work with either mqtt or amqp (most mature and stable) message passing libraries.
Install one of those first. in these examples, we use amqp.

* **Wheel** when people are running different operating systems (non-ubuntu, non-debian) people will be installing wheels, typically that have been uploaded to pypi.python.org. On the other hand, it is a bit of a pain/noise to upload every development version, so we only upload releases, so testing of wheels is done by building local wheels. Need to build a new wheel every time a change is made.

* **pip install (not -e)** would pull a wheel down from pypi.python.org. Generally not used during development of Sarracenia itself.
* **pip install metpx-sr3[amqp]** would pull a wheel down from pypi.python.org. Generally not used during development of Sarracenia itself.
one could also pull in all possible dependencies with **pip install metpx-sr3[all]**
* **pip install -e .[amqp] ... lets you edit the source code of the installed package, ideal for debugging problems, because it allows live changes to the application without having to go through building and installing a new package.
* **pip install -e** ... lets you edit the source code of the installed package, ideal for debugging problems, because it allows live changes to the application without having to go through building and installing a new package.
* **apt install metpx-sr3** install debian package from repositories, similarly to pip install (not -e), normally dev snapshots are not uploaded to repositories, so while this would be the normal way for users of ubuntu servers, it is not available during development of the package itself. Also need **apt install python3-amqp**

* **apt install** install debian package from repositories, similarly to pip install (not -e), normally dev snapshots are not uploaded to repositories, so while this would be the normal way for users of ubuntu servers, it is not available during development of the package itself.

* **dpkg -i** builds a debian package for local installation. This is how packages are tested prior to upload to repositories. It can also be used to support development (have to run dpkg -i for each package change.)
* **dpkg -i** builds a debian package for local installation. This is how packages are tested prior to upload to repositories. It can also be used to support development (have to run dpkg -i for each package change.) also need **apt install python3-amqp**

The sr_insects tests invokes the version of metpx-sarracenia that is installed on the system,
and not what is in the development tree. It is necessary to install the package on
Expand Down Expand Up @@ -998,7 +1000,7 @@ to identify more issues. sample run to 100,000 entries::
maximum of the shovels is: 100008

While it is runnig one can run flow_check.sh at any time::
While it is running one can run flow_check.sh at any time::

NB retries for sr_subscribe t_f30 0
NB retries for sr_sender 18
Expand Down
6 changes: 6 additions & 0 deletions docs/source/Tutorials/Install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ On Ubuntu 22.04 and derivatives::
sudo add-apt-repository ppa:ssc-hpc-chp-spc/metpx
sudo apt update
sudo apt install metpx-sr3 # main python package.
sudo apt install python3-magic # optional support putting file type content-type message headers.
sudo apt install metpx-sr3c # optional C client.
sudo apt install python3-amqp # optionally support rabbitmq brokers
sudo apt install python3-paho-mqtt # optionally support MQTT brokers
Expand Down Expand Up @@ -139,6 +140,7 @@ For example, on fedora 28 mandatories::
Optional ones::

$ sudo dnf install python3-amqp # optionally support rabbitmq brokers
$ sudo dnf install python3-magic # optionally support content-type header in messages.
$ sudo dnf install python3-netifaces # optionally support vip directive for HA.
$ sudo dnf install python3-paho-mqtt # optionally support mqtt brokers

Expand Down Expand Up @@ -174,6 +176,10 @@ one could also add the extras::

$ pip install metpx-sr3[amqp,mqtt,vip]

for all the extras, there is a shortcut::

$ pip install metpx-sr3[all]

and to upgrade after the initial installation::

$ pip install metpx-sr3
Expand Down
7 changes: 7 additions & 0 deletions docs/source/fr/Contribution/Développement.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,28 +133,35 @@ Installation locale

Il existe de nombreuses façons d’installer des paquets python sur un ordinateur. Différents développeurs
préféreront différentes méthodes, et toutes les méthodes doivent être testées avant chaque version.
Avant d´installer le paquet il faut généralement une librarie pour communiquer avec le courtier
de messages (généralement rabbitmq/AMQP, mais ca peut être MQTT également)

* **Wheel** Lorsque les gens utilisent différents systèmes d’exploitation (non-Ubuntu, non-Debian),
les gens installent des wheel, généralement qui ont été téléchargées sur pypi.python.org. D’un
autre côté, c’est un peu pénible / bruyant de télécharger chaque version de développement, donc
nous ne téléchargeons que des versions, donc les tests de wheel se font en construisant des roues
locales. Besoin de construire une nouvelle wheel chaque fois qu’un changement est apporté.
*pip install amqp* sera également nécessaire pour le support rabbitmq.

* **pip install (pas -e)** tirerait une wheel vers le bas de pypi.python.org. Généralement pas utilisé
pendant le développement de Sarracenia lui-même.
*pip install amqp* sera également nécessaire pour le support rabbitmq.

* **pip install -e** ... vous permet de modifier le code source du package installé, idéal pour les
problèmes de débogage, car il permet des modifications en direct de l’application sans avoir à passer
par la construction et l’installation d’un nouveau package.
*pip install amqp* sera également nécessaire pour le support rabbitmq.

* **apt install** installer le paquet Debian à partir de dépôts, de la même manière que pip install (pas -e),
normalement les instantanés de développement ne sont pas téléchargés vers des dépôts, donc bien que ce soit
la manière normale pour les utilisateurs de serveurs Ubuntu, il n’est pas disponible pendant le développement
du paquet lui-même.
*apt install python3-amqp* sera également nécessaire pour le support rabbitmq.

* **dpkg -i** construit un paquet Debian pour l’installation locale. C’est ainsi que les packages sont testés
avant d’être téléchargés vers des référentiels. Il peut également être utilisé pour soutenir le développement
(il faut exécuter dpkg -i pour chaque changement de paquet).
*apt install python3-amqp* sera également nécessaire pour le support rabbitmq.

Le test sr_insects appelle la version de metpx-sarracenia installée sur le système,
et non ce qui est dans l’arbre de développement. Il est nécessaire d’installer le paquet sur
Expand Down
18 changes: 12 additions & 6 deletions docs/source/fr/Tutoriel/Installer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@ Sur Ubuntu 22.04 et dérivés du même::

sudo add-apt-repository ppa:ssc-hpc-chp-spc/metpx
sudo apt update
sudo apt install metpx-sr3 # main python package.
sudo apt install metpx-sr3c # optional C client.
sudo apt install python3-amqp # optionally support rabbitmq brokers
sudo apt install python3-paho-mqtt # optionally support MQTT brokers
sudo apt install python3-netifaces # optionally support the vip directive (HA failover.)
sudo apt install python3-dateparser python3-pytz # optionally support ftp polling.
sudo apt install metpx-sr3 # pacquet principale.
sudo apt install metpx-sr3c # client binaire (en C) .
sudo apt install python3-amqp # support optionnel pour les courtiers AMWP (rabbitmq)
sudo apt install python3-magic # support optionnel pour les entêtes "content-type" dans les messages
sudo apt install python3-paho-mqtt # support optionnel pour les courtiers MQTT
sudo apt install python3-netifaces # support optionnel pour les vip (haut-disponibilité)
sudo apt install python3-dateparser python3-pytz # support optionnel pour les sondages ftp.

Si les paquets ne sont pas disponibles, on peut les remplacer en utilisant python install package (pip)
Actuellement, seuls les paquets Debian incluent des pages de manuel. Les guides sont seulement
Expand Down Expand Up @@ -127,6 +128,7 @@ Par exemple, sur fedora 28 obligatoirement::
Facultatifs::

$ sudo dnf install python3-amqp # optionally support rabbitmq brokers
$ sudo dnf install python3-magic # optionally support content-type headers in files.
$ sudo dnf install python3-netifaces # optionally support vip directive for HA.
$ sudo dnf install python3-paho-mqtt # optionally support mqtt brokers

Expand Down Expand Up @@ -161,6 +163,10 @@ on pourrait aussi ajouter les extras::

$ pip install metpx-sr3[amqp,mqtt,vip]

Si veut avoir tous les extras::

$ pip install metpx-sr3[all]

et à mettre à niveau après l’installation initiale::

$ pip install metpx-sr3
Expand Down

0 comments on commit 2ce3a33

Please sign in to comment.