Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test traffic Merge Into Dev: Request for Feedback #2220

Merged
merged 33 commits into from
Mar 19, 2023
Merged

Test traffic Merge Into Dev: Request for Feedback #2220

merged 33 commits into from
Mar 19, 2023

Commits on Jan 21, 2023

  1. feat: Added task to collect repository traffic (#2098)

    * Add files via upload
    
    Frontend Files to work locally
    
    * Json file to work on frontend locally
    
    * Update README.md
    
    * Changing
    
    * add repo count to gropus, maybe sorting too
    
    Signed-off-by: Henryufa <henrywbahr@gmail.com>
    
    * remove comment
    
    Signed-off-by: Henryufa <henrywbahr@gmail.com>
    
    * added changes to lock file back
    
    Signed-off-by: Henryufa <henrywbahr@gmail.com>
    
    * I think this gets groups sorting by number of repo
    
    * added schema updates
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * added logic for task
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * corrected db class
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * added sequence for clone_id
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * changed schema field names, updated task logic
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * added logic for parsing data
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * final corrections to schema
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * added task to the queue
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * added schema migration script
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    * changed version file formatting
    
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    
    Signed-off-by: Henryufa <henrywbahr@gmail.com>
    Signed-off-by: meetagrawal09 <agrawalmeet91@gmail.com>
    Co-authored-by: CadenHicks <cadenhicks@gmail.com>
    Co-authored-by: Henryufa <44609877+Henryufa@users.noreply.github.com>
    Co-authored-by: Henryufa <henrywbahr@gmail.com>
    Co-authored-by: Benjamin Williams <112727169+benwilliams95@users.noreply.github.com>
    Co-authored-by: Sean P. Goggins <outdoors@acm.org>
    Co-authored-by: Sean P. Goggins <s@goggins.com>
    7 people committed Jan 21, 2023
    Configuration menu
    Copy the full SHA
    34817a6 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2023

  1. Merge branch 'dev' into test-traffic

    Note that the change to start_tasks.py may need to be refactored to be consistent with the way we are managing jobs now:
    ```
    
        with DatabaseSession(logger) as session:
            query = session.query(Repo)
            repos = execute_session_query(query, 'all')
            #Just use list comprehension for simple group
            repo_info_tasks = [collect_repo_info.si(repo.repo_git) for repo in repos]
    
            for repo in repos:
                first_tasks_repo = group(collect_issues.si(repo.repo_git),collect_pull_requests.si(repo.repo_git),collect_github_repo_clones_data.si(repo.repo_git))
                second_tasks_repo = group(collect_events.si(repo.repo_git),
                    collect_github_messages.si(repo.repo_git),process_pull_request_files.si(repo.repo_git), process_pull_request_commits.si(repo.repo_git))
    
                repo_chain = chain(first_tasks_repo,second_tasks_repo)
                issue_dependent_tasks.append(repo_chain)
    
            repo_task_group = group(
                *repo_info_tasks,
                chain(group(*issue_dependent_tasks),process_contributors.si()),
                generate_facade_chain(logger),
                collect_releases.si()
            )
    
        chain(repo_task_group, refresh_materialized_views.si()).apply_async()
    
    ```
    sgoggins committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    a7c1dce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a78aab4 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

  1. Merge pull request #2242 from chaoss/dev

    Updating Test-Traffic with `dev`
    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    f48a539 View commit details
    Browse the repository at this point in the history
  2. Updatin gSchema versions

    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    3d38b66 View commit details
    Browse the repository at this point in the history
  3. Removed update to releases table, since that's already done.

    Add a unique constraint on repo_id in the clones table.
    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    e00efb2 View commit details
    Browse the repository at this point in the history
  4. sequence update

    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    6479ff2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    70009c2 View commit details
    Browse the repository at this point in the history
  6. alembic schema syntax wars.

    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    db54fea View commit details
    Browse the repository at this point in the history
  7. alembic

    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    1f4a4ed View commit details
    Browse the repository at this point in the history
  8. alembic III

    sgoggins committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    3be2781 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2023

  1. Configuration menu
    Copy the full SHA
    7341b20 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a35096 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4076c70 View commit details
    Browse the repository at this point in the history
  4. serial .. no.

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    3deecc4 View commit details
    Browse the repository at this point in the history
  5. more sequence syntax

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    f6740a8 View commit details
    Browse the repository at this point in the history
  6. meta/

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    3a34013 View commit details
    Browse the repository at this point in the history
  7. schema

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    e581410 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a90bf5e View commit details
    Browse the repository at this point in the history
  9. Grinding gears.

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    64df9de View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9c40282 View commit details
    Browse the repository at this point in the history
  11. Sequence creation circles.

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    0dc4fab View commit details
    Browse the repository at this point in the history
  12. sequence wrestling

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    2325b80 View commit details
    Browse the repository at this point in the history
  13. close to sequence building?

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    62622bd View commit details
    Browse the repository at this point in the history
  14. silliness of sequences

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    5ac8132 View commit details
    Browse the repository at this point in the history
  15. Sequence works? (Fingers crossed). Removing foreign key dropping and …

    …recreating logic that I don't understand the point of.
    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    fac0134 View commit details
    Browse the repository at this point in the history
  16. I think we got it!

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    a549bcf View commit details
    Browse the repository at this point in the history
  17. Merge pull request #2246 from chaoss/dev

    Updating from Dev
    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    47c8e3a View commit details
    Browse the repository at this point in the history
  18. Updated outdated job flow logic.

    Added collect_github_repo_clones_data.si(repo.repo_git) to new job flow logic.
    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    4fd183f View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    3b73118 View commit details
    Browse the repository at this point in the history
  20. consistency update

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    440e97e View commit details
    Browse the repository at this point in the history
  21. I think typo fixing.

    sgoggins committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    46c0908 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    8771742 View commit details
    Browse the repository at this point in the history