[Cloud] Re: LLM services

2025-01-10 Thread Platonides
Huji wrote: > Even free, lightweight LLMs (like LLaMa) could be helpful LLaMa itself is not under a free license. Let's call it an "almost-free license". So, I'm not sure if it would be acceptable to run it, given the requisite that > All code in the Tools project must be published under an OSI ap

[Cloud] Re: Reminder about the externallinks migration

2023-12-12 Thread Platonides
While I understand the motivation for the change, I think in this case the label reversing used is more complex than needed. It would have been simpler (and thus likely more efficient / less bug-prone) to reverse the whole hostnames, storing moc.elpmaxe.www instad of com.example.www On Mon, 11 Dec

[Cloud] Re: [Cloud-announce] [IMPORTANT] Grid Engine Shutdown Timeline

2023-12-06 Thread Platonides
On Tue, 5 Dec 2023 at 19:13, wrote: > * When "grid infrastructure is deleted" on March 14, will there be backups > of the tools for people who want to migrate them in the future? > The "grid infrastructure" is different than the "tools". I expect the tools would still be there, they would just n

[Cloud] Re: Scratch database instance?

2023-01-25 Thread Platonides
MediaWiki uses a VARBINARY(255) NOT NULL for page_title in doubt, you would use VARCHAR(255) over other length, since that's the largest value for a VARCHAR (a value larger than 255 would automatically become a MEDIUMTEXT column) > sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError

[Cloud] Re: Heartbeat monitoring system?

2022-04-24 Thread Platonides
On Thu, 14 Apr 2022 at 19:41, revi wrote: > I personally use healthchecks.io[1] myself but I'm not sure if it gets > rate limited with the same IP hitting the external services. (I once > considered asking for self-hosted options made available at labs but if > wikimedia network is down it won't

[Cloud] Who is ${user_agent} ?

2021-12-19 Thread Platonides
Hello everyone We have noticed that since Septembrer 2020, our WLM-related site www.wikilm.es has been receiving a couple of meta=siteinfo api queries per day from Cloud VPS NAT egress 185.15.56.1 with a user agent of... ${user_agent} (yes, literally that. Probably a case of single quotes when dou

[Cloud] Re: [Cloud-announce] Debian 11.0 'Bullseye' now available on cloud-vps

2021-08-15 Thread Platonides
You're really quick. Thanks Andrew! ___ Cloud mailing list -- cloud@lists.wikimedia.org List information: https://lists.wikimedia.org/postorius/lists/cloud.lists.wikimedia.org/

Re: [Cloud] Requesting help or advice regarding security on Toolforge

2020-08-01 Thread Platonides
Hello Keren Keeping the code of a Wordpress site up-to-date is not generally hard. However, in this case, and even more relevant given your query, I must ask: why use wordpress? This seems a static set of pages, so it could be stored as .html pages without the overhead of running wordpress... or t

Re: [Cloud] [Cloud-announce] [Toolforge] 2020 Kubernetes cluster migration complete

2020-03-06 Thread Platonides
Great work Kudos to everyone involved! On Fri, 6 Mar 2020 at 20:54, Bryan Davis wrote: > On 2020-03-03, Brooke completed the automatic migration phase of the > 2020 Kubernetes migration by moving the last workloads from the legacy > Kubernetes cluster to the 2020 Kubernetes cluster [0]. > > Al

Re: [Cloud] Umlaut issue

2019-12-29 Thread Platonides
Your account is just dhun Instead of creating a new account, it would be much more simple to just change your cn and sn to remove the umlaut (maybe you could even change it yourself). That said, I would very much prefer the Horizon bug to be fixed, rather than starting using workarounds. Kind reg

Re: [Cloud] [Toolforge] New tool to browse the Toolforge Docker registry

2019-12-20 Thread Platonides
Cool. Although it is very confusing to have two different yet so similarly named tools. Could perhaps they be renamed to toolforge-docker-registry and ci.docker-registry? In the later, would it be possible to view the contents / Dockerfiles without actually pulling the image? Cheers _

Re: [Cloud] Downloading Wikipedia Articles with Embedded URLs in Cyrillic

2019-09-04 Thread Platonides
How are you downloading them? The codification of the urls would be the same as the actual article (utf-8), so I don't see how you could end up in a situation where the Cyrillic text is fine but the Cyrillic urls are not. If you could provide us the steps you are following for downloading the art

Re: [Cloud] SQL Question

2019-08-13 Thread Platonides
Why not simply do the comparison client-side? ___ Wikimedia Cloud Services mailing list Cloud@lists.wikimedia.org (formerly lab...@lists.wikimedia.org) https://lists.wikimedia.org/mailman/listinfo/cloud

Re: [Cloud] Edits using Proxy Servers

2019-02-04 Thread Platonides
Some geolocation databases have a category for proxies, for instance MaxMind uses the A1 code for the "country" Anonymous Proxyhttps:// dev.maxmind.com/geoip/legacy/codes/iso3166/ (Of course, these categorizations would need to be accurate (both proxy detection and country detection) to get meanin

Re: [Cloud] Vandalism

2019-01-16 Thread Platonides
See https://www.mediawiki.org/wiki/Manual:Ipblocks_table for the table format. Also note that there are both the blocks at that wiki and global blocks. Plus, also, there are obviously vandals whose ip does not get blocked after the fact. You may want to have a look at ORES predictions: https://w

Re: [Cloud] [Cloud-announce] Wiki Replica c1.labsdb and c3.labsdb to be shutdown 2017-12-13

2017-10-18 Thread Platonides
> It is not a happy thing for us to force anyone to change their > software, but as explained in the wiki page [0] we can not find a > reliable method to ensure that the same user created tables are > available on all three of the new backend servers Why not provide a fourth host and have those th

Re: [Cloud] [Labs-l] chmod 0000 files

2017-10-16 Thread Platonides
How is the python script that creates the files being run? What is its umask? I suspect it may run under different conditions, and sometimes end up with a 777 umask. ___ Wikimedia Cloud Services mailing list Cloud@lists.wikimedia.org (formerly lab...@li

Re: [Cloud] Database queries via PHP

2017-10-07 Thread Platonides
Did you read all results from the second query? It may be waiting for you to read received data before sending the new query. What are you using, MYSQLI_USE_RESULT or MYSQLI_STORE_RESULT? Regards ___ Cloud mailing list Cloud@lists.wikimedia.org https:

Re: [Cloud] revision.rev_text_id is always 0?

2017-10-01 Thread Platonides
The database schema is available at https://phabricator.wikimedia.org/source/mediawiki/browse/master/maintenance/tables.sql It's not too useful, but I would say that sometimes having the (opaque) rev_text_id could be handy, eg. to detect a rollback. Cheers ___