You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org

Parsoid: Difference between revisions

From Wikitech-static
Jump to navigation Jump to search
imported>Mobrovac
m (Tweaked the deploy instructions a bit)
imported>Arlolra
Line 10: Line 10:


== Deploying changes ==
== Deploying changes ==
{{See also|git-deploy#Deploying}}
Parsoid is deployed using scap3. Doing deployments with scap3 is very easy. You just run <code>scap deploy</code>, which pushes the new state to all backends and restarts them. You should have [[How_to_deploy_code#Deployment_requirements|deploy access]] and be a member of the [https://gerrit.wikimedia.org/r/#/c/304471/ deploy-service group] puppet group.
 
Parsoid is deployed using git-deploy. Doing deployments with git-deploy is very easy . You run <code>git deploy start</code>, make whichever changes you need to make to the git clone (such as pulling, changing branches, committing live hacks, etc.), then run <code>git deploy sync</code>. The sync command pushes the new state to all backends and restarts them. You should have [[How_to_deploy_code#Deployment_requirements|deploy access]] and be a member of the [https://gerrit.wikimedia.org/r/142066 parsoid-admins] puppet group.


=== Pre-deploy checks ===
=== Pre-deploy checks ===
Line 122: Line 120:


=== Misc stuff ===
=== Misc stuff ===
* Restart parsoid hosts via salt from /srv/deployment/parsoid/deploy: <code>service-restart</code>
* Restart parsoid hosts, from tin <code>cd /srv/deployment/parsoid/deploy && scap deploy --service-restart</code>
* To change which hosts are pooled or change their weights, edit <code>/home/wikipedia/common/docroot/noc/pybal/eqiad/parsoid</code> as root on fenari
* To change which hosts are pooled, from tin <code>SSH_AUTH_SOCK=/run/keyholder/proxy.sock ssh -l deploy-service <node> 'pool service=parsoid'</code>
== Data flow ==
== Data flow ==
Parsoid runs entirely on an internal subnet, so requests to it are proxied through the ve-parsoid API module. This module is implemented in <code>extensions/VisualEditor/ApiVisualEditor.php</code> and is invoked with a POST request to <code>/w/api.php?action=ve-parsoid</code>. The API module then sends a request to Parsoid, either <code>GET /$prefix/$pagename</code> to get the HTML for a page, or <code>POST /$prefix/$pagename</code> to submit HTML and get wikitext back. Parsoid itself also issues requests to <code>/w/api.php</code> to get the wikitext of the requested page and to do template expansion.
Parsoid runs entirely on an internal subnet, so requests to it are proxied through the ve-parsoid API module. This module is implemented in <code>extensions/VisualEditor/ApiVisualEditor.php</code> and is invoked with a POST request to <code>/w/api.php?action=ve-parsoid</code>. The API module then sends a request to Parsoid, either <code>GET /$prefix/$pagename</code> to get the HTML for a page, or <code>POST /$prefix/$pagename</code> to submit HTML and get wikitext back. Parsoid itself also issues requests to <code>/w/api.php</code> to get the wikitext of the requested page and to do template expansion.

Revision as of 23:06, 6 September 2016

Parsoid is a service that parses converts between wikitext and HTML. The HTML contains additional metadata that allows it to be converted back ("round-tripped") to wikitext.

  • VisualEditor fetches the HTML for a given page from Parsoid, edits it, then delivers the modified HTML to Parsoid, which converts it back to wikitext. Parsoid is a stateless HTTP server running on port 8000.
  • Flow (as configured on WMF wikis with $wgFlowContentFormat = 'html') works the other way around. When a user creates a post Flow uses Parsoid to convert the wikitext to HTML and Flow stores the HTML in ExternalStore. If someone later edits a post Flow uses Parsoid to convert the HTML back to wikitext for editing.

Monitoring

  • Parsoid eqiad cluster in Ganglia, only lists the worker machines.
  • Icinga has service checks for HTTP on port 8000 on both the individual backends and on the LVS service IP.
  • pybal does health checks on all backends every second, and depools boxes that are down as long as the % of depooled boxes does not exceed 50%. To see these health checks and depools/repools happen in real time, run ssh parsoid.svc.eqiad.wmnet (this will drop you into either lvs1003 or lvs1006, depending on which is active), then tail -f /var/log/pybal.log | grep parsoid
  • Logging happens in /var/log/parsoid/parsoid.log. There is a log rotation setup in /etc/logrotate.d/parsoid.

Deploying changes

Parsoid is deployed using scap3. Doing deployments with scap3 is very easy. You just run scap deploy, which pushes the new state to all backends and restarts them. You should have deploy access and be a member of the deploy-service group puppet group.

Pre-deploy checks

Prepare the deploy patch

  • Check http://parsoid-tests.wikimedia.org/regressions/between/{from}/{to} where {from} is the last deployed hash from mw:Parsoid/Deployments and {to} is the latest tested commit (which we're about to deploy)
    • http://parsoid-tests.wikimedia.org/commits gives you a nice radio-button interface to create this URL
    • BEWARE: if you get the output total regressions between selected revisions: 0, it is extremely likely that you mistyped the hash or that we didn't actually run round-trip tests for that particular hash. (This is a bug, we should probably give a better message in this case.)
    • Since we are using current revision of titles in round-trip testing, edits to pages can show up as false regressions. tools/regression-testing.js is useful in filtering those out. Grab the wiki:title pairs that show up as regressions in the regressions url, save it to a file and feed it to the regressions tool and you will get a list of pages to look more closely, if necessary.
  • Create a short deployment summary on mw:Parsoid/Deployments from git log {from}..{to}. Don't include all commits, but only notable fixes and changes (ignore rt-test fixes, code cleanup updates, parser test updates, etc).
  • Prepare a deploy repo commit and push for +2
    • Roughly: cd deploy ; git checkout master ; git pull origin master ; git submodule update ; cd src ; git checkout {to} ; cd .. ; git add -u ; git commit -m "Bump src to {to} for deploy" ; git review

Verify deployment version on beta after the deploy patch is merged

  • Deploy code (if not already there) to the beta cluster.
  • If beta cluster is down or visual editor is down in beta cluster, do not continue with routine deployments.
  • On beta cluster, perform manual VisualEditor editing tests. This requires you to have an account on the beta cluster wiki. Test with non-ASCII content too to catch encoding issues. Check parsoid logs, if necessary.

Be around on IRC

  • Add yourself to the "deployer" field of Deployments if you're not already there
  • Be online in freenode #wikimedia-operations (and stay online through the deployment window)

Deploying the latest version of Parsoid

Before you begin, note that Parsoid caches its git version string. So you may wish to do:

ssh -A tin
tin$ for wtp in `grep wtp /etc/dsh/group/parsoid`; do echo -n "Querying $wtp: "; \
   curl "http://$wtp:8000/_version"; echo; done;

to ensure that the "old" version string is cached, so that you will be able to tell when parsoid restarts with its "new" version below.

Add a log entry (some opsen have expressed a preference for this start-of-deploy log entry).

 !log starting Parsoid deploy

Now to do the deploy:

ssh -A tin
tin$ cd /srv/deployment/parsoid/deploy
tin$ git pull
tin$ git submodule update --init
tin$ scap deploy

First, the canary group is deployed to (wtp[12]00[12]). If everything is OK, Scap will ask you whether you want to continue to the next group or do all groups. It is safe to tell it to do all groups without asking.

Once everything is done, log the deploy in #wikimedia-operations with something like

!log updated Parsoid to version <new hash> (T<bug number>, T<bug number>)

listing the hash of the deployed Parsoid version as well as any bug numbers referenced in the deploy log. This creates a timestamped entry in the Server Admin Log and creates cross-references in the listed bugs to the SAL.

Post-deploy checks

  • Test VE editing on enwiki and non-latin wikis
    • For example, open it:Luna (or other complex page), start the visual editor, make some random vandalism, click save -> review changes, then verify that the wikitext reflects your changes and was not corrupted. Hit cancel to abort the edit.
    • Reading through the recent edits (frwiki, enwiki) can also be a good check.
  • Verify all Parsoid servers are running the same version with:
tin$ for wtp in `cat /etc/dsh/group/parsoid`; do echo -n "Querying $wtp: "; \
   curl "http://$wtp:8000/_version"; echo; done;

Deploying a cherry-picked patch

One way to do this is to create a new branch in the Parsoid repo and cherry-pick your patches to that. For example:

git checkout 497da30e # this is the commit on the master branch that you want to cherry pick on top of
git checkout -b deploy-20150528 # give it a name (go ahead and use the date of your deploy)
git cherry-pick f274c3f54f385a6ac159a47209d279b9040a161c # patch number 1
git cherry-pick de087b106be48fc6e97f2ebc4644f9d297ecdfed # patch number 2
git push gerrit deploy-20150528:deploy-20150528 # create the branch in gerrit (DON'T USE SLASHES HERE)

Now do the usual steps to prepare a deploy repo (see below) using the hash of your branch commit (73445bfd in the example below):

cd deploy
git checkout master ; git pull origin master ; git submodule update ; cd src ; git checkout 73445bfddded9f0baa6afe548c98880f4401fb7b # your branch commit
cd .. ; git add -u ; git commit -m "Bump src to 73445bfd (deploy-20150528 branch) for deploy"
git review -u

Note that the automated push to beta will fail if your gerrit branch name contains a slash. This is probably just because some ancient version of git is being used, and will eventually be fixed. But in the meantime, use dashes instead of slashes.

Cherry-picking directly from tin and deploying it

In many situations, a hotfix might need to be pushed quickly. One way to do that is to cherry-pick the patch on tin and sync it.

### Verify that you have the most recently deployed code that you want to cherry-pick on top of
tin$ cd /srv/deployment/parsoid/deploy (verify via git log)
tin$ cd src (verify via git log)

### Create a hotfix branch
tin$ git checkout -b hotfix_<some_unique_tag>

### Get latest code from master you want to cherry-pick from
tin$ git checkout master; git pull

### Check out the hotfix branch and cherry-pick
tin$ git checkout hotfix_<some_unique_tag>
tin$ git cherry-pick <commit-from-master>

### Create a deploy-repo patch
tin$ cd ..; git commit -a -m "Bump src to whatever-git-sha-it-is for hotfix"

### The usual deployment steps
tin$ scap deploy
... verify deployment ...

When something goes wrong

Reverting a Parsoid deployment

Code

ssh tin
cd /srv/deployment/parsoid/deploy
scap deploy --rev <sha>

Misc stuff

  • Restart parsoid hosts, from tin cd /srv/deployment/parsoid/deploy && scap deploy --service-restart
  • To change which hosts are pooled, from tin SSH_AUTH_SOCK=/run/keyholder/proxy.sock ssh -l deploy-service <node> 'pool service=parsoid'

Data flow

Parsoid runs entirely on an internal subnet, so requests to it are proxied through the ve-parsoid API module. This module is implemented in extensions/VisualEditor/ApiVisualEditor.php and is invoked with a POST request to /w/api.php?action=ve-parsoid. The API module then sends a request to Parsoid, either GET /$prefix/$pagename to get the HTML for a page, or POST /$prefix/$pagename to submit HTML and get wikitext back. Parsoid itself also issues requests to /w/api.php to get the wikitext of the requested page and to do template expansion.

Once the ve-parsoid API module receives a response from Parsoid, it either relays it back to the client (when requesting HTML), or saves the returned wikitext to the page (when submitting HTML).

                (POST /w/api.php?action=ve-parsoid)          (GET /en/Barack_Obama?oldid=1234)           (requests for page content and template expansions)
Client browser ------------------------------------------> API ---------------------------->  Parsoid -----------------------------------------------------> API
    ^                                                      | ^                                 |   ^                                                          |
    |                  (response)                          | |      (HTML)                     |   |                   (responses)                            |
    +------------------------------------------------------+ +---------------------------------+   +----------------------------------------------------------+


                (POST /w/api.php?action=ve-parsoid)          (POST /en/Barack_Obama; oldid=1234)
Client browser ------------------------------------------> API ---------------------------->  Parsoid
                                                           | ^                                 |
                                               (save page) | |      (wikitext)                 |
                                                           | +---------------------------------+
                                                           |
                                                        Database