Background

This notebook uses the GitHub GraphQL API to report Kubeflow open PRs whcih needs attention according to:

  • The time interval they have been open,
  • Last time they have been edited or updated.

It then list the following PRs:

  • PRs whcih need autors' attention
  • PRs which need editors' attention
  • PRs whhch have been quiet for over a week
  • PRs whcih have been open for over a mounth

Github Setup

You will need a GitHub personal access token in order to use the GitHub API

  • See these instructions for creating a personal access token
  • Set the environment variable GITHUB_TOKEN to pass your token to the code

In [89]:
import argparse
import datetime
from dateutil import parser as date_parser
import json
import logging
import numpy as np
import os
import pandas as pd
import pprint
import requests
from pandas.io.json import json_normalize

In [57]:
query_template="""{{
  search(query: "org:kubeflow is:pr is:open created:>2019-01-01", type: ISSUE, first: 100, {cursor}) {{
    edges {{
      node {{
        ... on PullRequest {{
          title
                    url
                    number
                    createdAt
                    lastEditedAt
                    updatedAt
                    editor {{
                      login
                    }}
                    author {{
                      login
                    }}
        }}
      }}
     }}
     pageInfo {{
                    endCursor
                    hasNextPage
    }}
      
  }}
}}"""

In [59]:
headers = {"Authorization": "Bearer {0}".format(os.getenv("GITHUB_TOKEN"))}

In [60]:
search_cursor = None
hasNextPage = True
df = pd.DataFrame()
cursor_text = ""
pageno=0
while hasNextPage:
    print('getting data fo page ',pageno)
    if search_cursor:
          cursor_text = "after:\"{0}\"".format(search_cursor)
    query = query_template.format(cursor=cursor_text)
    request = requests.post('https://api.github.com/graphql', json={'query': query}, headers=headers)
    print('request code ',request.status_code)
    rtext=request.text
    rdict=json.loads(rtext)
    prnodes = rdict["data"]["search"]["edges"]
    search_cursor = rdict["data"]["search"]["pageInfo"]["endCursor"]
    hasNextPage = rdict["data"]["search"]["pageInfo"]["hasNextPage"]
    print('nomer of nodes found in this page', len(prnodes))
    rawdf = pd.DataFrame.from_dict(prnodes)[['node']]
    newdf = pd.DataFrame.from_records(rawdf['node'])  #decompose column node to multiple columns
    df  =  pd.concat([df,newdf])
    pageno = pageno +1


('getting data fo page ', 0)
('request code ', 200)
('nomer of nodes found in this page', 100)
('getting data fo page ', 1)
('request code ', 200)
('nomer of nodes found in this page', 59)

In [61]:
df['createdAt'] = df['createdAt'].apply(lambda x: pd.Timestamp(x))
df['lastEditedAt'] = df['lastEditedAt'].apply(lambda x: pd.Timestamp(x))
df['updatedAt'] = df['updatedAt'].apply(lambda x: pd.Timestamp(x))

In [62]:
def getTimeDeltaFromNowH(x):
    td = pd.Timestamp.utcnow() - pd.Timestamp(x)
    days, hours, minutes = td.days, td.seconds // 3600, td.seconds % 3600 / 60.0
    return days*24 + hours

In [63]:
df['creationAge'] = df['createdAt'].apply(lambda x: getTimeDeltaFromNowH(x))
df['lastEditAge'] = df['lastEditedAt'].apply(lambda x: getTimeDeltaFromNowH(x))
df['updateAge'] = df['updatedAt'].apply(lambda x: getTimeDeltaFromNowH(x))

Distribution of PRs' open time (age)


In [87]:
hist = df.hist(column='creationAge', bins=200,figsize=(12,8), color='#86bf91', zorder=2, rwidth=0.9)
ax = hist[0]
for x in ax:
    x.set_xlabel("Age in hours")
    x.set_ylabel("total number of PRs")


PRs which need attention

A huristic solution is to list prs which have either of the following conditions:

  • No activity is recoreded for the pr for a long time (i.e., both updateAge and lastEditedAge exceeds a threshold).
  • Has been open for a long time (i.e., creationAge exceeds a threshold)
  • Needs author's attention (i.e. it has been edited for a long time but has not been updated afterwards)
  • Needs editor's attention (i.e., it has been updated for a long time but has not been edited afterwards)

In [74]:
MAX_AGE = 24*30
MAX_QUIET_TIME = 7*24

In [75]:
needs_attention = df[(df.creationAge > MAX_AGE) |
                     ((df.updateAge > MAX_QUIET_TIME) & (df.lastEditAge > MAX_QUIET_TIME*1.0)) |
                     ((df.updateAge > MAX_QUIET_TIME) &  (df.lastEditAge>df.updateAge*1.0)) |
                     ((df.lastEditAge > MAX_QUIET_TIME*1.0) & (df.lastEditAge < df.updateAge*1.0))
                    ]
needs_attention


Out[75]:
author createdAt editor lastEditedAt number title updatedAt url creationAge lastEditAge updateAge
68 {u'login': u'jeremiahkellick'} 2019-05-29 15:53:23+00:00 {u'login': u'jlewi'} 2019-05-29 15:53:29+00:00 108 Add jeremiahkellick to org.yaml 2019-05-29 16:56:10+00:00 https://github.com/kubeflow/internal-acls/pull... 197 197.0 196
70 {u'login': u'ggaaooppeenngg'} 2019-05-28 04:23:09+00:00 {u'login': u'jlewi'} 2019-05-28 04:23:14+00:00 20 support frozen model 2019-05-28 04:23:23+00:00 https://github.com/kubeflow/batch-predict/pull/20 233 233.0 233
74 {u'login': u'aakashbajaj'} 2019-05-24 09:47:58+00:00 {u'login': u'jlewi'} 2019-05-24 09:48:05+00:00 1384 gcp cred bug fix for multiple credentials in s... 2019-05-24 10:07:10+00:00 https://github.com/kubeflow/pipelines/pull/1384 323 323.0 323
75 {u'login': u'gyliu513'} 2019-05-24 08:09:49+00:00 {u'login': u'jlewi'} 2019-05-24 08:09:58+00:00 586 WIP Do not use /tmp/katib as host path. 2019-05-29 03:02:45+00:00 https://github.com/kubeflow/katib/pull/586 325 325.0 210
80 {u'login': u'M00nF1sh'} 2019-05-22 23:28:30+00:00 {u'login': u'jlewi'} 2019-05-22 23:28:36+00:00 3340 templatize istio k8s version for aws 2019-05-23 18:45:23+00:00 https://github.com/kubeflow/kubeflow/pull/3340 358 358.0 338
81 {u'login': u'M00nF1sh'} 2019-05-22 22:32:49+00:00 {u'login': u'M00nF1sh'} 2019-05-22 22:35:54+00:00 3337 Update OWNERS file and make ingress configurab... 2019-05-29 23:15:34+00:00 https://github.com/kubeflow/kubeflow/pull/3337 359 358.0 190
83 {u'login': u'kkasravi'} 2019-05-18 14:47:09+00:00 {u'login': u'jlewi'} 2019-05-18 14:47:14+00:00 3311 add kkasravi to OWNERS 2019-05-18 14:47:23+00:00 https://github.com/kubeflow/kubeflow/pull/3311 462 462.0 462
85 {u'login': u'elikatsis'} 2019-05-16 13:49:06+00:00 {u'login': u'jlewi'} 2019-05-16 13:49:17+00:00 3294 Add verb "create" for Secrets to ClusterRole "... 2019-05-16 21:06:24+00:00 https://github.com/kubeflow/kubeflow/pull/3294 511 511.0 504
86 {u'login': u'chenhan1218'} 2019-05-16 10:17:15+00:00 {u'login': u'jlewi'} 2019-05-16 10:17:21+00:00 3290 fix #2863, postpone check kubeflow ready 2019-05-16 19:49:23+00:00 https://github.com/kubeflow/kubeflow/pull/3290 515 515.0 505
88 {u'login': u'ryandawsonuk'} 2019-05-16 08:29:16+00:00 {u'login': u'ryandawsonuk'} 2019-05-16 08:29:52+00:00 103 seldon org update 2019-05-16 08:29:52+00:00 https://github.com/kubeflow/internal-acls/pull... 517 517.0 517
89 {u'login': u'yanniszark'} 2019-05-15 17:43:21+00:00 {u'login': u'jlewi'} 2019-05-15 17:43:27+00:00 3278 basic-auth: make kflogin work with NodePort 2019-05-18 17:53:55+00:00 https://github.com/kubeflow/kubeflow/pull/3278 531 531.0 459
90 {u'login': u'ryandawsonuk'} 2019-05-15 17:18:21+00:00 {u'login': u'jlewi'} 2019-05-15 17:18:32+00:00 269 add rd@seldon.io to member_organizations.yaml 2019-05-16 05:09:11+00:00 https://github.com/kubeflow/community/pull/269 532 532.0 520
92 {u'login': u'johnugeorge'} 2019-05-14 12:53:32+00:00 {u'login': u'johnugeorge'} 2019-05-14 12:54:17+00:00 267 Update github_users.json to the latest 2019-05-14 12:54:17+00:00 https://github.com/kubeflow/community/pull/267 560 560.0 560
93 {u'login': u'gaocegege'} 2019-05-13 02:13:15+00:00 {u'login': u'jlewi'} 2019-05-13 02:13:20+00:00 500 WIP feat(suggestion): Define new API for sugge... 2019-05-13 05:59:01+00:00 https://github.com/kubeflow/katib/pull/500 595 595.0 591
94 {u'login': u'achalshant'} 2019-05-11 17:45:09+00:00 {u'login': u'jlewi'} 2019-05-11 17:45:15+00:00 498 Decoupling DB interface from katib manager 2019-05-27 18:16:21+00:00 https://github.com/kubeflow/katib/pull/498 627 627.0 243
95 {u'login': u'solovyevt'} 2019-05-10 11:15:12+00:00 {u'login': u'jlewi'} 2019-05-10 11:15:18+00:00 695 update Getting Started / Kubfelow on Kubernete... 2019-05-18 05:08:50+00:00 https://github.com/kubeflow/website/pull/695 658 658.0 472
96 {u'login': u'karthikv2k'} 2019-05-10 00:54:15+00:00 {u'login': u'jlewi'} 2019-05-10 00:54:19+00:00 241 PyTorch notebook examples 2019-05-10 01:11:21+00:00 https://github.com/kubeflow/fairing/pull/241 668 668.0 668
97 {u'login': u'rileyjbauer'} 2019-05-07 17:40:05+00:00 {u'login': u'jlewi'} 2019-05-07 17:40:13+00:00 1294 Correct input height 2019-05-22 20:24:38+00:00 https://github.com/kubeflow/pipelines/pull/1294 723 723.0 361
98 {u'login': u'yaronha'} 2019-05-07 13:59:51+00:00 {u'login': u'jlewi'} 2019-05-07 14:00:01+00:00 1293 add support for flexible config (via env var) ... 2019-06-05 21:38:03+00:00 https://github.com/kubeflow/pipelines/pull/1293 727 727.0 23
99 {u'login': u'Ark-kun'} 2019-05-02 21:26:09+00:00 {u'login': u'jlewi'} 2019-05-02 21:26:20+00:00 3179 Update Pipelines to version 0.1.18 (#3121) 2019-05-02 22:17:52+00:00 https://github.com/kubeflow/kubeflow/pull/3179 840 840.0 839
0 {u'login': u'cliveseldon'} 2019-04-30 18:49:30+00:00 {u'login': u'jlewi'} 2019-04-30 18:49:37+00:00 36 add seldon 2019-05-14 15:55:27+00:00 https://github.com/kubeflow/manifests/pull/36 890 890.0 557
1 {u'login': u'animeshsingh'} 2019-04-30 07:04:30+00:00 {u'login': u'animeshsingh'} 2019-04-30 07:19:09+00:00 1264 updating components and samples owners file 2019-05-03 05:13:38+00:00 https://github.com/kubeflow/pipelines/pull/1264 902 902.0 832
2 {u'login': u'holdenk'} 2019-04-29 11:31:03+00:00 {u'login': u'jlewi'} 2019-04-29 11:31:09+00:00 3137 [KUBEFLOW-3136] Fix OAUTH requirement in gke u... 2019-04-29 11:31:17+00:00 https://github.com/kubeflow/kubeflow/pull/3137 922 922.0 922
3 {u'login': u'jingzhang36'} 2019-04-25 22:16:11+00:00 {u'login': u'jlewi'} 2019-04-25 22:16:16+00:00 1237 Add a helper function to create tensorboard crd 2019-05-31 07:21:34+00:00 https://github.com/kubeflow/pipelines/pull/1237 1007 1007.0 158
4 {u'login': u'lluunn'} 2019-04-25 21:16:54+00:00 {u'login': u'jlewi'} 2019-04-25 21:17:06+00:00 3114 WIP don't review 2019-04-26 23:16:24+00:00 https://github.com/kubeflow/kubeflow/pull/3114 1008 1008.0 982
5 {u'login': u'rohithreddy'} 2019-04-23 22:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 22:23:33+00:00 3089 Add emacs package to the Jupyter Image 2019-04-24 02:06:01+00:00 https://github.com/kubeflow/kubeflow/pull/3089 1055 1055.0 1051
6 {u'login': u'rileyjbauer'} 2019-04-23 21:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 21:23:32+00:00 1208 [WIP] Initial attempt to migrate from react-sc... 2019-05-03 01:52:17+00:00 https://github.com/kubeflow/pipelines/pull/1208 1056 1056.0 835
7 {u'login': u'Ark-kun'} 2019-04-22 22:29:35+00:00 {u'login': u'jlewi'} 2019-04-22 22:29:45+00:00 1200 SDK - Improved test script compatibility with ... 2019-06-05 23:13:36+00:00 https://github.com/kubeflow/pipelines/pull/1200 1079 1079.0 22
8 {u'login': u'swiftdiaries'} 2019-04-19 18:59:56+00:00 {u'login': u'jlewi'} 2019-04-19 19:00:09+00:00 3060 kfctl go binary - kustomize e2e test 2019-06-06 01:45:36+00:00 https://github.com/kubeflow/kubeflow/pull/3060 1154 1154.0 19
9 {u'login': u'wukong1992'} 2019-04-18 06:40:38+00:00 {u'login': u'jlewi'} 2019-04-18 06:40:44+00:00 458 support request count 2019-05-27 04:14:53+00:00 https://github.com/kubeflow/katib/pull/458 1190 1190.0 257
... ... ... ... ... ... ... ... ... ... ... ...
29 {u'login': u'zionwu'} 2019-03-13 12:20:46+00:00 {u'login': u'jlewi'} 2019-03-13 12:20:52+00:00 959 Delete pod on lost node 2019-04-11 13:30:29+00:00 https://github.com/kubeflow/tf-operator/pull/959 2049 2049.0 1352
30 {u'login': u'dreamryx'} 2019-03-13 08:49:35+00:00 {u'login': u'jlewi'} 2019-03-13 08:49:40+00:00 430 update dockerfile for power build 2019-04-24 09:02:36+00:00 https://github.com/kubeflow/katib/pull/430 2052 2052.0 1044
31 {u'login': u'animeshsingh'} 2019-03-12 00:41:45+00:00 {u'login': u'jlewi'} 2019-03-12 00:41:50+00:00 71 Update org.yaml 2019-03-12 00:41:59+00:00 https://github.com/kubeflow/internal-acls/pull/71 2084 2084.0 2084
32 {u'login': u'avdaredevil'} 2019-03-07 09:39:43+00:00 {u'login': u'avdaredevil'} 2019-03-07 09:47:58+00:00 2650 [Windows] Windows Scripts for Setting up Kubeflow 2019-05-09 23:03:20+00:00 https://github.com/kubeflow/kubeflow/pull/2650 2195 2195.0 670
33 {u'login': u'IronPan'} 2019-03-06 00:39:35+00:00 {u'login': u'jlewi'} 2019-03-06 00:39:42+00:00 918 Add test suit to upgrade pipeline 2019-04-24 17:19:34+00:00 https://github.com/kubeflow/pipelines/pull/918 2228 2228.0 1036
34 {u'login': u'Ark-kun'} 2019-03-05 21:33:50+00:00 {u'login': u'IronPan'} 2019-03-05 21:33:58+00:00 912 [WIP]Improved the sample Keras classifier comp... 2019-03-07 07:59:06+00:00 https://github.com/kubeflow/pipelines/pull/912 2232 2232.0 2197
35 {u'login': u'lluunn'} 2019-03-04 21:47:17+00:00 {u'login': u'jlewi'} 2019-03-04 21:47:26+00:00 2616 WIP 2019-06-02 22:23:26+00:00 https://github.com/kubeflow/kubeflow/pull/2616 2255 2255.0 95
36 {u'login': u'toshiiw'} 2019-03-04 02:42:22+00:00 {u'login': u'jlewi'} 2019-03-04 02:42:27+00:00 417 Print verbose error when studyjob updates fail 2019-03-05 06:08:42+00:00 https://github.com/kubeflow/katib/pull/417 2274 2274.0 2247
37 {u'login': u'Ark-kun'} 2019-03-01 23:16:42+00:00 {u'login': u'Ark-kun'} 2019-03-02 08:44:49+00:00 898 Collecting coverage when running python tests 2019-04-25 00:56:00+00:00 https://github.com/kubeflow/pipelines/pull/898 2326 2316.0 1028
38 {u'login': u'toshiiw'} 2019-02-26 08:04:33+00:00 {u'login': u'jlewi'} 2019-02-26 08:04:38+00:00 411 Retry studyjobcontroller 2019-05-17 09:25:27+00:00 https://github.com/kubeflow/katib/pull/411 2413 2413.0 492
39 {u'login': u'knkski'} 2019-02-19 21:27:13+00:00 {u'login': u'jlewi'} 2019-02-19 21:27:22+00:00 2508 Update kubespawner property name 2019-04-25 05:02:36+00:00 https://github.com/kubeflow/kubeflow/pull/2508 2568 2568.0 1024
40 {u'login': u'jayunit100'} 2019-02-15 16:59:16+00:00 {u'login': u'jlewi'} 2019-02-15 16:59:28+00:00 385 Vendoring 2019-02-20 17:47:08+00:00 https://github.com/kubeflow/katib/pull/385 2668 2668.0 2547
41 {u'login': u'yehiyam'} 2019-02-07 10:33:40+00:00 {u'login': u'jlewi'} 2019-02-07 10:33:49+00:00 502 fix typo 2019-02-26 23:12:45+00:00 https://github.com/kubeflow/examples/pull/502 2867 2867.0 2398
42 {u'login': u'YujiOshima'} 2019-02-07 08:14:16+00:00 {u'login': u'jlewi'} 2019-02-07 08:14:22+00:00 362 DB: add studyjob table and extend worker table 2019-03-04 09:53:25+00:00 https://github.com/kubeflow/katib/pull/362 2869 2869.0 2267
43 {u'login': u'Ark-kun'} 2019-02-07 07:30:11+00:00 {u'login': u'Ark-kun'} 2019-05-17 01:16:28+00:00 791 SDK - Added support for raw input artifact arg... 2019-05-23 01:24:26+00:00 https://github.com/kubeflow/pipelines/pull/791 2870 500.0 356
44 {u'login': u'hongye-sun'} 2019-02-06 00:18:49+00:00 {u'login': u'jlewi'} 2019-02-06 00:18:54+00:00 787 Add GPU test back 2019-02-27 00:59:08+00:00 https://github.com/kubeflow/pipelines/pull/787 2901 2901.0 2396
45 {u'login': u'DmitryBe'} 2019-02-01 05:22:32+00:00 {u'login': u'jlewi'} 2019-02-01 05:22:36+00:00 766 Added AWS S3 support for storing artefacts. 2019-04-27 18:19:11+00:00 https://github.com/kubeflow/pipelines/pull/766 3016 3016.0 963
46 {u'login': u'DmitryBe'} 2019-02-01 05:18:20+00:00 {u'login': u'DmitryBe'} 2019-02-10 14:33:00+00:00 765 Added configArtifactRepository method into `sd... 2019-04-30 00:35:10+00:00 https://github.com/kubeflow/pipelines/pull/765 3016 2791.0 909
47 {u'login': u'toshiiw'} 2019-01-31 07:51:52+00:00 {u'login': u'jlewi'} 2019-01-31 07:51:57+00:00 357 DNM: check if kubeconfig is sane 2019-02-01 07:07:05+00:00 https://github.com/kubeflow/katib/pull/357 3037 3037.0 3014
48 {u'login': u'TimZaman'} 2019-01-31 00:37:31+00:00 {u'login': u'jlewi'} 2019-01-31 00:37:40+00:00 2354 Fix minikube setup script's df inference 2019-05-15 15:02:49+00:00 https://github.com/kubeflow/kubeflow/pull/2354 3044 3044.0 534
49 {u'login': u'YujiOshima'} 2019-01-30 02:59:51+00:00 {u'login': u'jlewi'} 2019-01-30 03:00:01+00:00 352 Manual suggest 2019-02-07 08:17:41+00:00 https://github.com/kubeflow/katib/pull/352 3066 3066.0 2869
50 {u'login': u'dsdinter'} 2019-01-27 18:37:42+00:00 {u'login': u'dsdinter'} 2019-05-05 23:01:29+00:00 490 [pytorch_mnist] Automate image build 2019-05-08 15:11:21+00:00 https://github.com/kubeflow/examples/pull/490 3122 766.0 702
51 {u'login': u'Ark-kun'} 2019-01-21 07:19:10+00:00 {u'login': u'Ark-kun'} 2019-01-26 01:19:56+00:00 713 SDK/Components - Refactoring: Improved contai... 2019-03-30 08:36:35+00:00 https://github.com/kubeflow/pipelines/pull/713 3278 3164.0 1644
52 {u'login': u'Ark-kun'} 2019-01-21 07:17:53+00:00 {u'login': u'Ark-kun'} 2019-01-25 21:37:51+00:00 712 SDK/Components - Only convert TaskSpec to Cont... 2019-03-30 08:38:57+00:00 https://github.com/kubeflow/pipelines/pull/712 3278 3167.0 1644
53 {u'login': u'Ark-kun'} 2019-01-18 02:09:34+00:00 {u'login': u'jlewi'} 2019-01-18 02:09:39+00:00 702 SDK/Component - Added the ComponentReference.s... 2019-03-06 21:50:37+00:00 https://github.com/kubeflow/pipelines/pull/702 3355 3355.0 2207
54 {u'login': u'govindKAG'} 2019-01-16 11:31:09+00:00 {u'login': u'jlewi'} 2019-01-16 11:31:14+00:00 481 reduced number of layers 2019-03-06 17:21:10+00:00 https://github.com/kubeflow/examples/pull/481 3394 3394.0 2212
55 {u'login': u'Ark-kun'} 2019-01-15 23:02:07+00:00 {u'login': u'jlewi'} 2019-01-15 23:02:13+00:00 688 SDK/Components - Renamed fileOutputs to unconf... 2019-01-21 07:14:25+00:00 https://github.com/kubeflow/pipelines/pull/688 3406 3406.0 3278
56 {u'login': u'Ark-kun'} 2019-01-11 19:58:00+00:00 {u'login': u'Ark-kun'} 2019-01-12 00:04:05+00:00 669 SDK/Components - Added Json Schema spec for t... 2019-05-21 23:19:57+00:00 https://github.com/kubeflow/pipelines/pull/669 3505 3501.0 382
57 {u'login': u'Ark-kun'} 2019-01-11 03:27:40+00:00 {u'login': u'jlewi'} 2019-01-11 03:27:45+00:00 668 SDK - Update minimum Python version to 3.6 2019-04-25 23:41:41+00:00 https://github.com/kubeflow/pipelines/pull/668 3522 3522.0 1005
58 {u'login': u'neuromage'} 2019-01-05 22:53:33+00:00 {u'login': u'jlewi'} 2019-01-05 22:53:38+00:00 640 [WIP] Run Bazel build/tests as part of Travis CI 2019-01-11 21:40:24+00:00 https://github.com/kubeflow/pipelines/pull/640 3646 3646.0 3503

79 rows × 11 columns

PRs which need authors' attentions


In [76]:
needs_attention[(needs_attention.updateAge > MAX_QUIET_TIME) &  (needs_attention.lastEditAge>needs_attention.updateAge*1.0)]


Out[76]:
author createdAt editor lastEditedAt number title updatedAt url creationAge lastEditAge updateAge
68 {u'login': u'jeremiahkellick'} 2019-05-29 15:53:23+00:00 {u'login': u'jlewi'} 2019-05-29 15:53:29+00:00 108 Add jeremiahkellick to org.yaml 2019-05-29 16:56:10+00:00 https://github.com/kubeflow/internal-acls/pull... 197 197.0 196
75 {u'login': u'gyliu513'} 2019-05-24 08:09:49+00:00 {u'login': u'jlewi'} 2019-05-24 08:09:58+00:00 586 WIP Do not use /tmp/katib as host path. 2019-05-29 03:02:45+00:00 https://github.com/kubeflow/katib/pull/586 325 325.0 210
80 {u'login': u'M00nF1sh'} 2019-05-22 23:28:30+00:00 {u'login': u'jlewi'} 2019-05-22 23:28:36+00:00 3340 templatize istio k8s version for aws 2019-05-23 18:45:23+00:00 https://github.com/kubeflow/kubeflow/pull/3340 358 358.0 338
81 {u'login': u'M00nF1sh'} 2019-05-22 22:32:49+00:00 {u'login': u'M00nF1sh'} 2019-05-22 22:35:54+00:00 3337 Update OWNERS file and make ingress configurab... 2019-05-29 23:15:34+00:00 https://github.com/kubeflow/kubeflow/pull/3337 359 358.0 190
85 {u'login': u'elikatsis'} 2019-05-16 13:49:06+00:00 {u'login': u'jlewi'} 2019-05-16 13:49:17+00:00 3294 Add verb "create" for Secrets to ClusterRole "... 2019-05-16 21:06:24+00:00 https://github.com/kubeflow/kubeflow/pull/3294 511 511.0 504
86 {u'login': u'chenhan1218'} 2019-05-16 10:17:15+00:00 {u'login': u'jlewi'} 2019-05-16 10:17:21+00:00 3290 fix #2863, postpone check kubeflow ready 2019-05-16 19:49:23+00:00 https://github.com/kubeflow/kubeflow/pull/3290 515 515.0 505
89 {u'login': u'yanniszark'} 2019-05-15 17:43:21+00:00 {u'login': u'jlewi'} 2019-05-15 17:43:27+00:00 3278 basic-auth: make kflogin work with NodePort 2019-05-18 17:53:55+00:00 https://github.com/kubeflow/kubeflow/pull/3278 531 531.0 459
90 {u'login': u'ryandawsonuk'} 2019-05-15 17:18:21+00:00 {u'login': u'jlewi'} 2019-05-15 17:18:32+00:00 269 add rd@seldon.io to member_organizations.yaml 2019-05-16 05:09:11+00:00 https://github.com/kubeflow/community/pull/269 532 532.0 520
93 {u'login': u'gaocegege'} 2019-05-13 02:13:15+00:00 {u'login': u'jlewi'} 2019-05-13 02:13:20+00:00 500 WIP feat(suggestion): Define new API for sugge... 2019-05-13 05:59:01+00:00 https://github.com/kubeflow/katib/pull/500 595 595.0 591
94 {u'login': u'achalshant'} 2019-05-11 17:45:09+00:00 {u'login': u'jlewi'} 2019-05-11 17:45:15+00:00 498 Decoupling DB interface from katib manager 2019-05-27 18:16:21+00:00 https://github.com/kubeflow/katib/pull/498 627 627.0 243
95 {u'login': u'solovyevt'} 2019-05-10 11:15:12+00:00 {u'login': u'jlewi'} 2019-05-10 11:15:18+00:00 695 update Getting Started / Kubfelow on Kubernete... 2019-05-18 05:08:50+00:00 https://github.com/kubeflow/website/pull/695 658 658.0 472
97 {u'login': u'rileyjbauer'} 2019-05-07 17:40:05+00:00 {u'login': u'jlewi'} 2019-05-07 17:40:13+00:00 1294 Correct input height 2019-05-22 20:24:38+00:00 https://github.com/kubeflow/pipelines/pull/1294 723 723.0 361
99 {u'login': u'Ark-kun'} 2019-05-02 21:26:09+00:00 {u'login': u'jlewi'} 2019-05-02 21:26:20+00:00 3179 Update Pipelines to version 0.1.18 (#3121) 2019-05-02 22:17:52+00:00 https://github.com/kubeflow/kubeflow/pull/3179 840 840.0 839
0 {u'login': u'cliveseldon'} 2019-04-30 18:49:30+00:00 {u'login': u'jlewi'} 2019-04-30 18:49:37+00:00 36 add seldon 2019-05-14 15:55:27+00:00 https://github.com/kubeflow/manifests/pull/36 890 890.0 557
1 {u'login': u'animeshsingh'} 2019-04-30 07:04:30+00:00 {u'login': u'animeshsingh'} 2019-04-30 07:19:09+00:00 1264 updating components and samples owners file 2019-05-03 05:13:38+00:00 https://github.com/kubeflow/pipelines/pull/1264 902 902.0 832
4 {u'login': u'lluunn'} 2019-04-25 21:16:54+00:00 {u'login': u'jlewi'} 2019-04-25 21:17:06+00:00 3114 WIP don't review 2019-04-26 23:16:24+00:00 https://github.com/kubeflow/kubeflow/pull/3114 1008 1008.0 982
5 {u'login': u'rohithreddy'} 2019-04-23 22:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 22:23:33+00:00 3089 Add emacs package to the Jupyter Image 2019-04-24 02:06:01+00:00 https://github.com/kubeflow/kubeflow/pull/3089 1055 1055.0 1051
6 {u'login': u'rileyjbauer'} 2019-04-23 21:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 21:23:32+00:00 1208 [WIP] Initial attempt to migrate from react-sc... 2019-05-03 01:52:17+00:00 https://github.com/kubeflow/pipelines/pull/1208 1056 1056.0 835
9 {u'login': u'wukong1992'} 2019-04-18 06:40:38+00:00 {u'login': u'jlewi'} 2019-04-18 06:40:44+00:00 458 support request count 2019-05-27 04:14:53+00:00 https://github.com/kubeflow/katib/pull/458 1190 1190.0 257
12 {u'login': u'royxue'} 2019-04-17 09:01:29+00:00 {u'login': u'jlewi'} 2019-04-17 09:01:38+00:00 3040 Add KUBEFLOW_KS_API_SPEC env variable 2019-04-18 09:21:32+00:00 https://github.com/kubeflow/kubeflow/pull/3040 1212 1212.0 1188
13 {u'login': u'stpabhi'} 2019-04-17 05:58:06+00:00 {u'login': u'jlewi'} 2019-04-17 05:58:15+00:00 3039 Update profile readme according to golang prof... 2019-05-19 00:52:06+00:00 https://github.com/kubeflow/kubeflow/pull/3039 1215 1215.0 452
14 {u'login': u'mnmainguy'} 2019-04-17 00:54:15+00:00 {u'login': u'jlewi'} 2019-04-17 00:54:20+00:00 543 Enhanced readme for MNIST example to include w... 2019-04-18 22:38:37+00:00 https://github.com/kubeflow/examples/pull/543 1220 1220.0 1174
15 {u'login': u'animeshsingh'} 2019-04-16 02:47:59+00:00 {u'login': u'jlewi'} 2019-04-16 02:48:08+00:00 12 adding animeshsingh as reviewer 2019-04-17 01:44:39+00:00 https://github.com/kubeflow/metadata/pull/12 1242 1242.0 1219
17 {u'login': u'hamelsmu'} 2019-04-13 20:08:28+00:00 {u'login': u'jlewi'} 2019-04-13 20:08:34+00:00 256 Patch 3 2019-04-13 20:50:48+00:00 https://github.com/kubeflow/community/pull/256 1297 1297.0 1296
18 {u'login': u'Ark-kun'} 2019-04-11 22:46:27+00:00 {u'login': u'jlewi'} 2019-04-11 22:46:32+00:00 1145 [WIP]Reduce noise in Prow tests 2019-04-23 21:04:31+00:00 https://github.com/kubeflow/pipelines/pull/1145 1342 1342.0 1056
19 {u'login': u'mrkm4ntr'} 2019-04-10 05:34:41+00:00 {u'login': u'jlewi'} 2019-04-10 05:34:46+00:00 2987 Add model status endpoint to http-proxy 2019-04-12 02:15:46+00:00 https://github.com/kubeflow/kubeflow/pull/2987 1384 1384.0 1339
20 {u'login': u'Ark-kun'} 2019-04-10 01:41:04+00:00 {u'login': u'jlewi'} 2019-04-10 01:41:09+00:00 1125 Preserving component spec on ContainerOp 2019-05-03 20:16:12+00:00 https://github.com/kubeflow/pipelines/pull/1125 1387 1387.0 817
24 {u'login': u'Akado2009'} 2019-03-26 03:28:20+00:00 {u'login': u'Akado2009'} 2019-03-27 01:08:02+00:00 438 WIP: New UI 2019-04-25 23:44:58+00:00 https://github.com/kubeflow/katib/pull/438 1746 1724.0 1005
27 {u'login': u'IronPan'} 2019-03-20 17:43:22+00:00 {u'login': u'jlewi'} 2019-03-20 17:43:33+00:00 2746 add proxy component to ksonnet registry 2019-05-16 03:19:38+00:00 https://github.com/kubeflow/kubeflow/pull/2746 1875 1875.0 522
28 {u'login': u'jdplatt'} 2019-03-16 19:59:45+00:00 {u'login': u'jlewi'} 2019-03-16 19:59:51+00:00 435 Python migration 2019-05-14 08:00:44+00:00 https://github.com/kubeflow/katib/pull/435 1969 1969.0 565
29 {u'login': u'zionwu'} 2019-03-13 12:20:46+00:00 {u'login': u'jlewi'} 2019-03-13 12:20:52+00:00 959 Delete pod on lost node 2019-04-11 13:30:29+00:00 https://github.com/kubeflow/tf-operator/pull/959 2049 2049.0 1352
30 {u'login': u'dreamryx'} 2019-03-13 08:49:35+00:00 {u'login': u'jlewi'} 2019-03-13 08:49:40+00:00 430 update dockerfile for power build 2019-04-24 09:02:36+00:00 https://github.com/kubeflow/katib/pull/430 2052 2052.0 1044
32 {u'login': u'avdaredevil'} 2019-03-07 09:39:43+00:00 {u'login': u'avdaredevil'} 2019-03-07 09:47:58+00:00 2650 [Windows] Windows Scripts for Setting up Kubeflow 2019-05-09 23:03:20+00:00 https://github.com/kubeflow/kubeflow/pull/2650 2195 2195.0 670
33 {u'login': u'IronPan'} 2019-03-06 00:39:35+00:00 {u'login': u'jlewi'} 2019-03-06 00:39:42+00:00 918 Add test suit to upgrade pipeline 2019-04-24 17:19:34+00:00 https://github.com/kubeflow/pipelines/pull/918 2228 2228.0 1036
34 {u'login': u'Ark-kun'} 2019-03-05 21:33:50+00:00 {u'login': u'IronPan'} 2019-03-05 21:33:58+00:00 912 [WIP]Improved the sample Keras classifier comp... 2019-03-07 07:59:06+00:00 https://github.com/kubeflow/pipelines/pull/912 2232 2232.0 2197
36 {u'login': u'toshiiw'} 2019-03-04 02:42:22+00:00 {u'login': u'jlewi'} 2019-03-04 02:42:27+00:00 417 Print verbose error when studyjob updates fail 2019-03-05 06:08:42+00:00 https://github.com/kubeflow/katib/pull/417 2274 2274.0 2247
37 {u'login': u'Ark-kun'} 2019-03-01 23:16:42+00:00 {u'login': u'Ark-kun'} 2019-03-02 08:44:49+00:00 898 Collecting coverage when running python tests 2019-04-25 00:56:00+00:00 https://github.com/kubeflow/pipelines/pull/898 2326 2316.0 1028
38 {u'login': u'toshiiw'} 2019-02-26 08:04:33+00:00 {u'login': u'jlewi'} 2019-02-26 08:04:38+00:00 411 Retry studyjobcontroller 2019-05-17 09:25:27+00:00 https://github.com/kubeflow/katib/pull/411 2413 2413.0 492
39 {u'login': u'knkski'} 2019-02-19 21:27:13+00:00 {u'login': u'jlewi'} 2019-02-19 21:27:22+00:00 2508 Update kubespawner property name 2019-04-25 05:02:36+00:00 https://github.com/kubeflow/kubeflow/pull/2508 2568 2568.0 1024
40 {u'login': u'jayunit100'} 2019-02-15 16:59:16+00:00 {u'login': u'jlewi'} 2019-02-15 16:59:28+00:00 385 Vendoring 2019-02-20 17:47:08+00:00 https://github.com/kubeflow/katib/pull/385 2668 2668.0 2547
41 {u'login': u'yehiyam'} 2019-02-07 10:33:40+00:00 {u'login': u'jlewi'} 2019-02-07 10:33:49+00:00 502 fix typo 2019-02-26 23:12:45+00:00 https://github.com/kubeflow/examples/pull/502 2867 2867.0 2398
42 {u'login': u'YujiOshima'} 2019-02-07 08:14:16+00:00 {u'login': u'jlewi'} 2019-02-07 08:14:22+00:00 362 DB: add studyjob table and extend worker table 2019-03-04 09:53:25+00:00 https://github.com/kubeflow/katib/pull/362 2869 2869.0 2267
43 {u'login': u'Ark-kun'} 2019-02-07 07:30:11+00:00 {u'login': u'Ark-kun'} 2019-05-17 01:16:28+00:00 791 SDK - Added support for raw input artifact arg... 2019-05-23 01:24:26+00:00 https://github.com/kubeflow/pipelines/pull/791 2870 500.0 356
44 {u'login': u'hongye-sun'} 2019-02-06 00:18:49+00:00 {u'login': u'jlewi'} 2019-02-06 00:18:54+00:00 787 Add GPU test back 2019-02-27 00:59:08+00:00 https://github.com/kubeflow/pipelines/pull/787 2901 2901.0 2396
45 {u'login': u'DmitryBe'} 2019-02-01 05:22:32+00:00 {u'login': u'jlewi'} 2019-02-01 05:22:36+00:00 766 Added AWS S3 support for storing artefacts. 2019-04-27 18:19:11+00:00 https://github.com/kubeflow/pipelines/pull/766 3016 3016.0 963
46 {u'login': u'DmitryBe'} 2019-02-01 05:18:20+00:00 {u'login': u'DmitryBe'} 2019-02-10 14:33:00+00:00 765 Added configArtifactRepository method into `sd... 2019-04-30 00:35:10+00:00 https://github.com/kubeflow/pipelines/pull/765 3016 2791.0 909
47 {u'login': u'toshiiw'} 2019-01-31 07:51:52+00:00 {u'login': u'jlewi'} 2019-01-31 07:51:57+00:00 357 DNM: check if kubeconfig is sane 2019-02-01 07:07:05+00:00 https://github.com/kubeflow/katib/pull/357 3037 3037.0 3014
48 {u'login': u'TimZaman'} 2019-01-31 00:37:31+00:00 {u'login': u'jlewi'} 2019-01-31 00:37:40+00:00 2354 Fix minikube setup script's df inference 2019-05-15 15:02:49+00:00 https://github.com/kubeflow/kubeflow/pull/2354 3044 3044.0 534
49 {u'login': u'YujiOshima'} 2019-01-30 02:59:51+00:00 {u'login': u'jlewi'} 2019-01-30 03:00:01+00:00 352 Manual suggest 2019-02-07 08:17:41+00:00 https://github.com/kubeflow/katib/pull/352 3066 3066.0 2869
50 {u'login': u'dsdinter'} 2019-01-27 18:37:42+00:00 {u'login': u'dsdinter'} 2019-05-05 23:01:29+00:00 490 [pytorch_mnist] Automate image build 2019-05-08 15:11:21+00:00 https://github.com/kubeflow/examples/pull/490 3122 766.0 702
51 {u'login': u'Ark-kun'} 2019-01-21 07:19:10+00:00 {u'login': u'Ark-kun'} 2019-01-26 01:19:56+00:00 713 SDK/Components - Refactoring: Improved contai... 2019-03-30 08:36:35+00:00 https://github.com/kubeflow/pipelines/pull/713 3278 3164.0 1644
52 {u'login': u'Ark-kun'} 2019-01-21 07:17:53+00:00 {u'login': u'Ark-kun'} 2019-01-25 21:37:51+00:00 712 SDK/Components - Only convert TaskSpec to Cont... 2019-03-30 08:38:57+00:00 https://github.com/kubeflow/pipelines/pull/712 3278 3167.0 1644
53 {u'login': u'Ark-kun'} 2019-01-18 02:09:34+00:00 {u'login': u'jlewi'} 2019-01-18 02:09:39+00:00 702 SDK/Component - Added the ComponentReference.s... 2019-03-06 21:50:37+00:00 https://github.com/kubeflow/pipelines/pull/702 3355 3355.0 2207
54 {u'login': u'govindKAG'} 2019-01-16 11:31:09+00:00 {u'login': u'jlewi'} 2019-01-16 11:31:14+00:00 481 reduced number of layers 2019-03-06 17:21:10+00:00 https://github.com/kubeflow/examples/pull/481 3394 3394.0 2212
55 {u'login': u'Ark-kun'} 2019-01-15 23:02:07+00:00 {u'login': u'jlewi'} 2019-01-15 23:02:13+00:00 688 SDK/Components - Renamed fileOutputs to unconf... 2019-01-21 07:14:25+00:00 https://github.com/kubeflow/pipelines/pull/688 3406 3406.0 3278
56 {u'login': u'Ark-kun'} 2019-01-11 19:58:00+00:00 {u'login': u'Ark-kun'} 2019-01-12 00:04:05+00:00 669 SDK/Components - Added Json Schema spec for t... 2019-05-21 23:19:57+00:00 https://github.com/kubeflow/pipelines/pull/669 3505 3501.0 382
57 {u'login': u'Ark-kun'} 2019-01-11 03:27:40+00:00 {u'login': u'jlewi'} 2019-01-11 03:27:45+00:00 668 SDK - Update minimum Python version to 3.6 2019-04-25 23:41:41+00:00 https://github.com/kubeflow/pipelines/pull/668 3522 3522.0 1005
58 {u'login': u'neuromage'} 2019-01-05 22:53:33+00:00 {u'login': u'jlewi'} 2019-01-05 22:53:38+00:00 640 [WIP] Run Bazel build/tests as part of Travis CI 2019-01-11 21:40:24+00:00 https://github.com/kubeflow/pipelines/pull/640 3646 3646.0 3503

PRs which need editors' attentions


In [77]:
needs_attention[(needs_attention.lastEditAge > MAX_QUIET_TIME*1.0) &  (needs_attention.lastEditAge<needs_attention.updateAge*1.0)]


Out[77]:
author createdAt editor lastEditedAt number title updatedAt url creationAge lastEditAge updateAge

PRs whcih have been quiet for over a week


In [78]:
needs_attention[(needs_attention.lastEditAge > MAX_QUIET_TIME*1.0) &  (needs_attention.updateAge > MAX_QUIET_TIME)]


Out[78]:
author createdAt editor lastEditedAt number title updatedAt url creationAge lastEditAge updateAge
68 {u'login': u'jeremiahkellick'} 2019-05-29 15:53:23+00:00 {u'login': u'jlewi'} 2019-05-29 15:53:29+00:00 108 Add jeremiahkellick to org.yaml 2019-05-29 16:56:10+00:00 https://github.com/kubeflow/internal-acls/pull... 197 197.0 196
70 {u'login': u'ggaaooppeenngg'} 2019-05-28 04:23:09+00:00 {u'login': u'jlewi'} 2019-05-28 04:23:14+00:00 20 support frozen model 2019-05-28 04:23:23+00:00 https://github.com/kubeflow/batch-predict/pull/20 233 233.0 233
74 {u'login': u'aakashbajaj'} 2019-05-24 09:47:58+00:00 {u'login': u'jlewi'} 2019-05-24 09:48:05+00:00 1384 gcp cred bug fix for multiple credentials in s... 2019-05-24 10:07:10+00:00 https://github.com/kubeflow/pipelines/pull/1384 323 323.0 323
75 {u'login': u'gyliu513'} 2019-05-24 08:09:49+00:00 {u'login': u'jlewi'} 2019-05-24 08:09:58+00:00 586 WIP Do not use /tmp/katib as host path. 2019-05-29 03:02:45+00:00 https://github.com/kubeflow/katib/pull/586 325 325.0 210
80 {u'login': u'M00nF1sh'} 2019-05-22 23:28:30+00:00 {u'login': u'jlewi'} 2019-05-22 23:28:36+00:00 3340 templatize istio k8s version for aws 2019-05-23 18:45:23+00:00 https://github.com/kubeflow/kubeflow/pull/3340 358 358.0 338
81 {u'login': u'M00nF1sh'} 2019-05-22 22:32:49+00:00 {u'login': u'M00nF1sh'} 2019-05-22 22:35:54+00:00 3337 Update OWNERS file and make ingress configurab... 2019-05-29 23:15:34+00:00 https://github.com/kubeflow/kubeflow/pull/3337 359 358.0 190
83 {u'login': u'kkasravi'} 2019-05-18 14:47:09+00:00 {u'login': u'jlewi'} 2019-05-18 14:47:14+00:00 3311 add kkasravi to OWNERS 2019-05-18 14:47:23+00:00 https://github.com/kubeflow/kubeflow/pull/3311 462 462.0 462
85 {u'login': u'elikatsis'} 2019-05-16 13:49:06+00:00 {u'login': u'jlewi'} 2019-05-16 13:49:17+00:00 3294 Add verb "create" for Secrets to ClusterRole "... 2019-05-16 21:06:24+00:00 https://github.com/kubeflow/kubeflow/pull/3294 511 511.0 504
86 {u'login': u'chenhan1218'} 2019-05-16 10:17:15+00:00 {u'login': u'jlewi'} 2019-05-16 10:17:21+00:00 3290 fix #2863, postpone check kubeflow ready 2019-05-16 19:49:23+00:00 https://github.com/kubeflow/kubeflow/pull/3290 515 515.0 505
88 {u'login': u'ryandawsonuk'} 2019-05-16 08:29:16+00:00 {u'login': u'ryandawsonuk'} 2019-05-16 08:29:52+00:00 103 seldon org update 2019-05-16 08:29:52+00:00 https://github.com/kubeflow/internal-acls/pull... 517 517.0 517
89 {u'login': u'yanniszark'} 2019-05-15 17:43:21+00:00 {u'login': u'jlewi'} 2019-05-15 17:43:27+00:00 3278 basic-auth: make kflogin work with NodePort 2019-05-18 17:53:55+00:00 https://github.com/kubeflow/kubeflow/pull/3278 531 531.0 459
90 {u'login': u'ryandawsonuk'} 2019-05-15 17:18:21+00:00 {u'login': u'jlewi'} 2019-05-15 17:18:32+00:00 269 add rd@seldon.io to member_organizations.yaml 2019-05-16 05:09:11+00:00 https://github.com/kubeflow/community/pull/269 532 532.0 520
92 {u'login': u'johnugeorge'} 2019-05-14 12:53:32+00:00 {u'login': u'johnugeorge'} 2019-05-14 12:54:17+00:00 267 Update github_users.json to the latest 2019-05-14 12:54:17+00:00 https://github.com/kubeflow/community/pull/267 560 560.0 560
93 {u'login': u'gaocegege'} 2019-05-13 02:13:15+00:00 {u'login': u'jlewi'} 2019-05-13 02:13:20+00:00 500 WIP feat(suggestion): Define new API for sugge... 2019-05-13 05:59:01+00:00 https://github.com/kubeflow/katib/pull/500 595 595.0 591
94 {u'login': u'achalshant'} 2019-05-11 17:45:09+00:00 {u'login': u'jlewi'} 2019-05-11 17:45:15+00:00 498 Decoupling DB interface from katib manager 2019-05-27 18:16:21+00:00 https://github.com/kubeflow/katib/pull/498 627 627.0 243
95 {u'login': u'solovyevt'} 2019-05-10 11:15:12+00:00 {u'login': u'jlewi'} 2019-05-10 11:15:18+00:00 695 update Getting Started / Kubfelow on Kubernete... 2019-05-18 05:08:50+00:00 https://github.com/kubeflow/website/pull/695 658 658.0 472
96 {u'login': u'karthikv2k'} 2019-05-10 00:54:15+00:00 {u'login': u'jlewi'} 2019-05-10 00:54:19+00:00 241 PyTorch notebook examples 2019-05-10 01:11:21+00:00 https://github.com/kubeflow/fairing/pull/241 668 668.0 668
97 {u'login': u'rileyjbauer'} 2019-05-07 17:40:05+00:00 {u'login': u'jlewi'} 2019-05-07 17:40:13+00:00 1294 Correct input height 2019-05-22 20:24:38+00:00 https://github.com/kubeflow/pipelines/pull/1294 723 723.0 361
99 {u'login': u'Ark-kun'} 2019-05-02 21:26:09+00:00 {u'login': u'jlewi'} 2019-05-02 21:26:20+00:00 3179 Update Pipelines to version 0.1.18 (#3121) 2019-05-02 22:17:52+00:00 https://github.com/kubeflow/kubeflow/pull/3179 840 840.0 839
0 {u'login': u'cliveseldon'} 2019-04-30 18:49:30+00:00 {u'login': u'jlewi'} 2019-04-30 18:49:37+00:00 36 add seldon 2019-05-14 15:55:27+00:00 https://github.com/kubeflow/manifests/pull/36 890 890.0 557
1 {u'login': u'animeshsingh'} 2019-04-30 07:04:30+00:00 {u'login': u'animeshsingh'} 2019-04-30 07:19:09+00:00 1264 updating components and samples owners file 2019-05-03 05:13:38+00:00 https://github.com/kubeflow/pipelines/pull/1264 902 902.0 832
2 {u'login': u'holdenk'} 2019-04-29 11:31:03+00:00 {u'login': u'jlewi'} 2019-04-29 11:31:09+00:00 3137 [KUBEFLOW-3136] Fix OAUTH requirement in gke u... 2019-04-29 11:31:17+00:00 https://github.com/kubeflow/kubeflow/pull/3137 922 922.0 922
4 {u'login': u'lluunn'} 2019-04-25 21:16:54+00:00 {u'login': u'jlewi'} 2019-04-25 21:17:06+00:00 3114 WIP don't review 2019-04-26 23:16:24+00:00 https://github.com/kubeflow/kubeflow/pull/3114 1008 1008.0 982
5 {u'login': u'rohithreddy'} 2019-04-23 22:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 22:23:33+00:00 3089 Add emacs package to the Jupyter Image 2019-04-24 02:06:01+00:00 https://github.com/kubeflow/kubeflow/pull/3089 1055 1055.0 1051
6 {u'login': u'rileyjbauer'} 2019-04-23 21:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 21:23:32+00:00 1208 [WIP] Initial attempt to migrate from react-sc... 2019-05-03 01:52:17+00:00 https://github.com/kubeflow/pipelines/pull/1208 1056 1056.0 835
9 {u'login': u'wukong1992'} 2019-04-18 06:40:38+00:00 {u'login': u'jlewi'} 2019-04-18 06:40:44+00:00 458 support request count 2019-05-27 04:14:53+00:00 https://github.com/kubeflow/katib/pull/458 1190 1190.0 257
11 {u'login': u'TheOtherOsama'} 2019-04-17 21:15:19+00:00 {u'login': u'jlewi'} 2019-04-17 21:15:24+00:00 83 Update org.yaml 2019-04-17 21:16:39+00:00 https://github.com/kubeflow/internal-acls/pull/83 1200 1200.0 1200
12 {u'login': u'royxue'} 2019-04-17 09:01:29+00:00 {u'login': u'jlewi'} 2019-04-17 09:01:38+00:00 3040 Add KUBEFLOW_KS_API_SPEC env variable 2019-04-18 09:21:32+00:00 https://github.com/kubeflow/kubeflow/pull/3040 1212 1212.0 1188
13 {u'login': u'stpabhi'} 2019-04-17 05:58:06+00:00 {u'login': u'jlewi'} 2019-04-17 05:58:15+00:00 3039 Update profile readme according to golang prof... 2019-05-19 00:52:06+00:00 https://github.com/kubeflow/kubeflow/pull/3039 1215 1215.0 452
14 {u'login': u'mnmainguy'} 2019-04-17 00:54:15+00:00 {u'login': u'jlewi'} 2019-04-17 00:54:20+00:00 543 Enhanced readme for MNIST example to include w... 2019-04-18 22:38:37+00:00 https://github.com/kubeflow/examples/pull/543 1220 1220.0 1174
... ... ... ... ... ... ... ... ... ... ... ...
28 {u'login': u'jdplatt'} 2019-03-16 19:59:45+00:00 {u'login': u'jlewi'} 2019-03-16 19:59:51+00:00 435 Python migration 2019-05-14 08:00:44+00:00 https://github.com/kubeflow/katib/pull/435 1969 1969.0 565
29 {u'login': u'zionwu'} 2019-03-13 12:20:46+00:00 {u'login': u'jlewi'} 2019-03-13 12:20:52+00:00 959 Delete pod on lost node 2019-04-11 13:30:29+00:00 https://github.com/kubeflow/tf-operator/pull/959 2049 2049.0 1352
30 {u'login': u'dreamryx'} 2019-03-13 08:49:35+00:00 {u'login': u'jlewi'} 2019-03-13 08:49:40+00:00 430 update dockerfile for power build 2019-04-24 09:02:36+00:00 https://github.com/kubeflow/katib/pull/430 2052 2052.0 1044
31 {u'login': u'animeshsingh'} 2019-03-12 00:41:45+00:00 {u'login': u'jlewi'} 2019-03-12 00:41:50+00:00 71 Update org.yaml 2019-03-12 00:41:59+00:00 https://github.com/kubeflow/internal-acls/pull/71 2084 2084.0 2084
32 {u'login': u'avdaredevil'} 2019-03-07 09:39:43+00:00 {u'login': u'avdaredevil'} 2019-03-07 09:47:58+00:00 2650 [Windows] Windows Scripts for Setting up Kubeflow 2019-05-09 23:03:20+00:00 https://github.com/kubeflow/kubeflow/pull/2650 2195 2195.0 670
33 {u'login': u'IronPan'} 2019-03-06 00:39:35+00:00 {u'login': u'jlewi'} 2019-03-06 00:39:42+00:00 918 Add test suit to upgrade pipeline 2019-04-24 17:19:34+00:00 https://github.com/kubeflow/pipelines/pull/918 2228 2228.0 1036
34 {u'login': u'Ark-kun'} 2019-03-05 21:33:50+00:00 {u'login': u'IronPan'} 2019-03-05 21:33:58+00:00 912 [WIP]Improved the sample Keras classifier comp... 2019-03-07 07:59:06+00:00 https://github.com/kubeflow/pipelines/pull/912 2232 2232.0 2197
36 {u'login': u'toshiiw'} 2019-03-04 02:42:22+00:00 {u'login': u'jlewi'} 2019-03-04 02:42:27+00:00 417 Print verbose error when studyjob updates fail 2019-03-05 06:08:42+00:00 https://github.com/kubeflow/katib/pull/417 2274 2274.0 2247
37 {u'login': u'Ark-kun'} 2019-03-01 23:16:42+00:00 {u'login': u'Ark-kun'} 2019-03-02 08:44:49+00:00 898 Collecting coverage when running python tests 2019-04-25 00:56:00+00:00 https://github.com/kubeflow/pipelines/pull/898 2326 2316.0 1028
38 {u'login': u'toshiiw'} 2019-02-26 08:04:33+00:00 {u'login': u'jlewi'} 2019-02-26 08:04:38+00:00 411 Retry studyjobcontroller 2019-05-17 09:25:27+00:00 https://github.com/kubeflow/katib/pull/411 2413 2413.0 492
39 {u'login': u'knkski'} 2019-02-19 21:27:13+00:00 {u'login': u'jlewi'} 2019-02-19 21:27:22+00:00 2508 Update kubespawner property name 2019-04-25 05:02:36+00:00 https://github.com/kubeflow/kubeflow/pull/2508 2568 2568.0 1024
40 {u'login': u'jayunit100'} 2019-02-15 16:59:16+00:00 {u'login': u'jlewi'} 2019-02-15 16:59:28+00:00 385 Vendoring 2019-02-20 17:47:08+00:00 https://github.com/kubeflow/katib/pull/385 2668 2668.0 2547
41 {u'login': u'yehiyam'} 2019-02-07 10:33:40+00:00 {u'login': u'jlewi'} 2019-02-07 10:33:49+00:00 502 fix typo 2019-02-26 23:12:45+00:00 https://github.com/kubeflow/examples/pull/502 2867 2867.0 2398
42 {u'login': u'YujiOshima'} 2019-02-07 08:14:16+00:00 {u'login': u'jlewi'} 2019-02-07 08:14:22+00:00 362 DB: add studyjob table and extend worker table 2019-03-04 09:53:25+00:00 https://github.com/kubeflow/katib/pull/362 2869 2869.0 2267
43 {u'login': u'Ark-kun'} 2019-02-07 07:30:11+00:00 {u'login': u'Ark-kun'} 2019-05-17 01:16:28+00:00 791 SDK - Added support for raw input artifact arg... 2019-05-23 01:24:26+00:00 https://github.com/kubeflow/pipelines/pull/791 2870 500.0 356
44 {u'login': u'hongye-sun'} 2019-02-06 00:18:49+00:00 {u'login': u'jlewi'} 2019-02-06 00:18:54+00:00 787 Add GPU test back 2019-02-27 00:59:08+00:00 https://github.com/kubeflow/pipelines/pull/787 2901 2901.0 2396
45 {u'login': u'DmitryBe'} 2019-02-01 05:22:32+00:00 {u'login': u'jlewi'} 2019-02-01 05:22:36+00:00 766 Added AWS S3 support for storing artefacts. 2019-04-27 18:19:11+00:00 https://github.com/kubeflow/pipelines/pull/766 3016 3016.0 963
46 {u'login': u'DmitryBe'} 2019-02-01 05:18:20+00:00 {u'login': u'DmitryBe'} 2019-02-10 14:33:00+00:00 765 Added configArtifactRepository method into `sd... 2019-04-30 00:35:10+00:00 https://github.com/kubeflow/pipelines/pull/765 3016 2791.0 909
47 {u'login': u'toshiiw'} 2019-01-31 07:51:52+00:00 {u'login': u'jlewi'} 2019-01-31 07:51:57+00:00 357 DNM: check if kubeconfig is sane 2019-02-01 07:07:05+00:00 https://github.com/kubeflow/katib/pull/357 3037 3037.0 3014
48 {u'login': u'TimZaman'} 2019-01-31 00:37:31+00:00 {u'login': u'jlewi'} 2019-01-31 00:37:40+00:00 2354 Fix minikube setup script's df inference 2019-05-15 15:02:49+00:00 https://github.com/kubeflow/kubeflow/pull/2354 3044 3044.0 534
49 {u'login': u'YujiOshima'} 2019-01-30 02:59:51+00:00 {u'login': u'jlewi'} 2019-01-30 03:00:01+00:00 352 Manual suggest 2019-02-07 08:17:41+00:00 https://github.com/kubeflow/katib/pull/352 3066 3066.0 2869
50 {u'login': u'dsdinter'} 2019-01-27 18:37:42+00:00 {u'login': u'dsdinter'} 2019-05-05 23:01:29+00:00 490 [pytorch_mnist] Automate image build 2019-05-08 15:11:21+00:00 https://github.com/kubeflow/examples/pull/490 3122 766.0 702
51 {u'login': u'Ark-kun'} 2019-01-21 07:19:10+00:00 {u'login': u'Ark-kun'} 2019-01-26 01:19:56+00:00 713 SDK/Components - Refactoring: Improved contai... 2019-03-30 08:36:35+00:00 https://github.com/kubeflow/pipelines/pull/713 3278 3164.0 1644
52 {u'login': u'Ark-kun'} 2019-01-21 07:17:53+00:00 {u'login': u'Ark-kun'} 2019-01-25 21:37:51+00:00 712 SDK/Components - Only convert TaskSpec to Cont... 2019-03-30 08:38:57+00:00 https://github.com/kubeflow/pipelines/pull/712 3278 3167.0 1644
53 {u'login': u'Ark-kun'} 2019-01-18 02:09:34+00:00 {u'login': u'jlewi'} 2019-01-18 02:09:39+00:00 702 SDK/Component - Added the ComponentReference.s... 2019-03-06 21:50:37+00:00 https://github.com/kubeflow/pipelines/pull/702 3355 3355.0 2207
54 {u'login': u'govindKAG'} 2019-01-16 11:31:09+00:00 {u'login': u'jlewi'} 2019-01-16 11:31:14+00:00 481 reduced number of layers 2019-03-06 17:21:10+00:00 https://github.com/kubeflow/examples/pull/481 3394 3394.0 2212
55 {u'login': u'Ark-kun'} 2019-01-15 23:02:07+00:00 {u'login': u'jlewi'} 2019-01-15 23:02:13+00:00 688 SDK/Components - Renamed fileOutputs to unconf... 2019-01-21 07:14:25+00:00 https://github.com/kubeflow/pipelines/pull/688 3406 3406.0 3278
56 {u'login': u'Ark-kun'} 2019-01-11 19:58:00+00:00 {u'login': u'Ark-kun'} 2019-01-12 00:04:05+00:00 669 SDK/Components - Added Json Schema spec for t... 2019-05-21 23:19:57+00:00 https://github.com/kubeflow/pipelines/pull/669 3505 3501.0 382
57 {u'login': u'Ark-kun'} 2019-01-11 03:27:40+00:00 {u'login': u'jlewi'} 2019-01-11 03:27:45+00:00 668 SDK - Update minimum Python version to 3.6 2019-04-25 23:41:41+00:00 https://github.com/kubeflow/pipelines/pull/668 3522 3522.0 1005
58 {u'login': u'neuromage'} 2019-01-05 22:53:33+00:00 {u'login': u'jlewi'} 2019-01-05 22:53:38+00:00 640 [WIP] Run Bazel build/tests as part of Travis CI 2019-01-11 21:40:24+00:00 https://github.com/kubeflow/pipelines/pull/640 3646 3646.0 3503

71 rows × 11 columns

PRs whcih have been open for over a mounth


In [80]:
needs_attention[needs_attention.creationAge > MAX_AGE]


Out[80]:
author createdAt editor lastEditedAt number title updatedAt url creationAge lastEditAge updateAge
97 {u'login': u'rileyjbauer'} 2019-05-07 17:40:05+00:00 {u'login': u'jlewi'} 2019-05-07 17:40:13+00:00 1294 Correct input height 2019-05-22 20:24:38+00:00 https://github.com/kubeflow/pipelines/pull/1294 723 723.0 361
98 {u'login': u'yaronha'} 2019-05-07 13:59:51+00:00 {u'login': u'jlewi'} 2019-05-07 14:00:01+00:00 1293 add support for flexible config (via env var) ... 2019-06-05 21:38:03+00:00 https://github.com/kubeflow/pipelines/pull/1293 727 727.0 23
99 {u'login': u'Ark-kun'} 2019-05-02 21:26:09+00:00 {u'login': u'jlewi'} 2019-05-02 21:26:20+00:00 3179 Update Pipelines to version 0.1.18 (#3121) 2019-05-02 22:17:52+00:00 https://github.com/kubeflow/kubeflow/pull/3179 840 840.0 839
0 {u'login': u'cliveseldon'} 2019-04-30 18:49:30+00:00 {u'login': u'jlewi'} 2019-04-30 18:49:37+00:00 36 add seldon 2019-05-14 15:55:27+00:00 https://github.com/kubeflow/manifests/pull/36 890 890.0 557
1 {u'login': u'animeshsingh'} 2019-04-30 07:04:30+00:00 {u'login': u'animeshsingh'} 2019-04-30 07:19:09+00:00 1264 updating components and samples owners file 2019-05-03 05:13:38+00:00 https://github.com/kubeflow/pipelines/pull/1264 902 902.0 832
2 {u'login': u'holdenk'} 2019-04-29 11:31:03+00:00 {u'login': u'jlewi'} 2019-04-29 11:31:09+00:00 3137 [KUBEFLOW-3136] Fix OAUTH requirement in gke u... 2019-04-29 11:31:17+00:00 https://github.com/kubeflow/kubeflow/pull/3137 922 922.0 922
3 {u'login': u'jingzhang36'} 2019-04-25 22:16:11+00:00 {u'login': u'jlewi'} 2019-04-25 22:16:16+00:00 1237 Add a helper function to create tensorboard crd 2019-05-31 07:21:34+00:00 https://github.com/kubeflow/pipelines/pull/1237 1007 1007.0 158
4 {u'login': u'lluunn'} 2019-04-25 21:16:54+00:00 {u'login': u'jlewi'} 2019-04-25 21:17:06+00:00 3114 WIP don't review 2019-04-26 23:16:24+00:00 https://github.com/kubeflow/kubeflow/pull/3114 1008 1008.0 982
5 {u'login': u'rohithreddy'} 2019-04-23 22:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 22:23:33+00:00 3089 Add emacs package to the Jupyter Image 2019-04-24 02:06:01+00:00 https://github.com/kubeflow/kubeflow/pull/3089 1055 1055.0 1051
6 {u'login': u'rileyjbauer'} 2019-04-23 21:23:26+00:00 {u'login': u'jlewi'} 2019-04-23 21:23:32+00:00 1208 [WIP] Initial attempt to migrate from react-sc... 2019-05-03 01:52:17+00:00 https://github.com/kubeflow/pipelines/pull/1208 1056 1056.0 835
7 {u'login': u'Ark-kun'} 2019-04-22 22:29:35+00:00 {u'login': u'jlewi'} 2019-04-22 22:29:45+00:00 1200 SDK - Improved test script compatibility with ... 2019-06-05 23:13:36+00:00 https://github.com/kubeflow/pipelines/pull/1200 1079 1079.0 22
8 {u'login': u'swiftdiaries'} 2019-04-19 18:59:56+00:00 {u'login': u'jlewi'} 2019-04-19 19:00:09+00:00 3060 kfctl go binary - kustomize e2e test 2019-06-06 01:45:36+00:00 https://github.com/kubeflow/kubeflow/pull/3060 1154 1154.0 19
9 {u'login': u'wukong1992'} 2019-04-18 06:40:38+00:00 {u'login': u'jlewi'} 2019-04-18 06:40:44+00:00 458 support request count 2019-05-27 04:14:53+00:00 https://github.com/kubeflow/katib/pull/458 1190 1190.0 257
10 {u'login': u'kunmingg'} 2019-04-18 02:27:27+00:00 {u'login': u'kunmingg'} 2019-04-26 03:43:18+00:00 3045 add kfctl to deploy app backend 2019-06-05 00:03:56+00:00 https://github.com/kubeflow/kubeflow/pull/3045 1195 1001.0 45
11 {u'login': u'TheOtherOsama'} 2019-04-17 21:15:19+00:00 {u'login': u'jlewi'} 2019-04-17 21:15:24+00:00 83 Update org.yaml 2019-04-17 21:16:39+00:00 https://github.com/kubeflow/internal-acls/pull/83 1200 1200.0 1200
12 {u'login': u'royxue'} 2019-04-17 09:01:29+00:00 {u'login': u'jlewi'} 2019-04-17 09:01:38+00:00 3040 Add KUBEFLOW_KS_API_SPEC env variable 2019-04-18 09:21:32+00:00 https://github.com/kubeflow/kubeflow/pull/3040 1212 1212.0 1188
13 {u'login': u'stpabhi'} 2019-04-17 05:58:06+00:00 {u'login': u'jlewi'} 2019-04-17 05:58:15+00:00 3039 Update profile readme according to golang prof... 2019-05-19 00:52:06+00:00 https://github.com/kubeflow/kubeflow/pull/3039 1215 1215.0 452
14 {u'login': u'mnmainguy'} 2019-04-17 00:54:15+00:00 {u'login': u'jlewi'} 2019-04-17 00:54:20+00:00 543 Enhanced readme for MNIST example to include w... 2019-04-18 22:38:37+00:00 https://github.com/kubeflow/examples/pull/543 1220 1220.0 1174
15 {u'login': u'animeshsingh'} 2019-04-16 02:47:59+00:00 {u'login': u'jlewi'} 2019-04-16 02:48:08+00:00 12 adding animeshsingh as reviewer 2019-04-17 01:44:39+00:00 https://github.com/kubeflow/metadata/pull/12 1242 1242.0 1219
16 {u'login': u'swiftdiaries'} 2019-04-15 23:51:32+00:00 {u'login': u'jlewi'} 2019-04-15 23:51:38+00:00 3026 [WIP] adds kfctl onprem 2019-04-16 00:25:06+00:00 https://github.com/kubeflow/kubeflow/pull/3026 1245 1245.0 1245
17 {u'login': u'hamelsmu'} 2019-04-13 20:08:28+00:00 {u'login': u'jlewi'} 2019-04-13 20:08:34+00:00 256 Patch 3 2019-04-13 20:50:48+00:00 https://github.com/kubeflow/community/pull/256 1297 1297.0 1296
18 {u'login': u'Ark-kun'} 2019-04-11 22:46:27+00:00 {u'login': u'jlewi'} 2019-04-11 22:46:32+00:00 1145 [WIP]Reduce noise in Prow tests 2019-04-23 21:04:31+00:00 https://github.com/kubeflow/pipelines/pull/1145 1342 1342.0 1056
19 {u'login': u'mrkm4ntr'} 2019-04-10 05:34:41+00:00 {u'login': u'jlewi'} 2019-04-10 05:34:46+00:00 2987 Add model status endpoint to http-proxy 2019-04-12 02:15:46+00:00 https://github.com/kubeflow/kubeflow/pull/2987 1384 1384.0 1339
20 {u'login': u'Ark-kun'} 2019-04-10 01:41:04+00:00 {u'login': u'jlewi'} 2019-04-10 01:41:09+00:00 1125 Preserving component spec on ContainerOp 2019-05-03 20:16:12+00:00 https://github.com/kubeflow/pipelines/pull/1125 1387 1387.0 817
21 {u'login': u'KingOnTheStar'} 2019-04-03 12:13:48+00:00 {u'login': u'jlewi'} 2019-04-03 12:13:52+00:00 246 Add KingOnTheStar to kubeflow.member, he is wo... 2019-04-03 12:14:02+00:00 https://github.com/kubeflow/community/pull/246 1545 1545.0 1545
22 {u'login': u'Svendegroote91'} 2019-04-01 18:25:41+00:00 {u'login': u'Svendegroote91'} 2019-04-01 18:35:45+00:00 535 [Financial Time Series] Update example to v0.4... 2019-06-05 19:16:51+00:00 https://github.com/kubeflow/examples/pull/535 1587 1587.0 26
23 {u'login': u'cliveseldon'} 2019-03-29 18:06:44+00:00 {u'login': u'jlewi'} 2019-03-29 18:06:48+00:00 243 Add Clive from Seldon to members.yaml 2019-03-29 18:06:57+00:00 https://github.com/kubeflow/community/pull/243 1659 1659.0 1659
24 {u'login': u'Akado2009'} 2019-03-26 03:28:20+00:00 {u'login': u'Akado2009'} 2019-03-27 01:08:02+00:00 438 WIP: New UI 2019-04-25 23:44:58+00:00 https://github.com/kubeflow/katib/pull/438 1746 1724.0 1005
25 {u'login': u'elviraux'} 2019-03-26 00:18:37+00:00 {u'login': u'jlewi'} 2019-03-26 00:18:41+00:00 2808 [WIP] Improved kubeflow readme intro 2019-03-26 00:18:58+00:00 https://github.com/kubeflow/kubeflow/pull/2808 1749 1749.0 1749
26 {u'login': u'neuromage'} 2019-03-24 20:22:24+00:00 {u'login': u'jlewi'} 2019-03-24 20:22:33+00:00 1031 Use Remote Build Execution for Bazel builds. 2019-06-06 00:35:37+00:00 https://github.com/kubeflow/pipelines/pull/1031 1777 1777.0 21
... ... ... ... ... ... ... ... ... ... ... ...
29 {u'login': u'zionwu'} 2019-03-13 12:20:46+00:00 {u'login': u'jlewi'} 2019-03-13 12:20:52+00:00 959 Delete pod on lost node 2019-04-11 13:30:29+00:00 https://github.com/kubeflow/tf-operator/pull/959 2049 2049.0 1352
30 {u'login': u'dreamryx'} 2019-03-13 08:49:35+00:00 {u'login': u'jlewi'} 2019-03-13 08:49:40+00:00 430 update dockerfile for power build 2019-04-24 09:02:36+00:00 https://github.com/kubeflow/katib/pull/430 2052 2052.0 1044
31 {u'login': u'animeshsingh'} 2019-03-12 00:41:45+00:00 {u'login': u'jlewi'} 2019-03-12 00:41:50+00:00 71 Update org.yaml 2019-03-12 00:41:59+00:00 https://github.com/kubeflow/internal-acls/pull/71 2084 2084.0 2084
32 {u'login': u'avdaredevil'} 2019-03-07 09:39:43+00:00 {u'login': u'avdaredevil'} 2019-03-07 09:47:58+00:00 2650 [Windows] Windows Scripts for Setting up Kubeflow 2019-05-09 23:03:20+00:00 https://github.com/kubeflow/kubeflow/pull/2650 2195 2195.0 670
33 {u'login': u'IronPan'} 2019-03-06 00:39:35+00:00 {u'login': u'jlewi'} 2019-03-06 00:39:42+00:00 918 Add test suit to upgrade pipeline 2019-04-24 17:19:34+00:00 https://github.com/kubeflow/pipelines/pull/918 2228 2228.0 1036
34 {u'login': u'Ark-kun'} 2019-03-05 21:33:50+00:00 {u'login': u'IronPan'} 2019-03-05 21:33:58+00:00 912 [WIP]Improved the sample Keras classifier comp... 2019-03-07 07:59:06+00:00 https://github.com/kubeflow/pipelines/pull/912 2232 2232.0 2197
35 {u'login': u'lluunn'} 2019-03-04 21:47:17+00:00 {u'login': u'jlewi'} 2019-03-04 21:47:26+00:00 2616 WIP 2019-06-02 22:23:26+00:00 https://github.com/kubeflow/kubeflow/pull/2616 2255 2255.0 95
36 {u'login': u'toshiiw'} 2019-03-04 02:42:22+00:00 {u'login': u'jlewi'} 2019-03-04 02:42:27+00:00 417 Print verbose error when studyjob updates fail 2019-03-05 06:08:42+00:00 https://github.com/kubeflow/katib/pull/417 2274 2274.0 2247
37 {u'login': u'Ark-kun'} 2019-03-01 23:16:42+00:00 {u'login': u'Ark-kun'} 2019-03-02 08:44:49+00:00 898 Collecting coverage when running python tests 2019-04-25 00:56:00+00:00 https://github.com/kubeflow/pipelines/pull/898 2326 2316.0 1028
38 {u'login': u'toshiiw'} 2019-02-26 08:04:33+00:00 {u'login': u'jlewi'} 2019-02-26 08:04:38+00:00 411 Retry studyjobcontroller 2019-05-17 09:25:27+00:00 https://github.com/kubeflow/katib/pull/411 2413 2413.0 492
39 {u'login': u'knkski'} 2019-02-19 21:27:13+00:00 {u'login': u'jlewi'} 2019-02-19 21:27:22+00:00 2508 Update kubespawner property name 2019-04-25 05:02:36+00:00 https://github.com/kubeflow/kubeflow/pull/2508 2568 2568.0 1024
40 {u'login': u'jayunit100'} 2019-02-15 16:59:16+00:00 {u'login': u'jlewi'} 2019-02-15 16:59:28+00:00 385 Vendoring 2019-02-20 17:47:08+00:00 https://github.com/kubeflow/katib/pull/385 2668 2668.0 2547
41 {u'login': u'yehiyam'} 2019-02-07 10:33:40+00:00 {u'login': u'jlewi'} 2019-02-07 10:33:49+00:00 502 fix typo 2019-02-26 23:12:45+00:00 https://github.com/kubeflow/examples/pull/502 2867 2867.0 2398
42 {u'login': u'YujiOshima'} 2019-02-07 08:14:16+00:00 {u'login': u'jlewi'} 2019-02-07 08:14:22+00:00 362 DB: add studyjob table and extend worker table 2019-03-04 09:53:25+00:00 https://github.com/kubeflow/katib/pull/362 2869 2869.0 2267
43 {u'login': u'Ark-kun'} 2019-02-07 07:30:11+00:00 {u'login': u'Ark-kun'} 2019-05-17 01:16:28+00:00 791 SDK - Added support for raw input artifact arg... 2019-05-23 01:24:26+00:00 https://github.com/kubeflow/pipelines/pull/791 2870 500.0 356
44 {u'login': u'hongye-sun'} 2019-02-06 00:18:49+00:00 {u'login': u'jlewi'} 2019-02-06 00:18:54+00:00 787 Add GPU test back 2019-02-27 00:59:08+00:00 https://github.com/kubeflow/pipelines/pull/787 2901 2901.0 2396
45 {u'login': u'DmitryBe'} 2019-02-01 05:22:32+00:00 {u'login': u'jlewi'} 2019-02-01 05:22:36+00:00 766 Added AWS S3 support for storing artefacts. 2019-04-27 18:19:11+00:00 https://github.com/kubeflow/pipelines/pull/766 3016 3016.0 963
46 {u'login': u'DmitryBe'} 2019-02-01 05:18:20+00:00 {u'login': u'DmitryBe'} 2019-02-10 14:33:00+00:00 765 Added configArtifactRepository method into `sd... 2019-04-30 00:35:10+00:00 https://github.com/kubeflow/pipelines/pull/765 3016 2791.0 909
47 {u'login': u'toshiiw'} 2019-01-31 07:51:52+00:00 {u'login': u'jlewi'} 2019-01-31 07:51:57+00:00 357 DNM: check if kubeconfig is sane 2019-02-01 07:07:05+00:00 https://github.com/kubeflow/katib/pull/357 3037 3037.0 3014
48 {u'login': u'TimZaman'} 2019-01-31 00:37:31+00:00 {u'login': u'jlewi'} 2019-01-31 00:37:40+00:00 2354 Fix minikube setup script's df inference 2019-05-15 15:02:49+00:00 https://github.com/kubeflow/kubeflow/pull/2354 3044 3044.0 534
49 {u'login': u'YujiOshima'} 2019-01-30 02:59:51+00:00 {u'login': u'jlewi'} 2019-01-30 03:00:01+00:00 352 Manual suggest 2019-02-07 08:17:41+00:00 https://github.com/kubeflow/katib/pull/352 3066 3066.0 2869
50 {u'login': u'dsdinter'} 2019-01-27 18:37:42+00:00 {u'login': u'dsdinter'} 2019-05-05 23:01:29+00:00 490 [pytorch_mnist] Automate image build 2019-05-08 15:11:21+00:00 https://github.com/kubeflow/examples/pull/490 3122 766.0 702
51 {u'login': u'Ark-kun'} 2019-01-21 07:19:10+00:00 {u'login': u'Ark-kun'} 2019-01-26 01:19:56+00:00 713 SDK/Components - Refactoring: Improved contai... 2019-03-30 08:36:35+00:00 https://github.com/kubeflow/pipelines/pull/713 3278 3164.0 1644
52 {u'login': u'Ark-kun'} 2019-01-21 07:17:53+00:00 {u'login': u'Ark-kun'} 2019-01-25 21:37:51+00:00 712 SDK/Components - Only convert TaskSpec to Cont... 2019-03-30 08:38:57+00:00 https://github.com/kubeflow/pipelines/pull/712 3278 3167.0 1644
53 {u'login': u'Ark-kun'} 2019-01-18 02:09:34+00:00 {u'login': u'jlewi'} 2019-01-18 02:09:39+00:00 702 SDK/Component - Added the ComponentReference.s... 2019-03-06 21:50:37+00:00 https://github.com/kubeflow/pipelines/pull/702 3355 3355.0 2207
54 {u'login': u'govindKAG'} 2019-01-16 11:31:09+00:00 {u'login': u'jlewi'} 2019-01-16 11:31:14+00:00 481 reduced number of layers 2019-03-06 17:21:10+00:00 https://github.com/kubeflow/examples/pull/481 3394 3394.0 2212
55 {u'login': u'Ark-kun'} 2019-01-15 23:02:07+00:00 {u'login': u'jlewi'} 2019-01-15 23:02:13+00:00 688 SDK/Components - Renamed fileOutputs to unconf... 2019-01-21 07:14:25+00:00 https://github.com/kubeflow/pipelines/pull/688 3406 3406.0 3278
56 {u'login': u'Ark-kun'} 2019-01-11 19:58:00+00:00 {u'login': u'Ark-kun'} 2019-01-12 00:04:05+00:00 669 SDK/Components - Added Json Schema spec for t... 2019-05-21 23:19:57+00:00 https://github.com/kubeflow/pipelines/pull/669 3505 3501.0 382
57 {u'login': u'Ark-kun'} 2019-01-11 03:27:40+00:00 {u'login': u'jlewi'} 2019-01-11 03:27:45+00:00 668 SDK - Update minimum Python version to 3.6 2019-04-25 23:41:41+00:00 https://github.com/kubeflow/pipelines/pull/668 3522 3522.0 1005
58 {u'login': u'neuromage'} 2019-01-05 22:53:33+00:00 {u'login': u'jlewi'} 2019-01-05 22:53:38+00:00 640 [WIP] Run Bazel build/tests as part of Travis CI 2019-01-11 21:40:24+00:00 https://github.com/kubeflow/pipelines/pull/640 3646 3646.0 3503

62 rows × 11 columns


In [ ]: