[Wikidata-bugs] [Maniphest] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread AKhatun_WMF
AKhatun_WMF added a comment.


  In T303831#8063021 , 
@EBernhardson wrote:
  
  > In terms of the exact code causing this, spark is terrible at telling us 
exactly where but trying to infer from the SparkUI output i think it's this 
join:
  >
  >   def getTopSubgraphItems(topSubgraphs: DataFrame): DataFrame = {
  > wikidataTriples
  >   .filter(s"predicate='<$p31>'")
  >   .selectExpr("object as subgraph", "subject as item")
  >   .join(topSubgraphs.select("subgraph"), Seq("subgraph"), "right")
  
  This is exactly the code that finds out the top subgraphs. And yes, the data 
is definitely heavily skewed, that is the nature of Wikidata and anything we do 
on Wikidata by subgraphs is going to run into similar issues. For reference, 
half of wikidata is under 1 single subgraph, and the rest half has 100s of 
subgraphs. We might need to start considering spark3.
  
  > And i suppose this is also only the first skewed join in the execution, 
there may be more later in the computations.
  
  Unfortunately, yes. `subgraph_query_mapping` is going to be another big feat 
I believe, it has similar joins and writes data daily. But we will see.
  
  In T303831#8064293 , 
@EBernhardson wrote:
  
  > - Enabled subgraph_query_mapping_daily. This started waiting for 
snapshot=20220613 (last monday) with an execution_date of 20220620 (also a 
monday). I suspect we should adjust this to target snapshot=20220620, but 
waiting for confirmation. Turned back off so it doesn't timeout and complain.
  
  It is correct to look for data from last Monday, because the data of 20220620 
actually got populated the following Friday. So if the job is running on 
current data, it wont find data for Monday on the same day. All of this 
maneuver is because the input data is both weekly and daily, so every day the 
job looks for data from the last Monday.
  
  This makes me think if the same should be done for `subgraph_mapping_weekly`, 
as it looks for 20220620 on the same day, even though it will be populated the 
following Friday. This job runs weekly, same as input data.
  
  > - Enabled subgraph_query_metrics_daily.  This is waiting for 
`event.wdqs_external_sparql_query/datacenter=eqiad/year=2022/month=6/day=20` 
(and same for codfw) but it needs to be waiting on the individual hourly 
partitions.  I hadn't thought this fully through when reviewing the patch, we 
will need to adjust the sensor to use HivePartitionRangeSensor which can 
generate all the intermediate hourly named partitions. Turned back off as it's 
also waiting for outputs of subgraph_query_mapping_daily (iiuc) which is turned 
off currently.
  
  Attempting this.

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

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

To: AKhatun_WMF
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread EBernhardson
EBernhardson added a comment.


  Summary of what was done so far to deploy:
  
  - Tuned subgraph_mapping_weekly. Set spark parallelism to 4096, Increased 
memory to 24G (=6g per task)  and reduced total executor count to keep total 
memory usage around 1TB. Changed `coalesce()` into `repartition()`  in 
SubgraphMapper. Completes without any failed tasks. Might be a bit wasteful of 
memory, but probably not worth tuning unless there are complaints and we can 
hope a later upgrade to spark 3 w/ skew-join optimization will improve things. 
We could manually implement the same skew-join optimization on a per-use case 
basis, but it's extra work that might not be necessary.
  - Enabled subgraph_metrics_weekly. Ran without issue.
  - This patch added a number of new sensors. We've been intending to switch 
sensors from `mode=poke` to `mode=reschedule`. Adding these new sensors 
reminded me of why we needed to make that change (all airflow executors used 
waiting for data to arrive). Deployed a patch to switch everything over.
  - Enabled subgraph_query_mapping_daily. This started waiting for 
snapshot=20220613 (last monday) with an execution_date of 20220620 (also a 
monday). I suspect we should adjust this to target snapshot=20220620, but 
waiting for confirmation. Turned back off so it doesn't timeout and complain.
  - Enabled subgraph_query_metrics_daily.  This is waiting for 
`event.wdqs_external_sparql_query/datacenter=eqiad/year=2022/month=6/day=20` 
(and same for codfw) but it needs to be waiting on the individual hourly 
partitions.  I hadn't thought this fully through when reviewing the patch, we 
will need to adjust the sensor to use HivePartitionRangeSensor which can 
generate all the intermediate hourly named partitions. Turned back off as it's 
also waiting for outputs of subgraph_query_mapping_daily (iiuc) which is turned 
off currently.

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

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

To: AKhatun_WMF, EBernhardson
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread EBernhardson
EBernhardson added a comment.


  Stats on the final join building `topSubgraphTriples`. this is using 4096 
partitions and repartition(). It works for now so probably not worth dealing 
with the skew, but these stats might be useful to compare against in the future 
if it starts failing:
  
  | Metric   | Min  | 25th percentile | Median  
 | 75th percentile | Max  |
  | Duration | 15 s | 46 s| 54 s
 | 1.0 min | 9.2 min  |
  | Scheduler Delay  | 2 ms | 3 ms| 3 ms
 | 4 ms| 0.4 s|
  | Task Deserialization Time| 1 ms | 2 ms| 2 ms
 | 3 ms| 0.7 s|
  | GC Time  | 27 ms| 0.1 s   | 0.2 s   
 | 0.3 s   | 41 s |
  | Result Serialization Time| 0 ms | 0 ms| 0 ms
 | 0 ms| 1 ms |
  | Getting Result Time  | 0 ms | 0 ms| 0 ms
 | 0 ms| 0 ms |
  | Peak Execution Memory| 2.1 GB   | 2.1 GB  | 2.1 GB  
 | 2.1 GB  | 13.6 GB  |
  | Shuffle Read Blocked Time| 0 ms | 23 s| 32 s
 | 38 s| 2.1 min  |
  | Shuffle Read Size / Records  | 263.2 MB / 3156075 | 269.9 MB / 3235843| 
271.6 MB / 3256300 | 273.4 MB / 324| 30.5 GB / 414401248  |
  | Shuffle Remote Reads | 255.2 MB | 264.1 MB| 266.1 MB
 | 268.0 MB| 29.7 GB  |
  | Shuffle Write Size / Records | 340.9 MB / 3184514 | 351.8 MB / 3281889| 
354.4 MB / 3305742 | 357.0 MB / 3330833| 367.5 MB / 3438583 |
  | Shuffle spill (memory)   | 0.0 B| 0.0 B   | 0.0 B   
 | 0.0 B   | 98.1 GB  |
  | Shuffle spill (disk) | 0.0 B| 0.0 B   | 0.0 B   
 | 0.0 B   | 28.2 GB  |
  |

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

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

To: AKhatun_WMF, EBernhardson
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812143 **merged** by jenkins-bot:
  
  [wikimedia/discovery/analytics@master] Update rdf-spark-tools to 0.3.112
  
  https://gerrit.wikimedia.org/r/812143

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

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

To: AKhatun_WMF, gerritbot
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812143 had a related patch set uploaded (by Ebernhardson; author: 
Ebernhardson):
  
  [wikimedia/discovery/analytics@master] Update rdf-spark-tools to 0.3.112
  
  https://gerrit.wikimedia.org/r/812143

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

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

To: AKhatun_WMF, gerritbot
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812133 **merged** by jenkins-bot:
  
  [wikidata/query/rdf@master] Switch SubgraphMapper from coalesce to repartition
  
  https://gerrit.wikimedia.org/r/812133

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

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

To: AKhatun_WMF, gerritbot
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812133 had a related patch set uploaded (by Ebernhardson; author: 
Ebernhardson):
  
  [wikidata/query/rdf@master] Switch SubgraphMapper from coalesce to repartition
  
  https://gerrit.wikimedia.org/r/812133

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

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

To: AKhatun_WMF, gerritbot
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T312291: Placeholder text color

2022-07-07 Thread Quiddity
Quiddity added a comment.


  In T312291#8063319 , 
@Sarai-WMDE wrote:
  
  > (Couldn't verify this in Firefox due to the inability to check the user 
agent shadow DOM there)
  
  Indeed! That's why I had to resort to the Eyedropper tool (and had to remind 
myself whether there was a built-in version, or if I needed to re-enable the 
old Colorzilla extension! It turns out there is a built-in, within 
"Tools->Browser Tools->Eyedropper". :-) )
  Glad I could help!

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

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

To: Quiddity
Cc: Lydia_Pintscher, Sarai-WMDE, Quiddity, Aklapper, Astuthiodit_1, STH, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Volker_E, 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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread Stashbot
Stashbot added a comment.


  Mentioned in SAL (#wikimedia-operations) [2022-07-07T20:55:42Z] 
 Synchronized wmf-config/InitialiseSettings.php: Config: 
[[gerrit:812017|Migrate WikibaseTermboxInteraction from EventLogging to 
EventGate on testwiki (T290303 )]] 
(duration: 03m 12s)

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

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

To: mforns, Stashbot
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Astuthiodit_1, ntsako, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, darthmon_wmde, holger.knust, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, GWicke, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812075 **merged** by jenkins-bot:
  
  [wikimedia/discovery/analytics@master] Tune subgraph_mapping_weekly based on 
first prod run
  
  https://gerrit.wikimedia.org/r/812075

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

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

To: AKhatun_WMF, gerritbot
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: mforns, Maintenance_bot
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Astuthiodit_1, ntsako, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, darthmon_wmde, holger.knust, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, GWicke, Mbch331, Hellket777, 786, Biggs657, Juan90264, 
Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, 
Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan, 
Neuronton
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812075 had a related patch set uploaded (by Ebernhardson; author: 
Ebernhardson):
  
  [wikimedia/discovery/analytics@master] Tune subgraph_mapping_weekly based on 
first prod run
  
  https://gerrit.wikimedia.org/r/812075

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

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

To: AKhatun_WMF, gerritbot
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T312291: Placeholder text color

2022-07-07 Thread Sarai-WMDE
Sarai-WMDE added a comment.


  Thanks for the catch, @Quiddity! Before anything, allow me to clarify that 
the new Special:NewLexemeAlpha 
 page is based 
off of a library called WiKit (the WD design system) and not (yet) Codex. 
Nevertheless, WiKit component styles should be aligned with those of Codex, so 
the linked source is still correct and relevant. Placeholders are not an 
exception: they should indeed display the color #72777d, as you well indicate. 
Nevertheless, that doesn't seem to be the case. I even noticed that different 
browsers seem to be applying a different shades of gray:
  
  | Chrome | Safari |
  | F35311130: Screenshot 2022-07-07 at 21.37.50.png 
  | F35311136: Screenshot 
2022-07-07 at 21.47.50.png   |
  |
  
  (Couldn't verify this in Firefox due to the inability to check the user agent 
shadow DOM there)
  
  We'll open a bug report to ensure that the right color is applied to input 
placeholders in all browsers. Taking full responsibility of this, as this issue 
should have been discovered during manual testing quite a long time ago. 
  Thanks again very much for your help! šŸ˜„

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

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

To: Sarai-WMDE
Cc: Lydia_Pintscher, Sarai-WMDE, Quiddity, Aklapper, Astuthiodit_1, STH, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Volker_E, 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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812017 **merged** by jenkins-bot:
  
  [operations/mediawiki-config@master] Migrate WikibaseTermboxInteraction from 
EventLogging to EventGate on testwiki
  
  https://gerrit.wikimedia.org/r/812017

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

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

To: mforns, gerritbot
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Hellket777, Astuthiodit_1, ntsako, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, ItamarWMDE, Un1tY, 
Akuckartz, Hook696, darthmon_wmde, Kent7301, holger.knust, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, GWicke, 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] T312456: Migrate usage of Database::select to SelectQueryBuilder in Wikidata.org

2022-07-07 Thread Lydia_Pintscher
Lydia_Pintscher edited projects, added Wikidata, wdwb-tech, wmde-wikidata-tech; 
removed Wikidata.org.

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

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

To: Lydia_Pintscher
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Izno, 
Wikidata-bugs, aude, Dinoguy1000, 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] T165916: Allow suppression of cognate links via a magic word

2022-07-07 Thread Maintenance_bot
Maintenance_bot added a project: Wikidata.

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

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

To: Maintenance_bot
Cc: Lea_Lacroix_WMDE, Lydia_Pintscher, Addshore, Xaosflux, Aklapper, daniel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Thibaut120094, jberkel, Psychoslave, Wikidata-bugs, 
aude, Shizhao, Nemo_bis, Darkdadaah, Mbch331, Ltrlg, Krenair
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312379: Migrate usage of Database::select to SelectQueryBuilder in Cognate

2022-07-07 Thread Lydia_Pintscher
Lydia_Pintscher added projects: wmde-wikidata-tech, Wikidata.
Restricted Application added a project: wdwb-tech.

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

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

To: Lydia_Pintscher
Cc: Maintenance_bot, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Thibaut120094, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, 
Darkdadaah, Mbch331, Jay8g, Ltrlg
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T214402: populateCognatePages.php query keeps timing out while waiting for replication

2022-07-07 Thread Lydia_Pintscher
Lydia_Pintscher added a project: Wikidata.

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

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

To: Lydia_Pintscher
Cc: Liuxinyu970226, Marostegui, aaron, Aklapper, Addshore, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Thibaut120094, Wikidata-bugs, aude, Lydia_Pintscher, Darkdadaah, Mbch331, Ltrlg
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312292: Open link to docs in new tab

2022-07-07 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  That makes sense to me.

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

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

To: Lydia_Pintscher
Cc: Lydia_Pintscher, Quiddity, Aklapper, Astuthiodit_1, STH, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Volker_E, 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] T312291: Placeholder text color

2022-07-07 Thread Lydia_Pintscher
Lydia_Pintscher added subscribers: Sarai-WMDE, Lydia_Pintscher.
Lydia_Pintscher added a comment.


  @Sarai-WMDE would you mind having a look at this?

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

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

To: Lydia_Pintscher
Cc: Lydia_Pintscher, Sarai-WMDE, Quiddity, Aklapper, Astuthiodit_1, STH, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Volker_E, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread EBernhardson
EBernhardson added a comment.


  I tried a run with the three coalesce's in SubgraphMapper converted into 
repartitions. In this case instead of having 8 partitions where 7 finish and 
the 8th takes forever and then fails, now it has 200 partitions and 199 finish 
with the 200th taking forever and then failing.  This seems like it could be a 
case of skew-join, the dataset is being partitioned based on the join condition 
(rather than randomly) and a specific part of the join has significantly more 
values to work through than anything else. To get an idea of how significant 
the skew is i doubled the ram again (to 24g) in hopes that it will eventually 
complete and give some stats. The final stats are as follows, clearly showing a 
significant skew:
  
  | Duration | 1 s   | 1 s  | 2 s   
   | 2 s | 4.1 min  |
  | Scheduler Delay  | 6 ms  | 19 ms| 21 ms 
   | 26 ms   | 34 ms|
  | Task Deserialization Time| 37 ms | 61 ms| 77 ms 
   | 0.1 s   | 0.2 s|
  | GC Time  | 0 ms  | 16 ms| 23 ms 
   | 48 ms   | 2.6 min  |
  | Result Serialization Time| 0 ms  | 0 ms | 0 ms  
   | 0 ms| 1 ms |
  | Getting Result Time  | 0 ms  | 0 ms | 0 ms  
   | 0 ms| 0 ms |
  | Peak Execution Memory| 128.8 MB  | 194.3 MB | 196.3 
MB | 200.3 MB| 5.6 GB   |
  | Shuffle Read Blocked Time| 0 ms  | 3 ms | 5 ms  
   | 64 ms   | 0.3 s|
  | Shuffle Read Size / Records  | 1469.5 KB / 35062 | 2.5 MB / 87982   | 3.1 
MB / 133528  | 5.0 MB / 258108 | 406.2 MB / 38467392 |
  | Shuffle Remote Reads | 1433.7 KB | 2.5 MB   | 3.1 
MB   | 4.9 MB  | 398.5 MB |
  | Shuffle Write Size / Records | 0.0 B / 0 | 184.5 KB / 18106 | 827.2 
KB / 72252 | 2.5 MB / 195511 | 404.2 MB / 38411863 |
  |
  
  Resolving skew on the other hand is a harder problem. Spark 3 added a new 
skew-join optimization and I've heard that some other teams have spark 3 
working in our cluster, but I haven't played around with it at all yet. Will 
look into this more and see what solutions can be found.  In terms of the exact 
code causing this, spark is terrible at telling us exactly where but trying to 
infer from the SparkUI output i think it's this join:
  
def getTopSubgraphItems(topSubgraphs: DataFrame): DataFrame = {
  wikidataTriples
.filter(s"predicate='<$p31>'")
.selectExpr("object as subgraph", "subject as item")
.join(topSubgraphs.select("subgraph"), Seq("subgraph"), "right")
  
  I'll probably need to recreate some of this in a jupyterlab notebook to look 
at the actual data and see what exactly is in the skewed side of the dataset.

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

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

To: AKhatun_WMF, EBernhardson
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread EBernhardson
EBernhardson added a comment.


  In T303831#8060472 , 
@AKhatun_WMF wrote:
  
  > In T303831#8058159 , 
@EBernhardson wrote:
  >
  >> the airflow patch is deployed but i only turned on *_init dags and 
subgraph_mapping_weekly today (ran out of time, will do rest tomorrow).
  >>
  >> subgraph_mapping_weekly failed the first time through. I updated executor 
memory from 8g to 12g but the second execution is still failing. something is 
quite unbalanced about the topSubgraphItems, of the 8 shards they have inputs 
varying from 100MB to 450MB giving executions times of ~30s on the small ones 
and ~8m before the final one fails.
  >>
  >> Not specifically related to this patch, but i wonder if we could change up 
the `SparkUtils.saveTables`  method to somehow take parameters in the path to 
specify coalesce vs repartition and the number of partitions to save by, so we 
only have to update the airflow invocation and not the jar as well to test 
variations there.
  >
  > Should we have params called `coalesce`, and `repartition`, and have them 
default to false. And when true, use `num_partitions` to coalesce or 
repartition accordingly?
  >
  > Edit: I realize all arg classes that need to coalesce or repartition will 
need to have these params set.
  
  In this case i was thinking that we could somehow treat the string that is 
provided over the command line as a specification for how/where to store things 
and somehow include named parameters in it. So for example right now we provide:
  
--all-subgraphs-table discovery.wikibase_rdf/date=20220620/wiki=wikidata
  
  What if instead we could provide (syntax to be bikeshedded):
  
--all-subgraphs-table 
discovery.wikibase_rdf/date=20220620/wiki=wikidata;repartition=42
  
  This would have the downside that read/write would have different syntaxes 
and we have to know which to use where, maybe there are better options. Mostly 
pondering ideas on how to make things we know might have to be modified easier 
to change.  There are probably other ways to magic parameters into various 
places in the jvm world, this is just a first guess.

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

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

To: AKhatun_WMF, EBernhardson
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T305785: Wikibase Snak hashes (and thus "mainsnak", "references" and "qualifiers" hashes) depend on legacy PHP serialization

2022-07-07 Thread ItamarWMDE
ItamarWMDE added a project: User-ItamarWMDE.

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

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

To: hoo, ItamarWMDE
Cc: Reedy, Aklapper, Lucas_Werkmeister_WMDE, hoo, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, RhinosF1, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Nikerabbit, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812029 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseLexeme@master] Use 
FallbackLabelDescriptionLookupFactory in LexemeHandler
  
  https://gerrit.wikimedia.org/r/812029

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812028 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseLexeme@master] Use 
FallbackLabelDescriptionLookupFactory for meta tags creator
  
  https://gerrit.wikimedia.org/r/812028

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812027 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseLexeme@master] Use 
FallbackLabelDescriptionLookupFactory for Form formatter
  
  https://gerrit.wikimedia.org/r/812027

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812025 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseLexeme@master] Use 
FallbackLabelDescriptionLookupFactory for Form ID formatter
  
  https://gerrit.wikimedia.org/r/812025

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812026 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseLexeme@master] Use 
FallbackLabelDescriptionLookupFactory for Lexeme formatter
  
  https://gerrit.wikimedia.org/r/812026

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812024 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseLexeme@master] Use 
FallbackLabelDescriptionLookupFactory for Lexeme ID formatter
  
  https://gerrit.wikimedia.org/r/812024

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, 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] T239208: Lexemes: Grammatical form can render as `[object Object]`

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 811308 **merged** by jenkins-bot:
  
  [oojs/ui@master] TagMultiselectWidget: Support editing tags with 
jQuery-formatted labels
  
  https://gerrit.wikimedia.org/r/811308

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

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

To: guergana.tzatchkova, gerritbot
Cc: matmarex, jhsoby, thiemowmde, Nikki, DannyS712, Hellket777, Astuthiodit_1, 
786, Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, Scott_WUaS, 
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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: mforns, gerritbot
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Hellket777, Astuthiodit_1, ntsako, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, ItamarWMDE, Un1tY, 
Akuckartz, Hook696, darthmon_wmde, Kent7301, holger.knust, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, GWicke, 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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 812017 had a related patch set uploaded (by Mforns; author: Mforns):
  
  [operations/mediawiki-config@master] Migrate WikibaseTermboxInteraction from 
EventLogging to EventGate on testwiki
  
  https://gerrit.wikimedia.org/r/812017

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

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

To: mforns, gerritbot
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Astuthiodit_1, ntsako, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, darthmon_wmde, holger.knust, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, GWicke, 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] T312223: Use FallbackLabelDescriptionLookupFactory in code

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.
Lucas_Werkmeister_WMDE moved this task from To Do to Doing on the 
Special:NewLexeme revival (Special:NewLexeme revival - sprint 11) board.

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

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lydia_Pintscher, Lucas_Werkmeister_WMDE, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, 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] T304793: Get metrics on usage of Entity Schemas

2022-07-07 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: Michael, gerritbot
Cc: guergana.tzatchkova, ItamarWMDE, Michael, Manuel, Aklapper, 
Lydia_Pintscher, Hellket777, Astuthiodit_1, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, Un1tY, SCIdude, 
Akuckartz, Hook696, Kent7301, pdehaye, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Andrawaag, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, LawExplorer, Salgo60, 
Lewizho99, Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, 
MisterSynergy, abian, 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] T304793: Get metrics on usage of Entity Schemas

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 811979 had a related patch set uploaded (by Michael GroƟe; author: 
Michael GroƟe):
  
  [analytics/refinery@master] Track views of the EntitySchema: namespace on 
Wikidata
  
  https://gerrit.wikimedia.org/r/811979

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

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

To: Michael, gerritbot
Cc: guergana.tzatchkova, ItamarWMDE, Michael, Manuel, Aklapper, 
Lydia_Pintscher, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, SCIdude, 
Akuckartz, pdehaye, Nandana, Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, 
YULdigitalpreservation, LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, 
MisterSynergy, abian, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread AKhatun_WMF
AKhatun_WMF added a comment.


  Update:
   I tested a few options in the statbox, I am not sure how much this will 
represent the prod env, but here goes:
  
  coalesce  + 8G driver memory = failed as identified by Erik 
(SparkOutOfMemoryError at topSubgraphItems, application_1655808530211_109990)
  coalesce  + 16G driver memory = failed (SparkOutOfMemoryError at 
topSubgraphItems, application_1655808530211_110190)
  repartition  + 8G driver memory = failed (Reason: Executor heartbeat timed 
out after 176110 ms, application_1655808530211_110236)
  repartition  + 16G driver memory =  failed (Reason: Executor heartbeat timed 
out after 159925 ms, application_1655808530211_110343)
  repartition + 16G driver memory + 16G executor memory = failed (Reason: 
Executor heartbeat timed out after 145549 ms, application_1655808530211_110430)
  
  need to figure out the exact place that causes OOM

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

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

To: AKhatun_WMF
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T307869: Request for new search profile for Wikidata that boosts Items for languages

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 806933 **merged** by jenkins-bot:
  
  [mediawiki/extensions/WikibaseCirrusSearch@master] Remove no-longer-used Phan 
suppression
  
  https://gerrit.wikimedia.org/r/806933

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lea_WMDE, Evelien_WMDE, ItamarWMDE, dcausse, Lucas_Werkmeister_WMDE, 
MPhamWMF, Aklapper, Lydia_Pintscher, Hellket777, Astuthiodit_1, 
Nikospappas1312, 786, Biggs657, karapayneWMDE, Invadibot, Universal_Omega, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, 
EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Bodhisattwa, 
Neuronton, Scott_WUaS, Wikidata-bugs, aude, Gryllida, 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] T307869: Request for new search profile for Wikidata that boosts Items for languages

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 806929 **merged** by jenkins-bot:
  
  [mediawiki/extensions/WikimediaMessages@master] Add messages for language 
entity search profile
  
  https://gerrit.wikimedia.org/r/806929

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lea_WMDE, Evelien_WMDE, ItamarWMDE, dcausse, Lucas_Werkmeister_WMDE, 
MPhamWMF, Aklapper, Lydia_Pintscher, Hellket777, Astuthiodit_1, 
Nikospappas1312, 786, Biggs657, karapayneWMDE, Invadibot, Universal_Omega, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, 
EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Bodhisattwa, 
Neuronton, Scott_WUaS, Wikidata-bugs, aude, Gryllida, 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] T307869: Request for new search profile for Wikidata that boosts Items for languages

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 806386 **merged** by jenkins-bot:
  
  [mediawiki/extensions/Wikibase@master] Add profile parameter to entity search 
APIs
  
  https://gerrit.wikimedia.org/r/806386

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lea_WMDE, Evelien_WMDE, ItamarWMDE, dcausse, Lucas_Werkmeister_WMDE, 
MPhamWMF, Aklapper, Lydia_Pintscher, Hellket777, Astuthiodit_1, 
Nikospappas1312, 786, Biggs657, karapayneWMDE, Invadibot, Universal_Omega, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, 
EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Bodhisattwa, 
Neuronton, Scott_WUaS, Wikidata-bugs, aude, Gryllida, 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] T283802: Words generator: words from Wikidata Lexemes

2022-07-07 Thread Yug
Yug raised the priority of this task from "Low" to "Medium".

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

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

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

To: Yug
Cc: Eihel, Pamputt, real68er, Esc3300, Ainali, Poslovitch, VIGNERON, Yug, 
Lea_Lacroix_WMDE, Theklan, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, PachaTchernof, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, Scott_WUaS, Wikidata-bugs, Base, aude, Mbch331, Ltrlg
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T283802: Words generator: words from Wikidata Lexemes

2022-07-07 Thread Yug
Yug renamed this task from "Create a generator for Lexemes on LinguaLibre 
RecordWizard" to "Words generator: words from Wikidata Lexemes".

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

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

To: Yug
Cc: Eihel, Pamputt, real68er, Esc3300, Ainali, Poslovitch, VIGNERON, Yug, 
Lea_Lacroix_WMDE, Theklan, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, PachaTchernof, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, Scott_WUaS, Wikidata-bugs, Base, aude, Mbch331, Ltrlg
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T307869: Request for new search profile for Wikidata that boosts Items for languages

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 806932 **merged** by jenkins-bot:
  
  [mediawiki/extensions/WikibaseCirrusSearch@master] Pass $searchProfiles into 
SearchEntities API
  
  https://gerrit.wikimedia.org/r/806932

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Lea_WMDE, Evelien_WMDE, ItamarWMDE, dcausse, Lucas_Werkmeister_WMDE, 
MPhamWMF, Aklapper, Lydia_Pintscher, Hellket777, Astuthiodit_1, 
Nikospappas1312, 786, Biggs657, karapayneWMDE, Invadibot, Universal_Omega, 
maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, Un1tY, Akuckartz, 
Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, 
EBjune, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Bodhisattwa, 
Neuronton, Scott_WUaS, Wikidata-bugs, aude, Gryllida, 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] T304793: Get metrics on usage of Entity Schemas

2022-07-07 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Michael, Maintenance_bot
Cc: guergana.tzatchkova, ItamarWMDE, Michael, Manuel, Aklapper, 
Lydia_Pintscher, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, SCIdude, 
Akuckartz, pdehaye, Nandana, Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, 
YULdigitalpreservation, LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, 
MisterSynergy, abian, Wikidata-bugs, aude, Mbch331, Hellket777, 786, Biggs657, 
Juan90264, Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, 
CucyNoiD, Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, 
Maathavan, Neuronton
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T239208: Lexemes: Grammatical form can render as `[object Object]`

2022-07-07 Thread guergana.tzatchkova
guergana.tzatchkova added a comment.


  Once this is merged, we could mark T220093 
 as solved because it wouldn't be an 
issue if the jquery object is passed. The uploaded patch 
 adds the case that a jquery object.

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

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

To: guergana.tzatchkova
Cc: jhsoby, thiemowmde, Nikki, DannyS712, Hellket777, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Bodhisattwa, Neuronton, Scott_WUaS, 
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] T304793: Get metrics on usage of Entity Schemas

2022-07-07 Thread Michael
Michael claimed this task.
Michael moved this task from To Do to Doing on the Special:NewLexeme revival 
(Special:NewLexeme revival - sprint 11) board.
Restricted Application added a project: User-Michael.

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

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

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

To: Michael
Cc: guergana.tzatchkova, ItamarWMDE, Michael, Manuel, Aklapper, 
Lydia_Pintscher, Hellket777, Astuthiodit_1, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, Un1tY, SCIdude, 
Akuckartz, Hook696, Kent7301, pdehaye, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Andrawaag, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, LawExplorer, Salgo60, 
Lewizho99, Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, 
MisterSynergy, abian, 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] T312349: Migrate usage of Database::select to SelectQueryBuilder in WikibaseLexeme

2022-07-07 Thread ItamarWMDE
ItamarWMDE added a project: wmde-wikidata-tech.

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

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

To: ItamarWMDE
Cc: Lucas_Werkmeister_WMDE, Ladsgroup, Aklapper, Maintenance_bot, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, 
LawExplorer, _jensen, rosalieper, Bodhisattwa, Scott_WUaS, Izno, Wikidata-bugs, 
aude, Dinoguy1000, 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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread EChetty
EChetty added a project: Data Engineering Planning.

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

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

To: mforns, EChetty
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Astuthiodit_1, ntsako, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, darthmon_wmde, holger.knust, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, GWicke, 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] T290303: Migrate WikibaseTermboxInteraction EventLogging Schema to new EventPlatform thingy

2022-07-07 Thread EChetty
EChetty updated Other Assignee, added: phuedx.
EChetty removed a project: Data Engineering Planning (Sprint 01).

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

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

To: mforns, EChetty
Cc: phuedx, Manuel, Addshore, Ottomata, awight, Lydia_Pintscher, Aklapper, 
Michael, Astuthiodit_1, ntsako, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, darthmon_wmde, holger.knust, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, GWicke, 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] T312359: Migrate usage of Database::select to SelectQueryBuilder in EntitySchema

2022-07-07 Thread ItamarWMDE
ItamarWMDE moved this task from Inbox to Sorted Team A on the wdwb-tech board.
ItamarWMDE added a project: wmde-wikidata-tech.

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

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

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

To: ItamarWMDE
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, SCIdude, Akuckartz, darthmon_wmde, pdehaye, Nandana, 
Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, YULdigitalpreservation, 
LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, Izno, MisterSynergy, 
abian, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, 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] T312197: [EPIC] Fix Wikidata sitelink updates after client wiki page move

2022-07-07 Thread Manuel
Manuel added a project: Wikidata-Campsite.

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

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

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, 
Invadibot, maantietaja, Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread ItamarWMDE
ItamarWMDE added a project: wmde-wikidata-tech.

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

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

To: Lucas_Werkmeister_WMDE, ItamarWMDE
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Eihel, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, LawExplorer, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Izno, abian, Wikidata-bugs, aude, 
Dinoguy1000, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

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

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

To: Lucas_Werkmeister_WMDE, Maintenance_bot
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Eihel, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, LawExplorer, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Izno, abian, Wikidata-bugs, aude, 
Dinoguy1000, Mbch331, Jay8g, Hellket777, 786, Biggs657, Juan90264, Alter-paule, 
Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan, Neuronton
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312359: Migrate usage of Database::select to SelectQueryBuilder in EntitySchema

2022-07-07 Thread Maintenance_bot
Maintenance_bot added a project: Wikidata.
Restricted Application added a project: wdwb-tech.

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

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

To: Maintenance_bot
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, SCIdude, Akuckartz, darthmon_wmde, pdehaye, Nandana, 
Lahi, Gq86, Andrawaag, GoranSMilovanovic, QZanden, YULdigitalpreservation, 
LawExplorer, Salgo60, _jensen, rosalieper, Scott_WUaS, Izno, MisterSynergy, 
abian, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, 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] T312510: Migrate usage of Database::select to SelectQueryBuilder in Wikibase

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added projects: MediaWiki-extensions-WikibaseRepository, 
MediaWiki-extensions-WikibaseClient.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Ladsgroup, Lucas_Werkmeister_WMDE, Aklapper, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, lucamauri, 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] T312510: Migrate usage of Database::select to SelectQueryBuilder in Wikibase

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE merged a task: T312515: Migrate usage of 
Database::select to SelectQueryBuilder in Wikibase.
Lucas_Werkmeister_WMDE added a subscriber: Ladsgroup.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Ladsgroup, Lucas_Werkmeister_WMDE, Aklapper, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, 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] T312515: Migrate usage of Database::select to SelectQueryBuilder in Wikibase

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as a duplicate of T312510: Migrate 
usage of Database::select to SelectQueryBuilder in Wikibase.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Ladsgroup, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, lucamauri, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as "Resolved".

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Maintenance_bot, Hellket777, Astuthiodit_1, 786, Biggs657, 
karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, 
ItamarWMDE, Un1tY, Akuckartz, Hook696, darthmon_wmde, Eihel, Kent7301, 
joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Agabi10, Neuronton, 
Scott_WUaS, Izno, abian, Wikidata-bugs, aude, Dinoguy1000, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 811873 **merged** by jenkins-bot:
  
  [mediawiki/extensions/WikibaseQualityConstraints@master] Use 
SelectQueryBuilder
  
  https://gerrit.wikimedia.org/r/811873

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

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

To: Lucas_Werkmeister_WMDE, gerritbot
Cc: Aklapper, Maintenance_bot, Hellket777, Astuthiodit_1, 786, Biggs657, 
karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, 
ItamarWMDE, Un1tY, Akuckartz, Hook696, darthmon_wmde, Eihel, Kent7301, 
joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Agabi10, Neuronton, 
Scott_WUaS, Izno, abian, Wikidata-bugs, aude, Dinoguy1000, 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] T312515: Migrate usage of Database::select to SelectQueryBuilder in Wikibase

2022-07-07 Thread Ladsgroup
Ladsgroup created this task.
Ladsgroup added projects: MediaWiki-extensions-WikibaseRepository, 
MediaWiki-extensions-WikibaseClient, Wikidata, wdwb-tech.

TASK DESCRIPTION
  Now that T243051: A query builder for MediaWiki core 
 is done, this extension should 
migrate away from IDatabase::select() to SelectQueryBuilder 
.
  
  It would improve readability of the code, avoids mistakes by passing the 
wrong order of arguments, etc.
  
  For more information check T243051 
 and its documentation 
.
  
  Note that query builder is a different paradigm and changes should not be 
one-to-one. For example, avoid using joinConds().

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

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

To: Ladsgroup
Cc: Aklapper, Ladsgroup, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, lucamauri, 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] T312349: Migrate usage of Database::select to SelectQueryBuilder in WikibaseLexeme

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Alright, thanks for clarifying :)

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Ladsgroup, Aklapper, Maintenance_bot, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, 
LawExplorer, _jensen, rosalieper, Bodhisattwa, Scott_WUaS, Izno, Wikidata-bugs, 
aude, Dinoguy1000, 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] T312349: Migrate usage of Database::select to SelectQueryBuilder in WikibaseLexeme

2022-07-07 Thread Ladsgroup
Ladsgroup closed this task as "Invalid".
Ladsgroup added a comment.


  select() is so common, I just created it for all deployed extensions and 
closing these ones as invalid.

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

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

To: Ladsgroup
Cc: Lucas_Werkmeister_WMDE, Ladsgroup, Aklapper, Maintenance_bot, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, 
LawExplorer, _jensen, rosalieper, Bodhisattwa, Scott_WUaS, Izno, Wikidata-bugs, 
aude, Dinoguy1000, 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] T312349: Migrate usage of Database::select to SelectQueryBuilder in WikibaseLexeme

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added subscribers: Ladsgroup, Lucas_Werkmeister_WMDE.
Lucas_Werkmeister_WMDE added a comment.


  I canā€™t actually find any calls of `select()` and related methods in 
WikibaseLexeme. (And I donā€™t find this implausible: the data access would be 
encapsulated in classes that probably live in Wikibase and MediaWiki core.) 
@Ladsgroup were these tasks created based on some codesearch or something else?

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Ladsgroup, Aklapper, Maintenance_bot, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, 
LawExplorer, _jensen, rosalieper, Bodhisattwa, Scott_WUaS, Izno, Wikidata-bugs, 
aude, Dinoguy1000, 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] T303831: Productionize Wikidata subgraph analysis

2022-07-07 Thread AKhatun_WMF
AKhatun_WMF added a comment.


  In T303831#8058159 , 
@EBernhardson wrote:
  
  > the airflow patch is deployed but i only turned on *_init dags and 
subgraph_mapping_weekly today (ran out of time, will do rest tomorrow).
  >
  > subgraph_mapping_weekly failed the first time through. I updated executor 
memory from 8g to 12g but the second execution is still failing. something is 
quite unbalanced about the topSubgraphItems, of the 8 shards they have inputs 
varying from 100MB to 450MB giving executions times of ~30s on the small ones 
and ~8m before the final one fails.
  >
  > Not specifically related to this patch, but i wonder if we could change up 
the `SparkUtils.saveTables`  method to somehow take parameters in the path to 
specify coalesce vs repartition and the number of partitions to save by, so we 
only have to update the airflow invocation and not the jar as well to test 
variations there.
  
  Should we have params called `coalesce`, and `repartition`, and have them 
default to false. And when true, use `num_partitions` to coalesce or 
repartition accordingly?

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

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

To: AKhatun_WMF
Cc: EBernhardson, dcausse, Gehel, JAllemandou, Aklapper, AKhatun_WMF, 
Hellket777, Astuthiodit_1, AWesterinen, 786, Biggs657, karapayneWMDE, 
Invadibot, MPhamWMF, maantietaja, Juan90264, Alter-paule, Beast1978, CBogen, 
ItamarWMDE, 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, Neuronton, 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] T312097: [EPIC] Enable language code mul on Wikidata

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, 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] T312105: Hide fallback indication when falling back to language code mul on Wikidata

2022-07-07 Thread Manuel
Manuel added a parent task: T312511: Deploy initial release version of mul 
language code to Wikidata.

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

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

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, 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] T312511: Deploy initial release version of mul language code to Wikidata

2022-07-07 Thread Manuel
Manuel added a subtask: T312105: Hide fallback indication when falling back to 
language code mul on Wikidata.

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

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

To: Manuel
Cc: Aklapper, ChristianKl, Lydia_Pintscher, Amire80, jhsoby, Mbch331, Nikki, 
Shushugah, Epidosis, Ainali, So9q, Lucas_Werkmeister_WMDE, Moebeus, Ash_Crow, 
Mahir256, Esc3300, William_Avery, Winston_Sung, Abbe98, Naseweis520, dcausse, 
Manuel, mrephabricator, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312097: [EPIC] Enable language code mul on Wikidata

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, 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] T312511: Deploy initial release version of mul language code to Wikidata

2022-07-07 Thread Manuel
Manuel created this task.
Manuel added projects: Language codes, Wikidata, Wikidata-Campsite (Team A 
Hearth šŸ°šŸ”„).

TASK DESCRIPTION
  **Notes:**
  
  **Acceptance criteria:**
  
  [ ]
  
  **Open questions:**
  
  - As currently implemented `mul` will decrease the user experience for some 
(we not follow the personal fallback chain for the collapsed languages). Is 
this a problem in practice? If yes, would adding the scripture to the language 
code (e.g. `mul-latin`) help? How would we then need to model the fallback 
chain?
  
  **Community communication:** 
  Who we needs to keep in the loop and in what way: 
  Who this could be interesting for and in what way:
  
  **Original:**

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

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

To: Manuel
Cc: Aklapper, ChristianKl, Lydia_Pintscher, Amire80, jhsoby, Mbch331, Nikki, 
Shushugah, Epidosis, Ainali, So9q, Lucas_Werkmeister_WMDE, Moebeus, Ash_Crow, 
Mahir256, Esc3300, William_Avery, Winston_Sung, Abbe98, Naseweis520, dcausse, 
Manuel, mrephabricator, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE claimed this task.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Maintenance_bot, Hellket777, Astuthiodit_1, 786, Biggs657, 
karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, 
ItamarWMDE, Un1tY, Akuckartz, Hook696, darthmon_wmde, Eihel, Kent7301, 
joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Agabi10, Neuronton, 
Scott_WUaS, Izno, abian, Wikidata-bugs, aude, Dinoguy1000, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread gerritbot
gerritbot added a project: Patch-For-Review.

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

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

To: gerritbot
Cc: Aklapper, Maintenance_bot, Hellket777, Astuthiodit_1, 786, Biggs657, 
karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, 
ItamarWMDE, Un1tY, Akuckartz, Hook696, darthmon_wmde, Eihel, Kent7301, 
joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Agabi10, Neuronton, 
Scott_WUaS, Izno, abian, Wikidata-bugs, aude, Dinoguy1000, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread gerritbot
gerritbot added a comment.


  Change 811873 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/WikibaseQualityConstraints@master] Use 
SelectQueryBuilder
  
  https://gerrit.wikimedia.org/r/811873

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

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

To: gerritbot
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Eihel, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, LawExplorer, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Izno, abian, Wikidata-bugs, aude, 
Dinoguy1000, 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] T312381: Migrate usage of Database::select to SelectQueryBuilder in WikidataPageBanner

2022-07-07 Thread Ladsgroup
Ladsgroup added a project: Wikidata-Page-Banner.

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

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

To: Ladsgroup
Cc: Maintenance_bot, Aklapper, darthmon_wmde, Izno, Wikidata-bugs, Dinoguy1000, 
Lydia_Pintscher, 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] T312510: Migrate usage of Database::select to SelectQueryBuilder in Wikibase

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  Now that T243051: A query builder for MediaWiki core 
 is done, this extension should 
migrate away from IDatabase::select() to SelectQueryBuilder 
.
  
  It would improve readability of the code, avoids mistakes by passing the 
wrong order of arguments, etc.
  
  For more information check T243051 
 and its documentation 
.
  
  Note that query builder is a different paradigm and changes should not be 
one-to-one. For example, avoid using joinConds().

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

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

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, 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] T312228: Hide "All entered languages" in mobile termbox if there are no additional languages to show

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Manuel, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, 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] T312470: Migrate usage of Database::select to SelectQueryBuilder in WikibaseMediaInfo

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Maintenance_bot, Aklapper, Astuthiodit_1, karapayneWMDE, toberto, 
Invadibot, maantietaja, CBogen, ItamarWMDE, Akuckartz, darthmon_wmde, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, Ricordisamoa, 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] T304976: Investigate how to make WDQS label service fall back to mul labels

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Manuel, dcausse, Aklapper, Lucas_Werkmeister_WMDE, mrephabricator, 
Astuthiodit_1, AWesterinen, karapayneWMDE, Invadibot, MPhamWMF, maantietaja, 
CBogen, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, EBjune, merbst, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Jonas, Xmlizer, Nikki, jkroll, Wikidata-bugs, Jdouglas, 
aude, Tobias1984, Manybubbles, 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] T312401: Migrate usage of Database::select to SelectQueryBuilder in WikibaseCirrusSearch

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
MPhamWMF, maantietaja, Wilmanbeno, CBogen, ItamarWMDE, Akuckartz, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Izno, Wikidata-bugs, aude, 
Dinoguy1000, jayvdb, Mbch331, Jay8g, jeremyb
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312385: Migrate usage of Database::select to SelectQueryBuilder in WikibaseLexemeCirrusSearch

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech, Wikidata 
Lexicographical data.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Maintenance_bot, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, 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] T312363: Migrate usage of Database::select to SelectQueryBuilder in WikibaseQualityConstraints

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech, 
Wikibase-Quality-Constraints.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Eihel, Nandana, Lahi, Gq86, 
Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, Esc3300, LawExplorer, 
_jensen, rosalieper, Agabi10, Scott_WUaS, Izno, abian, Wikidata-bugs, aude, 
Dinoguy1000, 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] T312349: Migrate usage of Database::select to SelectQueryBuilder in WikibaseLexeme

2022-07-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech, Wikidata 
Lexicographical data.

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

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

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Maintenance_bot, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, 
GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, 
Bodhisattwa, Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, 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] T135871: Language fallback not applied to item/property heading after editing terms

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Manuel, Jan_Dittrich, thiemowmde, Lydia_Pintscher, daniel, Glorian_Yapinus, 
Nikki, Aklapper, Zppix, adrianheine, Astuthiodit_1, Trngsh15, karapayneWMDE, 
Invadibot, Mengs21, maantietaja, EgbeRef, ItamarWMDE, Vaibhav0199, Akuckartz, 
Tinzawoo533, Onmir, DannyS712, Nandana, lucamauri, Mh-3110, Yahya, 
Amorymeltzer, Lahi, Gq86, GoranSMilovanovic, Jayprakash12345, QZanden, 
enigmaeth, rohitt, LawExplorer, _jensen, rosalieper, Scott_WUaS, Dixtosa, 
Wikidata-bugs, aude, Dinoguy1000, 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] T311626: Language name of mul language (ā€œmultiple languagesā€) inconsistently used in termboxes

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Manuel, Lydia_Pintscher, Aklapper, Lucas_Werkmeister_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, 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] T311617: Wikibase classic termbox (entity terms view) sometimes reorders user babel languages

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Manuel, Lydia_Pintscher, Aklapper, Lucas_Werkmeister_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, 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] T312097: [EPIC] Enable language code mul on Wikidata

2022-07-07 Thread Manuel
Manuel updated the task description.

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

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

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, 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