[Wikidata-bugs] [Maniphest] T291903: Evaluate QLever as a time lagging SPARQL backend to offload the BlazeGraph cluster

2021-10-01 Thread Hannah_Bast
Hannah_Bast added a comment.


  @Justin0x2004 Thanks, Justin. QLever already supports something like named 
subqueries. You can simply have the same subquery in multiple places and it 
will be evaluated only once and for the other occurrences, the result will be 
reused.
  
  We don't yet support the "WITH" syntax, but that will be easy to add. As I 
wrote on https://phabricator.wikimedia.org/T290839#7354220 about two weeks ago:
  
  "QLever does not yet have full SPARQL 1.1 support, but we are approaching 
that and will be there soon. The basic features are all there and what's 
missing are mostly small things."

TASK DETAIL
  https://phabricator.wikimedia.org/T291903

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Hannah_Bast
Cc: Justin0x2004, Hannah_Bast, So9q, Aklapper, Invadibot, MPhamWMF, 
maantietaja, CBogen, Akuckartz, Nandana, Namenlos314, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291903: Evaluate QLever as a time lagging SPARQL backend to offload the BlazeGraph cluster

2021-10-01 Thread Justin0x2004
Justin0x2004 added a comment.


  > Subqueries and predicate paths are also supported. Where is it written that 
they are not?
  
  @Hannah_Bast 
  I think they mean this feature of BG:
  https://github.com/blazegraph/database/wiki/NamedSubquery

TASK DETAIL
  https://phabricator.wikimedia.org/T291903

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Justin0x2004
Cc: Justin0x2004, Hannah_Bast, So9q, Aklapper, Invadibot, MPhamWMF, 
maantietaja, CBogen, Akuckartz, Nandana, Namenlos314, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292152: dashboard with daily query service usage not updating

2021-10-01 Thread mpopov
mpopov closed this task as a duplicate of T287381: External referrer  WDQS 
metrics stopped updating on 2021-04-25.

TASK DETAIL
  https://phabricator.wikimedia.org/T292152

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: mpopov
Cc: SWakiyama, MPhamWMF, dcausse, mpopov, Zbyszko, Aklapper, Lydia_Pintscher, 
Invadibot, maantietaja, CBogen, Akuckartz, Nandana, Namenlos314, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292152: dashboard with daily query service usage not updating

2021-10-01 Thread mpopov
mpopov added a comment.


  Thanks @MPhamWMF!
  
  What Mike and David said is correct. Also, this ticket prompted me to finally 
add the decommission notice to the dashboard (previously it was only on the 
homepage).
  
  In T292152#7391826 , 
@Lydia_Pintscher wrote:
  
  > In the meantime for my talk: Do we know what the current number is?
  
  For 2021-09-30:
  
  | Path  | "Automated" | "User" | Total |
  | - | --- | -- | - |
  | / | 2109| 2290   | 4399  |
  | /bigdata/ldf  | 4   | 55230  | 55234 |
  | /bigdata/namespace/wdq/sparql | 1835762   | 5786966  | 7622728  
   |
  |
  
  Anyone with private data access can easily count 1 day's requests using Hue 
 and this Hive query (slightly modified from 
https://gerrit.wikimedia.org/r/plugins/gitiles/wikimedia/discovery/golden/+/refs/heads/master/modules/metrics/wdqs/basic_usage):
  
USE wmf;
SELECT
  year, month, day,
  IF(uri_path = '/sparql', '/bigdata/namespace/wdq/sparql', uri_path) AS 
path,
  UPPER(http_status IN('200','304')) as http_success,
  CASE
WHEN (
  agent_type = 'user' AND (
user_agent RLIKE 'https?://'
OR INSTR(user_agent, 'www.') > 0
OR INSTR(user_agent, 'github') > 0
OR LOWER(user_agent) RLIKE 
'([a-z0-9._%-]+@[a-z0-9.-]+\.(com|us|net|org|edu|gov|io|ly|co|uk))'
OR (
  user_agent_map['browser_family'] = 'Other'
  AND user_agent_map['device_family'] = 'Other'
  AND user_agent_map['os_family'] = 'Other'
  )
)
) OR agent_type = 'spider' THEN 'TRUE'
ELSE 'FALSE' END AS is_automata,
  COUNT(*) AS events
FROM wmf.webrequest
WHERE
  webrequest_source = 'text'
  AND year = ${year} AND month = ${month} AND day = ${day}
  AND uri_host = 'query.wikidata.org'
  AND uri_path IN('/', '/bigdata/namespace/wdq/sparql', '/bigdata/ldf', 
'/sparql')
GROUP BY
  year, month, day,
  IF(uri_path = '/sparql', '/bigdata/namespace/wdq/sparql', uri_path),
  UPPER(http_status IN('200','304')),
  CASE
WHEN (
  agent_type = 'user' AND (
user_agent RLIKE 'https?://'
OR INSTR(user_agent, 'www.') > 0
OR INSTR(user_agent, 'github') > 0
OR LOWER(user_agent) RLIKE 
'([a-z0-9._%-]+@[a-z0-9.-]+\.(com|us|net|org|edu|gov|io|ly|co|uk))'
OR (
  user_agent_map['browser_family'] = 'Other'
  AND user_agent_map['device_family'] = 'Other'
  AND user_agent_map['os_family'] = 'Other'
  )
)
) OR agent_type = 'spider' THEN 'TRUE'
ELSE 'FALSE' END;
  
  **I would NOT recommend querying an entire month with 1 query** since it uses 
webrequest data which **should be queried 1 day at a time at most**. Also, the 
query uses non-standard "automata" determination. At the time (those years ago) 
I thought it was clever, but these days I would not use those rules and if I 
had infinite time I would switch to 
https://wikitech.wikimedia.org/wiki/Analytics/Data_Lake/Traffic/BotDetection

TASK DETAIL
  https://phabricator.wikimedia.org/T292152

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: mpopov
Cc: SWakiyama, MPhamWMF, dcausse, mpopov, Zbyszko, Aklapper, Lydia_Pintscher, 
Invadibot, maantietaja, CBogen, Akuckartz, Nandana, Namenlos314, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T290299: Replace token store in MW OAuth WCQS proxy with JWT

2021-10-01 Thread Zbyszko
Zbyszko updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T290299

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Zbyszko
Cc: ttaylor, CBogen, Gehel, Aklapper, Zache, BPirkle, sdkim, hnowlan, RKemper, 
Zbyszko, Invadibot, MPhamWMF, maantietaja, Akuckartz, Nandana, Namenlos314, 
Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T290299: Replace token store in MW OAuth WCQS proxy with JWT

2021-10-01 Thread Zbyszko
Zbyszko added a comment.


  @BPirkle when this code was written, there was a bug (now fixed) that 
prevented us from using OAuth2. Now we could, but since we consider this a 
temporary measure (with API gateway being a more solid one in the future, as 
mentioned here T290300 ), we 
probably leave this as it is right now.

TASK DETAIL
  https://phabricator.wikimedia.org/T290299

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Zbyszko
Cc: ttaylor, CBogen, Gehel, Aklapper, Zache, BPirkle, sdkim, hnowlan, RKemper, 
Zbyszko, Invadibot, MPhamWMF, maantietaja, Akuckartz, Nandana, Namenlos314, 
Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291714: Closing parentheses of number of sitelinks missing on Wikidata UI after opened for editing

2021-10-01 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.38-notes (1.38.0-wmf.3; 2021-10-05).

TASK DETAIL
  https://phabricator.wikimedia.org/T291714

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ReleaseTaggerBot
Cc: Lydia_Pintscher, Tacsipacsi, Aklapper, Invadibot, maantietaja, Akuckartz, 
Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, Jayprakash12345, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wong128hk, Wikidata-bugs, aude, 
Addshore, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T145171: without lat/long should use coordinates from Wikidata

2021-10-01 Thread Pikne
Pikne added a comment.




TASK DETAIL
  https://phabricator.wikimedia.org/T145171

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Pikne
Cc: Pikne, Ayack, Liuxinyu970226, daniel, MaxSem, Lydia_Pintscher, Aklapper, 
Yurik, Invadibot, maantietaja, Akuckartz, Alilje, Nabetaro, Nandana, MSantos, 
Lahi, Gq86, Looniverse, GoranSMilovanovic, QZanden, Orienteerix, LawExplorer, 
Ddproxy, _jensen, rosalieper, JGirault, Scott_WUaS, phabyogi, GAllegre, 
Susannaanas, ferdbold, lxbarth, Planemad, Wikidata-bugs, aude, TheDJ, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288639: SpamBlacklistHooks::onEditFilterMergedContent causes every edit to be rendered twice

2021-10-01 Thread Pchelolo
Pchelolo added a comment.


  A different approach could be to implement MultiContentSave hook instead of 
EditFilterMergedContent hook. MultiSaveComplete already gives us a 
RenderedRevision that should be reused for page saving. Additional benefit - we 
can replace multiple hook handlers with this one.
  
  Possible drawback - need to test how well the status set in MultiContentSave 
hook is propagated back to the UI in various scenarios.

TASK DETAIL
  https://phabricator.wikimedia.org/T288639

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Pchelolo
Cc: Pchelolo, WMDE-leszek, daniel, toan, Michael, Addshore, 
Lucas_Werkmeister_WMDE, Legoktm, Jdforrester-WMF, Marostegui, ori, Krinkle, 
Aklapper, dpifke, Ladsgroup, Suran38, Biggs657, Invadibot, Lalamarie69, 
maantietaja, Juan90264, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, Kent7301, alaa_wmde, joker88john, CucyNoiD, 
Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, Jayprakash12345, QZanden, LawExplorer, Vali.matei, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wong128hk, 
Wikidata-bugs, aude, Lydia_Pintscher, Jackmcbarn, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T285694: Highlighting for currently selected statement makes property unclickable and causes overlap with constraint violations popup

2021-10-01 Thread Mormegil
Mormegil added a comment.


  Oh, sure, I did not want to imply it should just be removed. It was only an 
observation intended to help with localizing the bug. (Even though probably 
unnecessary/self-evident, I guess, especially in this task where the original 
commit introducing the problem has been correctly identified already.)

TASK DETAIL
  https://phabricator.wikimedia.org/T285694

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Mormegil
Cc: Mormegil, Michael, Lucas_Werkmeister_WMDE, Aklapper, Invadibot, 
maantietaja, Akuckartz, Eihel, Nandana, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, Esc3300, LawExplorer, _jensen, rosalieper, Agabi10, 
Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291609: Deleted Wikidata items still returned by WQS

2021-10-01 Thread Mormegil
Mormegil added a comment.


  Yep, the claims disappeared, thanks! The timestamps remain but I don’t care 
about those and if you say this is OK, no problem for me. (I guess this task 
can be closed as resolved?)

TASK DETAIL
  https://phabricator.wikimedia.org/T291609

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse, Mormegil
Cc: dcausse, Aklapper, Mormegil, Invadibot, MPhamWMF, maantietaja, CBogen, 
Akuckartz, Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, 
Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292055: Handle errors and display a Wikit message in the same way as done on the Home page

2021-10-01 Thread ItamarWMDE
ItamarWMDE closed this task as "Resolved".
ItamarWMDE moved this task from Test (Verification) to Done on the Mismatch 
Finder (Mismatch Finder - sprint 8) board.

TASK DETAIL
  https://phabricator.wikimedia.org/T292055

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5568/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Silvan_WMDE, ItamarWMDE
Cc: Lydia_Pintscher, Aklapper, ItamarWMDE, Silvan_WMDE, guergana.tzatchkova, 
karapayneWMDE, Invadibot, maantietaja, Mattia_Capozzi_WMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T290822: Results page - submit review decisions

2021-10-01 Thread ItamarWMDE
ItamarWMDE closed subtask T292055: Handle errors and display a Wikit message in 
the same way as done on the Home page as Resolved.

TASK DETAIL
  https://phabricator.wikimedia.org/T290822

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ItamarWMDE
Cc: Silvan_WMDE, ItamarWMDE, guergana.tzatchkova, Aklapper, Lydia_Pintscher, 
karapayneWMDE, Invadibot, maantietaja, Mattia_Capozzi_WMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291714: Closing parentheses of number of sitelinks missing on Wikidata UI after opened for editing

2021-10-01 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T291714

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Maintenance_bot
Cc: Lydia_Pintscher, Tacsipacsi, Aklapper, Invadibot, maantietaja, Akuckartz, 
Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, Jayprakash12345, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wong128hk, Wikidata-bugs, aude, 
Addshore, Mbch331, Suran38, Biggs657, Lalamarie69, Juan90264, Alter-paule, 
Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288639: SpamBlacklistHooks::onEditFilterMergedContent causes every edit to be rendered twice

2021-10-01 Thread Pchelolo
Pchelolo added a parent task: T292300: Tracking: duplicate parses.

TASK DETAIL
  https://phabricator.wikimedia.org/T288639

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Pchelolo
Cc: WMDE-leszek, daniel, toan, Michael, Addshore, Lucas_Werkmeister_WMDE, 
Legoktm, Jdforrester-WMF, Marostegui, ori, Krinkle, Aklapper, dpifke, 
Ladsgroup, Suran38, Biggs657, Invadibot, Lalamarie69, maantietaja, Juan90264, 
Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, 
Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Jayprakash12345, 
QZanden, LawExplorer, Vali.matei, Lewizho99, Maathavan, _jensen, rosalieper, 
Scott_WUaS, Wong128hk, Wikidata-bugs, aude, Lydia_Pintscher, Jackmcbarn, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291714: Closing parentheses of number of sitelinks missing on Wikidata UI after opened for editing

2021-10-01 Thread gerritbot
gerritbot added a comment.


  Change 723637 **merged** by jenkins-bot:
  
  [mediawiki/extensions/Wikibase@master] Fix message using a jQuery object
  
  https://gerrit.wikimedia.org/r/723637

TASK DETAIL
  https://phabricator.wikimedia.org/T291714

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Lydia_Pintscher, Tacsipacsi, Aklapper, Suran38, Biggs657, Invadibot, 
Lalamarie69, maantietaja, Juan90264, Alter-paule, Beast1978, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
Jayprakash12345, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Wong128hk, Wikidata-bugs, aude, Addshore, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288231: Deploy the wdqs streaming updater to production

2021-10-01 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T288231

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Maintenance_bot
Cc: Aklapper, dcausse, Invadibot, MPhamWMF, maantietaja, CBogen, Akuckartz, 
Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331, Suran38, Biggs657, Lalamarie69, Juan90264, Alter-paule, Beast1978, 
Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, 
Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288231: Deploy the wdqs streaming updater to production

2021-10-01 Thread dcausse
dcausse updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T288231

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse
Cc: Aklapper, dcausse, Suran38, Biggs657, Invadibot, Lalamarie69, MPhamWMF, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288231: Deploy the wdqs streaming updater to production

2021-10-01 Thread gerritbot
gerritbot added a comment.


  Change 721281 **merged** by Gehel:
  
  [operations/puppet@production] wdqs: activate the streaming_updater role on 
wdqs2008
  
  https://gerrit.wikimedia.org/r/721281

TASK DETAIL
  https://phabricator.wikimedia.org/T288231

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Aklapper, dcausse, Suran38, Biggs657, Invadibot, Lalamarie69, MPhamWMF, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T239518: Stop using, deprecate and remove Wikibase’s getLocationAgnosticMwApi

2021-10-01 Thread Pginer-WMF
Pginer-WMF edited projects, added Language-Team 
(Language-2021-October-December); removed Language-Team 
(Language-2021-July-September).

TASK DETAIL
  https://phabricator.wikimedia.org/T239518

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Pginer-WMF
Cc: santhosh, LucasWerkmeister, Invadibot, UOzurumba, PallaviPatke, 
maantietaja, CBogen, Rileych, Nintendofan885, Akuckartz, 50019062, Nandana, 
Lahi, Gq86, Ramsey-WMF, GoranSMilovanovic, chapulina, Mahir256, QZanden, 
Alfa80, LawExplorer, _jensen, rosalieper, Soum213, Bodhisattwa, Taiwania_Justo, 
Nizil, Scott_WUaS, Ixocactus, Wikidata-bugs, aude, Amire80, Ricordisamoa, 
Jsahleen, Nikerabbit, Arrbee, KartikMistry, Addshore, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T48643: [Story] Dispatching via job queue (instead of cron script)

2021-10-01 Thread Ladsgroup
Ladsgroup added a comment.


  We looked at it and it doesn't seem to be related.

TASK DETAIL
  https://phabricator.wikimedia.org/T48643

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: jcrespo, toan, Tarrow, jijiki, alaa_wmde, Ladsgroup, Joe, Addshore, 
Aklapper, Tobi_WMDE_SW, JanZerebecki, Wikidata-bugs, Abraham, Nemo_bis, Denny, 
aude, Ricordisamoa, Lydia_Pintscher, daniel, hoo, Suran38, Biggs657, 
karapayneWMDE, Invadibot, Lalamarie69, R4356th, EhsanKhandowa, maantietaja, 
Juan90264, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, PatsagornY, 
Kent7301, joker88john, Michael, Viztor, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, JJMC89, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Johan, Luke081515, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T48643: [Story] Dispatching via job queue (instead of cron script)

2021-10-01 Thread jcrespo
jcrespo added a comment.


  At 16:02-16:06, which would fit with the deployment of 
https://gerrit.wikimedia.org/r/c/operations/mediawiki-config/+/725019/ logstash 
baseline number of messages increased around a 50%:
  
  
https://grafana.wikimedia.org/d/00561/logstash?orgId=1=2=1633013879325=1633021930229=eqiad%20prometheus%2Fops=dlq%2Fmain
  
  My guess (without checking the nature of the new messages) is this normal and 
expected due to increase debugging/informational logs in the job system, but I 
wanted to give a heads up, and hopefully someone can verify it is as I said, in 
case it is not normal and expected to confirm there are not an increase in the 
number of errors.

TASK DETAIL
  https://phabricator.wikimedia.org/T48643

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: jcrespo
Cc: jcrespo, toan, Tarrow, jijiki, alaa_wmde, Ladsgroup, Joe, Addshore, 
Aklapper, Tobi_WMDE_SW, JanZerebecki, Wikidata-bugs, Abraham, Nemo_bis, Denny, 
aude, Ricordisamoa, Lydia_Pintscher, daniel, hoo, Suran38, Biggs657, 
karapayneWMDE, Invadibot, Lalamarie69, R4356th, EhsanKhandowa, maantietaja, 
Juan90264, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, PatsagornY, 
Kent7301, joker88john, Michael, Viztor, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, JJMC89, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Johan, Luke081515, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T251382: Use strict types everywhere in Wikibase.git

2021-10-01 Thread dang
dang claimed this task.

TASK DETAIL
  https://phabricator.wikimedia.org/T251382

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dang
Cc: Michael, Lucas_Werkmeister_WMDE, darthmon_wmde, Pablo-WMDE, WMDE-leszek, 
Aklapper, Addshore, Invadibot, maantietaja, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288231: Deploy the wdqs streaming updater to production

2021-10-01 Thread dcausse
dcausse updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T288231

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse
Cc: Aklapper, dcausse, Suran38, Biggs657, Invadibot, Lalamarie69, MPhamWMF, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292281: Add env flag to enable simulated errors via

2021-10-01 Thread Maintenance_bot
Maintenance_bot added a project: Wikidata.

TASK DETAIL
  https://phabricator.wikimedia.org/T292281

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Maintenance_bot
Cc: Aklapper, Silvan_WMDE, karapayneWMDE, Invadibot, maantietaja, 
Mattia_Capozzi_WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T48643: [Story] Dispatching via job queue (instead of cron script)

2021-10-01 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T48643

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: toan, Tarrow, jijiki, alaa_wmde, Ladsgroup, Joe, Addshore, Aklapper, 
Tobi_WMDE_SW, JanZerebecki, Wikidata-bugs, Abraham, Nemo_bis, Denny, aude, 
Ricordisamoa, Lydia_Pintscher, daniel, hoo, Suran38, Biggs657, karapayneWMDE, 
Invadibot, Lalamarie69, R4356th, EhsanKhandowa, maantietaja, Juan90264, 
Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, PatsagornY, Kent7301, 
joker88john, Michael, Viztor, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Amorymeltzer, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, JJMC89, Maathavan, _jensen, 
rosalieper, Scott_WUaS, Johan, Luke081515, TheDJ, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T48643: [Story] Dispatching via job queue (instead of cron script)

2021-10-01 Thread gerritbot
gerritbot added a comment.


  Change 725287 had a related patch set uploaded (by Ladsgroup; author: Amir 
Sarabadani):
  
  [operations/deployment-charts@master] Make two new jobs of Wikidata 
dispatcher high priority
  
  https://gerrit.wikimedia.org/r/725287

TASK DETAIL
  https://phabricator.wikimedia.org/T48643

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: toan, Tarrow, jijiki, alaa_wmde, Ladsgroup, Joe, Addshore, Aklapper, 
Tobi_WMDE_SW, JanZerebecki, Wikidata-bugs, Abraham, Nemo_bis, Denny, aude, 
Ricordisamoa, Lydia_Pintscher, daniel, hoo, karapayneWMDE, Invadibot, R4356th, 
EhsanKhandowa, maantietaja, Akuckartz, PatsagornY, Michael, Viztor, Nandana, 
lucamauri, Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
JJMC89, _jensen, rosalieper, Scott_WUaS, Johan, Luke081515, TheDJ, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288231: Deploy the wdqs streaming updater to production

2021-10-01 Thread dcausse
dcausse updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T288231

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse
Cc: Aklapper, dcausse, Suran38, Biggs657, Invadibot, Lalamarie69, MPhamWMF, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292282: Add env flag to enable simulated errors via ModHeader

2021-10-01 Thread Silvan_WMDE
Silvan_WMDE created this task.
Silvan_WMDE added projects: Mismatch Finder, Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Sending a custom 'X-Mismatch-Finder-Error' header allows for convenient 
testing of various error scenarios in production. While it is useful for 
test/verification on toolforge now, we should make sure that we don't leave it 
in production once we step out of staging.

TASK DETAIL
  https://phabricator.wikimedia.org/T292282

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5385/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Silvan_WMDE
Cc: Silvan_WMDE, Aklapper, karapayneWMDE, Invadibot, maantietaja, 
Mattia_Capozzi_WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T290864: Results page - back button

2021-10-01 Thread ItamarWMDE
ItamarWMDE added a comment.


  **Note**: Since we are using a button to navigate, accessibility and 
semantics must be considered when implementing this task.

TASK DETAIL
  https://phabricator.wikimedia.org/T290864

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ItamarWMDE
Cc: ItamarWMDE, guergana.tzatchkova, Mattia_Capozzi_WMDE, Aklapper, 
Lydia_Pintscher, karapayneWMDE, Invadibot, maantietaja, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T289556: Results page - first view of mismatches

2021-10-01 Thread ItamarWMDE
ItamarWMDE closed subtask T291079: Replace table component in Mismatch finder 
with table from Wikit as Resolved.

TASK DETAIL
  https://phabricator.wikimedia.org/T289556

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lydia_Pintscher, ItamarWMDE
Cc: Silvan_WMDE, ItamarWMDE, guergana.tzatchkova, Mattia_Capozzi_WMDE, 
Aklapper, Lydia_Pintscher, karapayneWMDE, Invadibot, maantietaja, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291947: Port table component to wikit

2021-10-01 Thread ItamarWMDE
ItamarWMDE closed subtask T291079: Replace table component in Mismatch finder 
with table from Wikit as Resolved.

TASK DETAIL
  https://phabricator.wikimedia.org/T291947

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ItamarWMDE
Cc: Aklapper, karapayneWMDE, Invadibot, maantietaja, Mattia_Capozzi_WMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T291079: Replace table component in Mismatch finder with table from Wikit

2021-10-01 Thread ItamarWMDE
ItamarWMDE closed this task as "Resolved".

TASK DETAIL
  https://phabricator.wikimedia.org/T291079

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ItamarWMDE
Cc: Lydia_Pintscher, Aklapper, Mattia_Capozzi_WMDE, ItamarWMDE, Silvan_WMDE, 
guergana.tzatchkova, karapayneWMDE, Invadibot, maantietaja, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T289559: Results page - no mismatches available for review for one or more of the submitted IDs

2021-10-01 Thread Lydia_Pintscher
Lydia_Pintscher closed this task as "Resolved".
Lydia_Pintscher moved this task from Test (Verification) to Done on the 
Mismatch Finder (Mismatch Finder - sprint 8) board.
Lydia_Pintscher added a comment.


  \o/
  Looking good!

TASK DETAIL
  https://phabricator.wikimedia.org/T289559

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5568/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: guergana.tzatchkova, Lydia_Pintscher
Cc: Silvan_WMDE, Mattia_Capozzi_WMDE, Aklapper, Lydia_Pintscher, karapayneWMDE, 
Invadibot, maantietaja, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T276467: Ensure we have proper monitoring / alerting on the new Flink based WDQS Streaming Updater

2021-10-01 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T276467

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse, Maintenance_bot
Cc: Aklapper, Gehel, Invadibot, MPhamWMF, maantietaja, CBogen, Akuckartz, 
Nandana, Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, 
QZanden, EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, 
Xmlizer, jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, 
Mbch331, Suran38, Biggs657, Lalamarie69, Juan90264, Alter-paule, Beast1978, 
Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, 
Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292050: Create a web endpoint to update a batch of mismatches

2021-10-01 Thread Silvan_WMDE
Silvan_WMDE claimed this task.
Silvan_WMDE moved this task from To Do to Doing on the Mismatch Finder 
(Mismatch Finder - sprint 8) board.

TASK DETAIL
  https://phabricator.wikimedia.org/T292050

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5568/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Silvan_WMDE
Cc: guergana.tzatchkova, Aklapper, ItamarWMDE, karapayneWMDE, Invadibot, 
maantietaja, Mattia_Capozzi_WMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T292055: Handle errors and display a Wikit message in the same way as done on the Home page

2021-10-01 Thread Silvan_WMDE
Silvan_WMDE moved this task from Doing to Peer Review on the Mismatch Finder 
(Mismatch Finder - sprint 8) board.
Silvan_WMDE added a comment.


  https://github.com/wmde/wikidata-mismatch-finder/pull/121

TASK DETAIL
  https://phabricator.wikimedia.org/T292055

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5568/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Silvan_WMDE
Cc: Lydia_Pintscher, Aklapper, ItamarWMDE, Silvan_WMDE, guergana.tzatchkova, 
karapayneWMDE, Invadibot, maantietaja, Mattia_Capozzi_WMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288231: Deploy the wdqs streaming updater to production

2021-10-01 Thread dcausse
dcausse updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T288231

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse
Cc: Aklapper, dcausse, Suran38, Biggs657, Invadibot, Lalamarie69, MPhamWMF, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T276467: Ensure we have proper monitoring / alerting on the new Flink based WDQS Streaming Updater

2021-10-01 Thread gerritbot
gerritbot added a comment.


  Change 724999 **merged** by jenkins-bot:
  
  [operations/alerts@master] rdf-streaming-updater: Deploy only to k8s
  
  https://gerrit.wikimedia.org/r/724999

TASK DETAIL
  https://phabricator.wikimedia.org/T276467

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: dcausse, gerritbot
Cc: Aklapper, Gehel, Suran38, Biggs657, Invadibot, Lalamarie69, MPhamWMF, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Namenlos314, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Lucas_Werkmeister_WMDE, 
GoranSMilovanovic, QZanden, EBjune, merbst, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, Wikidata-bugs, 
Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org