diff --git a/.github/scripts/check_facility_has_institution_id/main.py b/.github/scripts/check_facility_has_institution_id/main.py new file mode 100644 index 000000000..dcc5bc02d --- /dev/null +++ b/.github/scripts/check_facility_has_institution_id/main.py @@ -0,0 +1,64 @@ +# Run through all the FACILITY.yaml files and check that they have an institution_id field. + +import yaml +import sys +import glob +import requests + +export_mapping = False + +# Get the list of valid institution ids +response = requests.get("https://topology-institutions.osg-htc.org/api/institution_ids") +topology_institutions = response.json() +topology_institutions_by_id = {x['id']: x for x in topology_institutions} +topology_institution_ids = {x['id'] for x in topology_institutions} + +def check_facility_institution_id(yaml_string: str): + + facility = yaml.load(yaml_string, Loader=yaml.Loader) + if 'InstitutionID' not in facility: + raise Exception("FACILITY.yaml does not have an InstitutionID field") + + if facility['InstitutionID'] not in topology_institution_ids and facility['InstitutionID'] is not None: + raise Exception(f"Invalid InstitutionID: {facility['InstitutionID']}") + +def provide_human_check_interface(facility_files: list): + + facility_institution_mapping = {} + for file in facility_files: + with open(file, 'r') as f: + facility_name = file.split('/')[-2] + facility = yaml.load(f, Loader=yaml.Loader) + facility_institution_mapping[facility_name] = topology_institutions_by_id.get(facility['InstitutionID'], {}).get('name', None) + + if export_mapping: + with open("facility_institution_mapping.yaml", 'w') as f: + yaml.dump(facility_institution_mapping, f) + + else: + print(facility_institution_mapping) + +def main(): + + facility_files = glob.glob("../../../topology/**/FACILITY.yaml") + + # Check the files + errors = [] + for file in facility_files: + with open(file, 'r') as f: + try: + check_facility_institution_id(f) + except Exception as e: + errors.append((file.split("/")[-2], e)) + + # Print the errors and exit if needed + if errors: + for error in errors: + print(f"Error in {error[0]}: \n\t {error[1]}") + sys.exit(1) + + provide_human_check_interface(facility_files) + + +if __name__ == "__main__": + main() diff --git a/.github/scripts/check_facility_has_institution_id/requirements.txt b/.github/scripts/check_facility_has_institution_id/requirements.txt new file mode 100644 index 000000000..9ccf514eb --- /dev/null +++ b/.github/scripts/check_facility_has_institution_id/requirements.txt @@ -0,0 +1,2 @@ +PyYAML==6.0.1 +requests==2.32.0 diff --git a/.github/scripts/check_project_fos_precision/requirements.txt b/.github/scripts/check_project_fos_precision/requirements.txt index 96082b7ff..37972e04c 100644 --- a/.github/scripts/check_project_fos_precision/requirements.txt +++ b/.github/scripts/check_project_fos_precision/requirements.txt @@ -1,4 +1,4 @@ -certifi==2024.2.2 +certifi==2024.7.4 charset-normalizer==3.3.2 idna==3.7 numpy==1.26.4 @@ -9,4 +9,4 @@ PyYAML==6.0.1 requests==2.32.0 six==1.16.0 tzdata==2024.1 -urllib3==2.2.1 +urllib3==2.2.2 diff --git a/.github/workflows/check_facility_institution_id.yml b/.github/workflows/check_facility_institution_id.yml new file mode 100644 index 000000000..bc5e9ae09 --- /dev/null +++ b/.github/workflows/check_facility_institution_id.yml @@ -0,0 +1,20 @@ +name: Check Project FOS Precision +on: + pull_request: + branches: + - main + +jobs: + check: + name: Check + runs-on: ubuntu-latest + if: startsWith(github.repository, 'opensciencegrid/') + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.9.15 + cache: 'pip' # caching pip dependencies + - run: pip install -r ./.github/scripts/check_facility_has_institution_id/requirements.txt + - run: python ./.github/scripts/check_facility_has_institution_id/main.py diff --git a/.github/workflows/check_project_fos_precision.yml b/.github/workflows/check_project_fos_precision.yml index 8c5f49359..fff8516d4 100644 --- a/.github/workflows/check_project_fos_precision.yml +++ b/.github/workflows/check_project_fos_precision.yml @@ -2,7 +2,7 @@ name: Check Project FOS Precision on: pull_request: branches: - - main + - master schedule: - cron: '0 0 * * *' @@ -19,4 +19,4 @@ jobs: python-version: 3.9.15 cache: 'pip' # caching pip dependencies - run: pip install -r ./.github/scripts/check_project_fos_precision/requirements.txt - - run: python ./.github/scripts/check_project_fos_precision/main.py \ No newline at end of file + - run: python ./.github/scripts/check_project_fos_precision/main.py diff --git a/.github/workflows/validate-caches.yml b/.github/workflows/validate-caches.yml deleted file mode 100644 index 24f45d8da..000000000 --- a/.github/workflows/validate-caches.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Validate StashCache configs -on: - schedule: - # Run daily - - cron: '0 0 * * *' - -jobs: - validate-caches: - name: Validate Topology caches - if: startsWith(github.repository, 'opensciencegrid/') - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.9.15 - - name: Compare StashCache config lists - run: | - ./src/tests/diff_cache_configs.py diff --git a/projects/CSU_Vogeler.yaml b/projects/CSU_Vogeler.yaml new file mode 100644 index 000000000..2c364fb1a --- /dev/null +++ b/projects/CSU_Vogeler.yaml @@ -0,0 +1,7 @@ +Department: Natural Resource Ecology Lab +Description: Distributed geospatial data access and processing +FieldOfScience: Ecological and Environmental Sciences +FieldOfScienceID: '03.0101' +InstitutionID: https://osg-htc.org/iid/2aj5pa9etoc7 +Organization: Colorado State University +PIName: Jody Vogeler diff --git a/projects/Caltech_2024_Reitze.yaml b/projects/Caltech_2024_Reitze.yaml new file mode 100644 index 000000000..98c1e297e --- /dev/null +++ b/projects/Caltech_2024_Reitze.yaml @@ -0,0 +1,14 @@ +Department: The Division of Physics, Mathematics and Astronomy +Description: The mission of the U.S. National Science Foundation Laser Interferometer + Gravitational-wave Observatory is to open the field of gravitational-wave astrophysics + through the direct detection of gravitational waves. LIGO is a national facility + for gravitational-wave research, providing opportunities for the broader scientific + community to participate in detector development, observations and data analysis. + LIGO detectors are available for use by members of the LIGO Scientific Collaboration + (LSC), comprising researchers in partner institutions around the world. +FieldOfScience: Physics and astronomy +FieldOfScienceID: '40.1101' +InstitutionID: https://osg-htc.org/iid/m9rrh8ld1wyh +Organization: California Institute of Technology +PIName: David Reitze + diff --git a/projects/Cincinnati_Combs.yaml b/projects/Cincinnati_Combs.yaml new file mode 100644 index 000000000..63e02a549 --- /dev/null +++ b/projects/Cincinnati_Combs.yaml @@ -0,0 +1,7 @@ +Department: Advanced Research Computing +Description: Facilitating research computing efforts campus-wide +FieldOfScience: Research Computing +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/52f5piuly2gg +Organization: University of Cincinnati +PIName: Jane Combs diff --git a/projects/Doane_Meysenburg.yaml b/projects/Doane_Meysenburg.yaml new file mode 100644 index 000000000..8f792400f --- /dev/null +++ b/projects/Doane_Meysenburg.yaml @@ -0,0 +1,13 @@ +Department: Information Science & Technology +Description: This fall, I'm teaching a seminar for undergraduate students participating + in the "Developing Computational Efficacy and Skill Within an Inclusive Community + of Practice in the Natural Sciences" NSF grant, award number 2142238. In the grant, + we teach natural science students coding skills through Python image processing. + A central part of the seminar is to teach the students how to improve the performance + of their Python code. As a capstone to that portion of the class, students will + use OSG Services. +FieldOfScience: Computer and Information Services +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/f9c86mft1gzz +Organization: Doane University +PIName: Mark Meysenburg diff --git a/projects/EHT_2023_Chan.yaml b/projects/EHT_2023_Chan.yaml new file mode 100644 index 000000000..303a81561 --- /dev/null +++ b/projects/EHT_2023_Chan.yaml @@ -0,0 +1,15 @@ +Department: Astronomy +Description: >- + The EHT project combines data from several very-long-baseline + interferometry (VLBI) stations around Earth, which form a combined array + with an angular resolution sufficient to observe objects the size of + a supermassive black hole's event horizon. The project's observational + targets include the two black holes with the largest angular diameter as + observed from Earth: the black hole at the center of the supergiant + elliptical galaxy Messier 87, and Sagittarius A*, at the center of the + Milky Way. +FieldOfScience: Astronomy +FieldOfScienceID: '40.02' +InstitutionID: https://osg-htc.org/iid/7rjyoz6kb8vq +Organization: University of Arizona +PIName: Chi-Kwan Chan diff --git a/projects/EWMS_Riedel_Startup.yaml b/projects/EWMS_Riedel_Startup.yaml index c679c70ca..f9dc31d63 100644 --- a/projects/EWMS_Riedel_Startup.yaml +++ b/projects/EWMS_Riedel_Startup.yaml @@ -1,10 +1,7 @@ -Department: Physics -Description: To develop an Observation Management System Framework which will help alleviating multiple types of astrophysical data and respective workflow management. The Event Workflow Management System (EWMS)is a workload manager designed for processing events (simulated readouts from a particle physics detector, recorded data points, images, etc.) with complex workflows. -FieldOfScience: Astrophysics -Organization: University of Wisconsin-Madison +Department: Wisconsin IceCube Particle Astrophyics Center +Description: WIPAC is focused on neutrino astrophysics, operating the IceCube Neutrino Observatory and other projects around the world. +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '14.0903' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison PIName: Benedikt Riedel -Sponsor: - CampusGrid: - Name: PATh Facility -InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' -FieldOfScienceID: '40.0202' diff --git a/projects/FIU_Bobadilla.yaml b/projects/FIU_Bobadilla.yaml new file mode 100644 index 000000000..d06f1c253 --- /dev/null +++ b/projects/FIU_Bobadilla.yaml @@ -0,0 +1,9 @@ +Department: Computing and Information Sciences +Description: We are creating a large repository for simulation data, and we want to + provide our colleagues with options to run model calculations whose outcomes would + be stored in our repository. +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/gyqnlof5dslq +Organization: Florida International University +PIName: Leonardo Bobadilla diff --git a/projects/GATech_Cadonati.yaml b/projects/GATech_Cadonati.yaml new file mode 100644 index 000000000..60352d4af --- /dev/null +++ b/projects/GATech_Cadonati.yaml @@ -0,0 +1,8 @@ +Department: Physics +Description: Gravitational Wave Astrophysics, working on running unmodelled reconstruction + of signals and tests of general relativity. +FieldOfScience: Astrophysics +FieldOfScienceID: '40.0202' +InstitutionID: https://osg-htc.org/iid/uvf22j6xjbtv +Organization: Georgia Institute of Technology +PIName: Laura Cadonati diff --git a/projects/Hamilton_Chen.yaml b/projects/Hamilton_Chen.yaml new file mode 100644 index 000000000..189c78dce --- /dev/null +++ b/projects/Hamilton_Chen.yaml @@ -0,0 +1,8 @@ +Department: Computer Science +Description: Research focuses on protein structure prediction and termination with + deep learning. +FieldOfScience: Biological and Biomedical Sciences +FieldOfScienceID: '26.9999' +InstitutionID: https://osg-htc.org/iid/0rovxfragej9 +Organization: Hamilton College +PIName: Xiao Chen diff --git a/projects/Harrisburg_Syal.yaml b/projects/Harrisburg_Syal.yaml new file mode 100644 index 000000000..81617358c --- /dev/null +++ b/projects/Harrisburg_Syal.yaml @@ -0,0 +1,8 @@ +Department: Computer Science +Description: Working on small projects and showcasing OSpool and helping reachers + and faculty at HU. +FieldOfScience: Computer Science +FieldOfScienceID: '11.0101' +InstitutionID: "https://osg-htc.org/iid/6l8t5d2hv9ay" +Organization: Harrisburg University of Science and Technology +PIName: Aditya Syal diff --git a/projects/Hawaii_Sun.yaml b/projects/Hawaii_Sun.yaml new file mode 100644 index 000000000..51589296c --- /dev/null +++ b/projects/Hawaii_Sun.yaml @@ -0,0 +1,10 @@ +Department: Institute of Astronomy +Description: We study solar and stellar physical processes driven by magnetic field + dynamics with various numerical models and observational data analysis. We are also + involved in understanding the cyclic variation of the large-scale heliospheric magnetic + field. +FieldOfScience: Astronomy and Astrophysics +FieldOfScienceID: '40.0201' +InstitutionID: https://osg-htc.org/iid/34mcskejwysy +Organization: "University of Hawai\u02BBi at M\u0101noa" +PIName: Xudong Sun diff --git a/projects/Howard_Parry.yaml b/projects/Howard_Parry.yaml new file mode 100644 index 000000000..556648251 --- /dev/null +++ b/projects/Howard_Parry.yaml @@ -0,0 +1,8 @@ +Department: Microbiology +Description: The thrust of this project is to obtain a functional, structural and + mechanistic understanding of iron transport and systemwide homeostasis. +FieldOfScience: Biophysics +FieldOfScienceID: '26.0203' +InstitutionID: https://osg-htc.org/iid/6flk2zw30csu +Organization: Howard University +PIName: Christian Parry diff --git a/projects/IAState_Huang.yaml b/projects/IAState_Huang.yaml new file mode 100644 index 000000000..9cd839e9b --- /dev/null +++ b/projects/IAState_Huang.yaml @@ -0,0 +1,10 @@ +Department: Computer Sciences +Description: 'Development of algorithms and software for bioinformatics. + + + https://faculty.sites.iastate.edu/xqhuang/' +FieldOfScience: Computer Science +FieldOfScienceID: '11.0701' +InstitutionID: https://osg-htc.org/iid/wbwnw037cybm +Organization: Iowa State University +PIName: Xiaoqiu Huang diff --git a/projects/Illinois_2024_Gammie.yaml b/projects/Illinois_2024_Gammie.yaml new file mode 100644 index 000000000..1332cb39c --- /dev/null +++ b/projects/Illinois_2024_Gammie.yaml @@ -0,0 +1,7 @@ +Department: Physics +Description: This project involves black holes, star and planet formation, and accretion physics. It includes computer simulation of astrophysical plasmas, particularly studies of hot plasmas accreting onto black holes +FieldOfScience: Astrophysics +FieldOfScienceID: '40.0202' +InstitutionID: https://osg-htc.org/iid/10izzs5e7v1r +Organization: University of Illinois Urbana-Champaign +PIName: Charles Gammie diff --git a/projects/Illinois_Goyal.yaml b/projects/Illinois_Goyal.yaml new file mode 100644 index 000000000..ab92d457a --- /dev/null +++ b/projects/Illinois_Goyal.yaml @@ -0,0 +1,8 @@ +Department: Computer Science +Description: Diverse set of projects focusing on vision models/LLMs primarily falling + under the umbrella terms of "machine unlearning" and "human-AI alignment" +FieldOfScience: Computer Science +FieldOfScienceID: '11.0701' +InstitutionID: https://osg-htc.org/iid/10izzs5e7v1r +Organization: University of Illinois Urbana-Champaign +PIName: Agam Goyal diff --git a/projects/Illinois_Park.yaml b/projects/Illinois_Park.yaml new file mode 100644 index 000000000..2b58f4bca --- /dev/null +++ b/projects/Illinois_Park.yaml @@ -0,0 +1,12 @@ +Department: Statistics +Description: 'My research broadly focuses on (a) causal inference under interference + and non-i.i.d. settings, (b) causal inference under unmeasured confounding, and + (c) optimal treatment regimes and policy learning. A common theme in my research + is to use non/semiparametric theory and optimization methods to develop efficient + and robust estimators of causal quantities in (a)-(c). + Website: https://www.chanpark.net/' +FieldOfScience: Statistics +FieldOfScienceID: '27.0503' +InstitutionID: https://osg-htc.org/iid/10izzs5e7v1r +Organization: University of Illinois Urbana-Champaign +PIName: Chan Park diff --git a/projects/Internet2_Brunson.yaml b/projects/Internet2_Brunson.yaml new file mode 100644 index 000000000..805f0d4e8 --- /dev/null +++ b/projects/Internet2_Brunson.yaml @@ -0,0 +1,11 @@ +Department: Research Engagement +Description: Research Engagement at Internet2 works to enhance global research computing + and data capability (RCD), capacity, and resources to better support and advance + research activity. We do this by providing consulting and training, facilitating + a professional community to develop tools and best practices, and supporting RCD + professionals as research partners. https://internet2.edu/community/research-engagement/ +FieldOfScience: Multidisciplinary +FieldOfScienceID: 30.9999f +InstitutionID: https://osg-htc.org/iid/rdbgla0ef33b +Organization: Internet2 +PIName: Dana Brunson diff --git a/projects/JHUAPL_Clement.yaml b/projects/JHUAPL_Clement.yaml new file mode 100644 index 000000000..e796ff9b9 --- /dev/null +++ b/projects/JHUAPL_Clement.yaml @@ -0,0 +1,12 @@ +Department: Physics & Astronomy +Description: The formation path way for the compact habitable zone planets system + TOI-700 composed of 4 planets is still a mystery. We use N-body simulations with + Mercury hybrid integrator to explore how this system was formed. Specifically, we + explore the possibility that the TOI-700 system started as a chain of planets in + mean-motion-resonance, and was then destabilized after the gas disk dissipated. +FieldOfScience: Astronomy +FieldOfScienceID: '40.0203' +InstitutionID: "https://osg-htc.org/iid/bifky2z4c98h" +Organization: Johns Hopkins University Applied Physics Laboratory +PIName: Matthew Clement + diff --git a/projects/JacksonState_Talchabhadel.yaml b/projects/JacksonState_Talchabhadel.yaml new file mode 100644 index 000000000..b4a6dfd74 --- /dev/null +++ b/projects/JacksonState_Talchabhadel.yaml @@ -0,0 +1,12 @@ +Department: Civil and Environmental Engineering +Description: research focuses on the interconnected impacts of climate change, flooding, + and heatwaves. We employ both physically-based and data-driven models to analyze + these phenomena. Our physically-based approach utilizes advanced climate and hydrological + simulations to project future scenarios, while our data-driven methodology leverages + machine learning and statistical techniques to identify patterns in large-scale + climate datasets. +FieldOfScience: Civil Engineering +FieldOfScienceID: '14.0801' +InstitutionID: "https://osg-htc.org/iid/q8m8imsihb9c" +Organization: Jackson State University +PIName: Rocky Talchabhadel diff --git a/projects/LIGO_GstLAL.yaml b/projects/LIGO_GstLAL.yaml new file mode 100644 index 000000000..624956dae --- /dev/null +++ b/projects/LIGO_GstLAL.yaml @@ -0,0 +1,7 @@ +Department: LIGO +Description: LIGO collaboration members contributing to the GstLAL package +FieldOfScience: Astronomy and Astrophysics +FieldOfScienceID: '40.0202' +InstitutionID: https://osg-htc.org/iid/f1tlj6c19ppg +Organization: Pennsylvania State University +PIName: Chad Hanna diff --git a/projects/LSU_Chakraborty.yaml b/projects/LSU_Chakraborty.yaml new file mode 100644 index 000000000..188c99af5 --- /dev/null +++ b/projects/LSU_Chakraborty.yaml @@ -0,0 +1,13 @@ +Department: Physics and Astronomy +Description: 'Work in the interdisciplinary fields in theoretical condensed matter + physics, quantum information science and statistical physics. My research focuses + on non-equilibrium dynamics of quantum many-particle systems, especially open quantum + systems and disordered systems. My "Quantum Dynamics and Information" group at LSU + will focus on three integrated research areas: (1) entanglement dynamics in monitored + quantum circuits, (2) manipulation of quantum material by light and (3) dynamics + of disordered systems and thermalization.' +FieldOfScience: Physics +FieldOfScienceID: '40.0808' +InstitutionID: https://osg-htc.org/iid/lk45ajqlj7f1 +Organization: Louisiana State University +PIName: Ahana Chakraborty diff --git a/projects/MSU_Jacobson.yaml b/projects/MSU_Jacobson.yaml new file mode 100644 index 000000000..3684a5b6c --- /dev/null +++ b/projects/MSU_Jacobson.yaml @@ -0,0 +1,15 @@ +Department: Earth & Environmental Sciences +Description: >- + My students and I are planetary scientists who study the planets, + moons, asteroids, and comets of the Solar System as well as other + planetary systems with computational tools from the fields of + celestial mechanics, geophysics, and geochemistry. Our science is + driven by big questions: where did our world come from? What other + kinds of worlds are out there? And, how unique is our planets + history? (www.planetarymakerspace.org) +FieldOfScience: Earth Sciences +FieldOfScienceID: 40.0601b +InstitutionID: https://osg-htc.org/iid/wala2w0ka0gb +Organization: Michigan State University +PIName: Seth Jacobson + diff --git a/projects/Michigan_2023_Riles.yaml b/projects/Michigan_2023_Riles.yaml new file mode 100644 index 000000000..34937e068 --- /dev/null +++ b/projects/Michigan_2023_Riles.yaml @@ -0,0 +1,7 @@ +Department: Physics +Description: Research on gravitational waves and elementary particle physics. +FieldOfScience: Astrophysics +FieldOfScienceID: '40.0202' +InstitutionID: https://osg-htc.org/iid/4ocf9kvq30fn +Organization: University of Michigan–Ann Arbor +PIName: J. Keith Riles diff --git a/projects/Mines_2023_Stevanovic.yaml b/projects/Mines_2023_Stevanovic.yaml new file mode 100644 index 000000000..57921fe1e --- /dev/null +++ b/projects/Mines_2023_Stevanovic.yaml @@ -0,0 +1,8 @@ +Department: Metallurgical and Materials Engineering +Description: Computational materials physics + and materials science research. Focus on inorganic functional materials, materials discovery and design. +FieldOfScience: Materials Science +FieldOfScienceID: '14.1801b' +InstitutionID: https://osg-htc.org/iid/2gwyao3kqhpn +Organization: Colorado School of Mines +PIName: Vladan Stevanovic diff --git a/projects/NCSU_2023_Hall.yaml b/projects/NCSU_2023_Hall.yaml new file mode 100644 index 000000000..7d2724694 --- /dev/null +++ b/projects/NCSU_2023_Hall.yaml @@ -0,0 +1,7 @@ +Department: Chemical and Biomolecular Engineering +Description: Research involving biomolecule simulation, self-assembly of soft materials, and the design of synthetic peptides. +FieldOfScience: Chemical Engineering +FieldOfScienceID: '14.0701' +InstitutionID: https://osg-htc.org/iid/mcejqenugk6j +Organization: North Carolina State University +PIName: Carol Hall diff --git a/projects/NIST_Jollota.yaml b/projects/NIST_Jollota.yaml new file mode 100644 index 000000000..80dd9b4d9 --- /dev/null +++ b/projects/NIST_Jollota.yaml @@ -0,0 +1,10 @@ +Department: Radiation Physics Division +Description: I will be working on Monte Carlo based simulations for radiation transport. + This will aid in determination of primary standards for radiation sources that will + be transferred to clinically relevant quantities. +FieldOfScience: Physics +FieldOfScienceID: '40.0801' +InstitutionID: https://osg-htc.org/iid/2c1dbp9xe39x +Organization: National Institute of Standards and Technology +PIName: Sean Jollota + diff --git a/projects/NOAA_Boyer.yaml b/projects/NOAA_Boyer.yaml new file mode 100644 index 000000000..2d54c9c6e --- /dev/null +++ b/projects/NOAA_Boyer.yaml @@ -0,0 +1,16 @@ +Department: CIRES +Description: 'https://www.ncei.noaa.gov/products/world-ocean-database + + The World Ocean Database (WOD) is the world''s largest collection of uniformly formatted, + quality controlled, publicly available ocean profile data. It is a powerful tool + for oceanographic, climatic, and environmental research, and the end result of more + than 20 years of coordinated efforts to incorporate data from institutions, agencies, + individual researchers, and data recovery initiatives into a single database. WOD + data spans from Captain Cook''s 1772 voyage to the contemporary Argo period, making + it a valuable resource for long term and historical ocean climate analysis. Original + versions of the 20,000+ datasets in the WOD are available' +FieldOfScience: Ocean Sciences +FieldOfScienceID: 30.3201b +InstitutionID: https://osg-htc.org/iid/dj8afwaycl7r +Organization: National Oceanic and Atmospheric Administration +PIName: Tim Boyer diff --git a/projects/NRAO_2022_Bhatnagar.yaml b/projects/NRAO_2022_Bhatnagar.yaml new file mode 100644 index 000000000..5d6d1e0ac --- /dev/null +++ b/projects/NRAO_2022_Bhatnagar.yaml @@ -0,0 +1,7 @@ +Department: +Description: Research related to its operation of its high-sensitivity radio telescopes for use by scientists around the world. +FieldOfScience: Astronomy +FieldOfScienceID: '40.0201' +InstitutionID: https://osg-htc.org/iid/2vy8kkzhno9o +Organization: National Radio Astronomy Observatory +PIName: Sanjay Bhatnagar diff --git a/projects/NWMissouri_2023_Chakraborty.yaml b/projects/NWMissouri_2023_Chakraborty.yaml new file mode 100644 index 000000000..2f6d6fdc6 --- /dev/null +++ b/projects/NWMissouri_2023_Chakraborty.yaml @@ -0,0 +1,9 @@ +Department: Natural Sciences +Description: Photon and particle impact spectroscopy of atoms, fullerenes, endofullerenes, buckyonions, and metallic nanoparticles; + Ultrafast attosecond and intercoulombic decay (ICD) processes in the above systems; + Charge transfer in ion–nanostructured surface interactions +FieldOfScience: Physics +FieldOfScienceID: '30.9999c' +InstitutionID: https://osg-htc.org/iid/iehnhhh561io +Organization: Northwest Missouri State University +PIName: Himadri Chakraborty diff --git a/projects/NYCDSS_Staff.yaml b/projects/NYCDSS_Staff.yaml new file mode 100644 index 000000000..cd1cce6c5 --- /dev/null +++ b/projects/NYCDSS_Staff.yaml @@ -0,0 +1,9 @@ +Department: Human Resources Administration +Description: >- + Anomaly detection research across various cohorts based on user + activity modeling. +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/sg7tvfh0b232 +Organization: New York City Department of Social Services +PIName: Sathish Ningaiah diff --git a/projects/OSG_OSGUS24.yaml b/projects/OSG_OSGUS24.yaml new file mode 100644 index 000000000..b3593fc0b --- /dev/null +++ b/projects/OSG_OSGUS24.yaml @@ -0,0 +1,7 @@ +Department: Computer Sciences +Description: 'Work run by participants in the 2024 OSG School' +FieldOfScience: Research Computing +Organization: University of Wisconsin-Madison +PIName: Tim Cartwright +InstitutionID: 'https://osg-htc.org/iid/fq8thqsj99zh' +FieldOfScienceID: '11.0701b' diff --git a/projects/OU_2023_Wang.yaml b/projects/OU_2023_Wang.yaml new file mode 100644 index 000000000..72c6c7ce7 --- /dev/null +++ b/projects/OU_2023_Wang.yaml @@ -0,0 +1,7 @@ +Department: School of Sustainable Chemical, Biological, and Materials Engineering +Description: This project is focused on computational simulations of materials chemistry, physics and engineering with an emphasis on nanoscale materials, using density functional theory (DFT) calculations and molecular dynamics simulations. In particular, we are interested in advanced energy materials and their applications in catalysis, molecular sensors, and energy conversion. +FieldOfScience: Chemical Engineering +FieldOfScienceID: '14.0701' +InstitutionID: https://osg-htc.org/iid/xvsrc4eixk2g +Organization: University of Oklahoma +PIName: Bin Wang diff --git a/projects/OregonState_Staff b/projects/OregonState_Staff new file mode 100644 index 000000000..c273f3c80 --- /dev/null +++ b/projects/OregonState_Staff @@ -0,0 +1,8 @@ +Department: College of Engineering +Description: Requesting access as a facilitator to demonstrate job submission to potential + applicants. +FieldOfScience: Computer Science +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/h0s7lk6vj9dn +Organization: Oregon State University +PIName: Christopher Thompson diff --git a/projects/OregonState_Staff.yaml b/projects/OregonState_Staff.yaml new file mode 100644 index 000000000..c273f3c80 --- /dev/null +++ b/projects/OregonState_Staff.yaml @@ -0,0 +1,8 @@ +Department: College of Engineering +Description: Requesting access as a facilitator to demonstrate job submission to potential + applicants. +FieldOfScience: Computer Science +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/h0s7lk6vj9dn +Organization: Oregon State University +PIName: Christopher Thompson diff --git a/projects/PortlandState_Venkatachalapathy.yaml b/projects/PortlandState_Venkatachalapathy.yaml new file mode 100644 index 000000000..ad216fe33 --- /dev/null +++ b/projects/PortlandState_Venkatachalapathy.yaml @@ -0,0 +1,11 @@ +Department: Complex Systems +Description: Conducting graduate thesis research on an evolutionary game-theoretic + model in which games are played sequentially amongst a large population of agents + distributed over various social network structures. The goal of this research is + to characterize the population-level social dynamics of the system as social "norms" + shift to different meta-stable equilibria. +FieldOfScience: Other +FieldOfScienceID: '45.1101' +InstitutionID: https://osg-htc.org/iid/26b8vvvqixd6 +Organization: Portland State University +PIName: Rajesh Venkatachalapathy diff --git a/projects/PFW_Sharma.yaml b/projects/Purdue_Sharma.yaml similarity index 100% rename from projects/PFW_Sharma.yaml rename to projects/Purdue_Sharma.yaml diff --git a/projects/Rice_Foster.yaml b/projects/Rice_Foster.yaml new file mode 100644 index 000000000..1e91029e1 --- /dev/null +++ b/projects/Rice_Foster.yaml @@ -0,0 +1,12 @@ +Department: Physics and Astronomy +Description: Working on the interlay of correlated order and spatially rarified wave + functions indued by spatial inhomogeneities in condensed matter systems. We have + shown that the superconductivity can be enhanced in quasiperiodic twisted bilayer + graphene with a preprint (https://doi.org/10.48550/arXiv.2406.06676). Currently + we are focused on quasiperiodic twisted trilayers, where the physics is much richer + and our results have a closer relation with experiments. +FieldOfScience: Physics +FieldOfScienceID: '40.0801' +InstitutionID: https://osg-htc.org/iid/mqyva49x2em4 +Organization: Rice University +PIName: Matthew Foster diff --git a/projects/SLU_Ahn.yaml b/projects/SLU_Ahn.yaml new file mode 100644 index 000000000..77bbf6c02 --- /dev/null +++ b/projects/SLU_Ahn.yaml @@ -0,0 +1,7 @@ +Department: Computer Science +Description: Studying multimodal ML applications in biomedical science. +FieldOfScience: Computer Science +FieldOfScienceID: '11.0701' +InstitutionID: https://osg-htc.org/iid/p5mk8p3jv6wa +Organization: Saint Louis University +PIName: Tae-Hyuk Ahn diff --git a/projects/SparseNeuro.yaml b/projects/SparseNeuro.yaml new file mode 100644 index 000000000..72d46367f --- /dev/null +++ b/projects/SparseNeuro.yaml @@ -0,0 +1,9 @@ +Description: >- + Using machine learning techniques that discover solutions with anatomically and temporally structured sparsity, + we aim to test representational predictions from cognitive psychology using whole-brain neuroimaging datasets. +Department: Department of Psychology +FieldOfScience: Behavioral Science +Organization: Louisiana State University +PIName: Christopher Cox +InstitutionID: 'https://osg-htc.org/iid/lk45ajqlj7f1' +FieldOfScienceID: '30.1701' diff --git a/projects/Swarthmore_Collins.yaml b/projects/Swarthmore_Collins.yaml new file mode 100644 index 000000000..2b10865b8 --- /dev/null +++ b/projects/Swarthmore_Collins.yaml @@ -0,0 +1,10 @@ +Department: Department of Biology +Description: We use imaging of planarian behavioral responses to evaluate effects + on neuronal function and neurodevelopment/regeneration. Our projects span from understanding + the neuroethology of different behaviors to using planarians as a screening platform + for different chemicals, to understand both neuroefficacy and toxicology. +FieldOfScience: Biological Sciences +FieldOfScienceID: '26.1504' +InstitutionID: https://osg-htc.org/iid/a9u068qpwh85 +Organization: Swarthmore College +PIName: Eva-Maria Collins diff --git a/projects/TIFR_Balakrishnan.yaml b/projects/TIFR_Balakrishnan.yaml new file mode 100644 index 000000000..f67fa2586 --- /dev/null +++ b/projects/TIFR_Balakrishnan.yaml @@ -0,0 +1,15 @@ +Department: Tata Institute of Fundamental Research +Description: Large scale Monte Carlo simulations for interpretation of experimental + cosmic ray data. CORSIKA is one such cosmic ray simulation package widely used among + the cosmic ray community for studying the extensive air shower development in the + Earth's atmosphere under various simulation world conditions. Subsequently, the + simulated cosmic ray secondaries are processed with detector simulation tools for + generating measurable physical quantities that can be compared with experiment. + These procedures are important for improving the current understanding of cosmic + ray modulation in the interplanetary space and solar storms. These studies have + potential impact in space-weather studies that can directly benefit the society. +FieldOfScience: Astronomy and Astrophysics +FieldOfScienceID: '40.0299' +InstitutionID: https://osg-htc.org/iid/7cvhtkt3j3un +Organization: Tata Institute of Fundamental Research +PIName: Hari Balakrishnan diff --git a/projects/TU_OTS.yaml b/projects/TU_OTS.yaml new file mode 100644 index 000000000..dd32bfe98 --- /dev/null +++ b/projects/TU_OTS.yaml @@ -0,0 +1,8 @@ +Department: Office of Technology Services +Description: Group for OTS staff at Towson University to learn about the OSPool +FieldOfScience: Computer and Information Services +FieldOfScienceID: '11.1099' +InstitutionID: https://osg-htc.org/iid/jthubnuqeush +Organization: Towson University +PIName: Stuart Page + diff --git a/projects/UAF_2024_Aschwanden.yaml b/projects/UAF_2024_Aschwanden.yaml new file mode 100644 index 000000000..33721cd33 --- /dev/null +++ b/projects/UAF_2024_Aschwanden.yaml @@ -0,0 +1,7 @@ +Department: Geophysical Institute +Description: +FieldOfScience: Geological and Earth Sciences +FieldOfScienceID: '40.0699b' +InstitutionID: https://osg-htc.org/iid/85bj3tcfwa1z +Organization: University of Alaska Fairbanks +PIName: Andy Aschwanden diff --git a/projects/UCSB_Bao.yaml b/projects/UCSB_Bao.yaml new file mode 100644 index 000000000..01a63f1fd --- /dev/null +++ b/projects/UCSB_Bao.yaml @@ -0,0 +1,11 @@ +Department: Kavil Institute of Theoretical Physics +Description: I am a theorist working on the intersection of condensed matter physics + and quantum information science. My recent focus is many-body quantum dynamics, + quantum error correction, and topological phases. My research uses both analytical + methods and numerical tools such as tensor networks, Monte Carlo simulation, and + Clifford simulation. Here is a link to my Google scholar profile. +FieldOfScience: Condensed Matter Physics +FieldOfScienceID: '40.0808' +InstitutionID: https://osg-htc.org/iid/rglo22hiw2ge +Organization: University of California, Santa Barbara +PIName: Yimu Bao diff --git a/projects/UCSD_2024_Kandes.yaml b/projects/UCSD_2024_Kandes.yaml new file mode 100644 index 000000000..666d37c12 --- /dev/null +++ b/projects/UCSD_2024_Kandes.yaml @@ -0,0 +1,7 @@ +Department: +Description: +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/06wup3aye2t7 +Organization: University of California, San Diego +PIName: Mahidhar Tatineni diff --git a/projects/UCSD_Andrijauskas.yaml b/projects/UCSD_Andrijauskas.yaml new file mode 100644 index 000000000..4667308e6 --- /dev/null +++ b/projects/UCSD_Andrijauskas.yaml @@ -0,0 +1,11 @@ +Department: San Diego Supercomputing Center +Description: >- + Research students working with Fabio. Projects include: information + visualization for the OSDF transfer logs, solar image processing + using the OSDF and OSPool. +FieldOfScience: Computer Science +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/06wup3aye2t7 +Organization: University of California, San Diego +PIName: Fabio Andrijauskas + diff --git a/projects/UCSD_Sfiligoi.yaml b/projects/UCSD_Sfiligoi.yaml new file mode 100644 index 000000000..c6973bf11 --- /dev/null +++ b/projects/UCSD_Sfiligoi.yaml @@ -0,0 +1,10 @@ +Department: San Diego Supercomputing Center +Description: >- + The mission of the Global Infrastructure Lab (GIL) is to tests and + evaluate infrastructure software. This project is used to exercise + the OSPool services. +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/06wup3aye2t7 +Organization: University of California, San Diego +PIName: Igor Sfiligoi diff --git a/projects/UConn_Chen.yaml b/projects/UConn_Chen.yaml new file mode 100644 index 000000000..becbffbdc --- /dev/null +++ b/projects/UConn_Chen.yaml @@ -0,0 +1,10 @@ +Description: Bayesian methods for leveraging historical data in clinical trials and Bayesian adaptive designs. +Department: Statistics +FieldOfScience: Statistics +InstitutionID: https://osg-htc.org/iid/eq81k8qpbcq9 +Organization: University of Connecticut +PIName: Ming-Hui Chen + +Sponsor: + CampusGrid: + Name: OSG Connect diff --git a/projects/UMBC_Nasipak.yaml b/projects/UMBC_Nasipak.yaml new file mode 100644 index 000000000..9e6fe3b64 --- /dev/null +++ b/projects/UMBC_Nasipak.yaml @@ -0,0 +1,9 @@ +Department: Center for Space Sciences and Technology +Description: Gravitational wave modeling, specifically the modeling the dynamics and + gravitational waves of black hole binaries known as extreme-mass-ratio inspirals + for future milliHertz detectors. +FieldOfScience: Astronomy +FieldOfScienceID: '40.0201' +InstitutionID: "https://osg-htc.org/iid/lzltwgdaag8g" +Organization: University of Maryland, Baltimore County +PIName: Zachary Nasipak diff --git a/projects/UMaine_Legaard.yaml b/projects/UMaine_Legaard.yaml new file mode 100644 index 000000000..3b4ae0718 --- /dev/null +++ b/projects/UMaine_Legaard.yaml @@ -0,0 +1,10 @@ +Department: Center for Research on Sustainable Forests +Description: Inverse parameterization of biomass growth in the LANDIS-II forest model + using a pattern search algorithm to identify parameter combinations that yield predicted + growth consistent with national forest inventory field measurement data. +FieldOfScience: Geological and Earth Sciences +FieldOfScienceID: '03.0101' +InstitutionID: https://osg-htc.org/iid/jxj9y1j53ii6 +Organization: University of Maine +PIName: Kasey Legaard + diff --git a/projects/UNCW_Dogan.yaml b/projects/UNCW_Dogan.yaml new file mode 100644 index 000000000..64d0597ae --- /dev/null +++ b/projects/UNCW_Dogan.yaml @@ -0,0 +1,7 @@ +Department: Computer Science +Description: Medical Question Answering https://medvidqa.github.io +FieldOfScience: Computer Science +FieldOfScienceID: '11.0102' +InstitutionID: https://osg-htc.org/iid/14m1189m446l +Organization: University of North Carolina Wilmington +PIName: Gulustan Dogan diff --git a/projects/UNC_2023_Mandal.yaml b/projects/UNC_2023_Mandal.yaml new file mode 100644 index 000000000..48caf5934 --- /dev/null +++ b/projects/UNC_2023_Mandal.yaml @@ -0,0 +1,7 @@ +Department: Renaissance Computing Institute +Description: +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/nhz3r9d0308l +Organization: University of North Carolina at Chapel Hill +PIName: Anirban Mandal diff --git a/projects/UNC_Xiao.yaml b/projects/UNC_Xiao.yaml new file mode 100644 index 000000000..0d91a756b --- /dev/null +++ b/projects/UNC_Xiao.yaml @@ -0,0 +1,16 @@ +Department: Biology +Description: In the wild, animal groups such as fish schools and sheep herds exhibit + collective motion behavior during foraging, predator evasion and migration. The + mechanism for how individual sensory input is propagated through the modular groups + to result in emergent behavior is elusive. We use a 2D self-propelled particle model + that incorporates animal-like topological social alignment interaction as well as + informed individuals with access to environmental cues. We investigate the effect + of the self-organized cluster structure on how informed individuals transmit information. + We aim to determine the order of phase transition in global polarization and local + structure, as informedness permeates the group. +FieldOfScience: Biological Sciences +FieldOfScienceID: '26.0101' +InstitutionID: https://osg-htc.org/iid/nhz3r9d0308l +Organization: University of North Carolina at Chapel Hill +PIName: Yufei Xiao + diff --git a/projects/UNL_2024_Tsymbal.yaml b/projects/UNL_2024_Tsymbal.yaml new file mode 100644 index 000000000..f1776a4ac --- /dev/null +++ b/projects/UNL_2024_Tsymbal.yaml @@ -0,0 +1,7 @@ +Department: Physics and Astronomy +Description: +FieldOfScience: Materials Science +FieldOfScienceID: '14.1801b' +InstitutionID: https://osg-htc.org/iid/q9k1b8dfrw25 +Organization: University of Nebraska-Lincoln +PIName: Evgeny Tsymbal diff --git a/projects/UTD_Mohapatra.yaml b/projects/UTD_Mohapatra.yaml new file mode 100644 index 000000000..77b7d256c --- /dev/null +++ b/projects/UTD_Mohapatra.yaml @@ -0,0 +1,7 @@ +Department: Cyberinfrastructure Research Computing +Description: Contributor to MsPASS domain-specific package for seismologists. (https://www.mspass.org/getting_started/introduction.html) +FieldOfScience: Geological and Earth Sciences +FieldOfScienceID: '40.0699' +InstitutionID: https://osg-htc.org/iid/eouhp4r1y2e2 +Organization: University of Texas at Dallas +PIName: Sasmita Mohapatra diff --git a/projects/UToledo_2023_Gupta.yaml b/projects/UToledo_2023_Gupta.yaml new file mode 100644 index 000000000..189d21a23 --- /dev/null +++ b/projects/UToledo_2023_Gupta.yaml @@ -0,0 +1,7 @@ +Department: Mechanical, Industrial and Manufacturing Engineering +Description: +FieldOfScience: Engineering +FieldOfScienceID: '14.3501' +InstitutionID: https://osg-htc.org/iid/f697s61oo78e +Organization: University of Toledo +PIName: Anju Gupta diff --git a/projects/UWMadison_2023_Lee.yaml b/projects/UWMadison_2023_Lee.yaml new file mode 100644 index 000000000..031ac24af --- /dev/null +++ b/projects/UWMadison_2023_Lee.yaml @@ -0,0 +1,7 @@ +Department: Computer Sciences +Description: +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison +PIName: Yong Jae Lee diff --git a/projects/UWMadison_2023_Wright.yaml b/projects/UWMadison_2023_Wright.yaml new file mode 100644 index 000000000..0fc1bdad5 --- /dev/null +++ b/projects/UWMadison_2023_Wright.yaml @@ -0,0 +1,7 @@ +Department: Civil and Environmental Engineering +Description: +FieldOfScience: Civil Engineering +FieldOfScienceID: '14.0801' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison +PIName: Daniel Wright diff --git a/projects/UWMadison_CHTCFellows.yaml b/projects/UWMadison_CHTCFellows.yaml new file mode 100644 index 000000000..317c05433 --- /dev/null +++ b/projects/UWMadison_CHTCFellows.yaml @@ -0,0 +1,7 @@ +Department: Computer Sciences +Description: Project for summer fellows at CHTC +FieldOfScience: Computer and Information Science and Engineering +FieldOfScienceID: '11.0101' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison +PIName: Brian Bockelman diff --git a/projects/UWMadison_Gluck-Thaler.yaml b/projects/UWMadison_Gluck-Thaler.yaml new file mode 100644 index 000000000..dca7f408f --- /dev/null +++ b/projects/UWMadison_Gluck-Thaler.yaml @@ -0,0 +1,8 @@ +Department: Plant Pathology +Description: Understanding the molecular mechanisms of pathogenicity of necrotrophic + fungi. +FieldOfScience: Molecular and Structural Biosciences +FieldOfScienceID: '26.0803' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison +PIName: Emile Gluck-Thaler diff --git a/projects/UWMadison_Hanna.yaml b/projects/UWMadison_Hanna.yaml new file mode 100644 index 000000000..77ea629f7 --- /dev/null +++ b/projects/UWMadison_Hanna.yaml @@ -0,0 +1,9 @@ +Department: Computer Science +Description: Training a Reinforcement Learning agents which will interact with a simulated + environment collect data and make updates to a neural network. The neural networks + trained in simulation would be deployed on a physical robot in our lab. +FieldOfScience: Computer Science +FieldOfScienceID: '11.0701' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison +PIName: Josiah Hanna diff --git a/projects/UWMadison_Travers.yaml b/projects/UWMadison_Travers.yaml new file mode 100644 index 000000000..99b4d25f7 --- /dev/null +++ b/projects/UWMadison_Travers.yaml @@ -0,0 +1,8 @@ +Department: Waisman Center +Description: Study of whole brain white matter development in autistic and non-autistic + children +FieldOfScience: Neuroscience +FieldOfScienceID: '26.1501' +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh +Organization: University of Wisconsin-Madison +PIName: Brittany Travers diff --git a/projects/UW_2023_Ban.yaml b/projects/UW_2023_Ban.yaml new file mode 100644 index 000000000..fedca1b55 --- /dev/null +++ b/projects/UW_2023_Ban.yaml @@ -0,0 +1,7 @@ +Department: Civil and Environmental Engineering +Description: +FieldOfScience: Civil Engineering +FieldOfScienceID: '14.0801' +InstitutionID: https://osg-htc.org/iid/8lpmoeouw66o +Organization: University of Washington +PIName: Xuegang Ban diff --git a/projects/Wichita_Figy.yaml b/projects/Wichita_Figy.yaml new file mode 100644 index 000000000..8b7a74c52 --- /dev/null +++ b/projects/Wichita_Figy.yaml @@ -0,0 +1,8 @@ +Department: Department of Mathematics, Statistics and Physics +Description: My research field is Theoretical Physics, and I am working in Computational + Quantum Field Theory. +FieldOfScience: High Energy Physics +FieldOfScienceID: '13.1213' +InstitutionID: https://osg-htc.org/iid/p3nn2sljiwwl +Organization: Wichita State University +PIName: Terrance Figy diff --git a/projects/YSU_Yu.yaml b/projects/YSU_Yu.yaml new file mode 100644 index 000000000..a8a5687c7 --- /dev/null +++ b/projects/YSU_Yu.yaml @@ -0,0 +1,27 @@ +Department: Computer Science and Information Systems +Description: "Approximate query processing (or AQP) is an emerging research topic\ + \ in big data analytics. AQP focuses on deriving fast and accurate estimations for\ + \ complex queries that are usually time-consuming and expensive to run on large\ + \ datasets. Traditional methods, such as histogram and sketch, are insufficient\ + \ when applied to big data because of the processing limits. An essential question\ + \ lacking research is how to assess the errors of AQP estimations.\nThis project\ + \ focuses on assessing the errors of AQP query estimations, especially for common\ + \ selection queries. Traditional methods can generate confidence intervals for query\ + \ estimations based on strict assumptions such as the normal distribution assumption.\ + \ Therefore, they are not applicable to massive datasets. In this project, the PI\ + \ will employ a novel non-parametric statistical method called bootstrap sampling\ + \ which requires less strict assumptions and brings many statistical advantages.\n\ + A prototype system will be developed employing bootstrap sampling to efficiently\ + \ compute standard errors and confidence intervals for AQP systems, especially those\ + \ answering selection queries, namely \u03C3-AQP. Selection queries comprise a large\ + \ portion of daily data queries. For broader applications, this framework will allow\ + \ selection queries to include common aggregation operators such as average, sum,\ + \ and count. The PI will investigate the computing and storage costs when bootstrap\ + \ replicas are computed. A framework will be developed to automate both the AQP\ + \ estimation and error estimation operations. Extensive benchmarks will be performed\ + \ on large datasets such as the TPC-H benchmark." +FieldOfScience: Computer Science +FieldOfScienceID: '11.0701' +InstitutionID: "https://osg-htc.org/iid/afu2chyu4qlj" +Organization: Youngstown State University +PIName: Feng Yu diff --git a/projects/NMSU_SpinQuest.yaml b/projects/spinquest.yaml similarity index 100% rename from projects/NMSU_SpinQuest.yaml rename to projects/spinquest.yaml diff --git a/src/app.py b/src/app.py index 30e7d4b25..3a17aebc9 100755 --- a/src/app.py +++ b/src/app.py @@ -22,7 +22,7 @@ from webapp.common import readfile, to_xml_bytes, to_json_bytes, Filters, support_cors, simplify_attr_list, is_null, \ escape, cache_control_private, PreJSON, is_true, GRIDTYPE_1, GRIDTYPE_2, NamespacesFilters from webapp.flask_common import create_accepted_response -from webapp.exceptions import DataError, ResourceNotRegistered, ResourceMissingService +from webapp.exceptions import DataError, ResourceNotRegistered, ResourceMissingServices from webapp.forms import GenerateDowntimeForm, GenerateResourceGroupDowntimeForm, GenerateProjectForm from webapp.models import GlobalData from webapp.oasis_managers import get_oasis_manager_endpoint_info @@ -603,7 +603,7 @@ def _get_cache_authfile(public_only): fqdn=cache_fqdn, legacy=app.config["STASHCACHE_LEGACY_AUTH"], suppress_errors=False) - except (ResourceNotRegistered, ResourceMissingService) as e: + except (ResourceNotRegistered, ResourceMissingServices) as e: return Response("# {}\n" "# Please check your query or contact help@osg-htc.org\n" .format(str(e)), @@ -627,7 +627,7 @@ def _get_origin_authfile(public_only): try: auth = stashcache.generate_origin_authfile(global_data=global_data, fqdn=request.args['fqdn'], suppress_errors=False, public_origin=public_only) - except (ResourceNotRegistered, ResourceMissingService) as e: + except (ResourceNotRegistered, ResourceMissingServices) as e: return Response("# {}\n" "# Please check your query or contact help@osg-htc.org\n" .format(str(e)), diff --git a/src/schema/rgsummary.xsd b/src/schema/rgsummary.xsd index d0b68bb79..c358dfc08 100644 --- a/src/schema/rgsummary.xsd +++ b/src/schema/rgsummary.xsd @@ -30,6 +30,7 @@ + diff --git a/src/stashcache.py b/src/stashcache.py index a9ac3a5a7..494cda645 100644 --- a/src/stashcache.py +++ b/src/stashcache.py @@ -1,8 +1,9 @@ from collections import defaultdict -from typing import Dict, List, Optional +from typing import Dict, List, Optional, Sequence -from webapp.common import is_null, PreJSON, XROOTD_CACHE_SERVER, XROOTD_ORIGIN_SERVER, NamespacesFilters -from webapp.exceptions import DataError, ResourceNotRegistered, ResourceMissingService +from webapp.common import is_null, PreJSON, XROOTD_CACHE_SERVER, XROOTD_ORIGIN_SERVER, PELICAN_CACHE, PELICAN_ORIGIN, \ + NamespacesFilters +from webapp.exceptions import DataError, ResourceNotRegistered, ResourceMissingServices from webapp.models import GlobalData from webapp.topology import Resource, ResourceGroup, Topology from webapp.vos_data import VOsData @@ -22,47 +23,52 @@ def _log_or_raise(suppress_errors: bool, an_exception: BaseException, logmethod= raise an_exception -def _resource_has_cache(resource: Resource) -> bool: - return XROOTD_CACHE_SERVER in resource.service_names - -def _resource_has_origin(resource: Resource) -> bool: - return XROOTD_ORIGIN_SERVER in resource.service_names - - -def _get_resource_with_service(fqdn: Optional[str], service_name: str, topology: Topology, - suppress_errors: bool) -> Optional[Resource]: - """If given an FQDN, returns the Resource _if it has the given service. +def _get_resource_with_services(fqdn: Optional[str], service_names: Sequence[str], topology: Topology, + suppress_errors: bool) -> Optional[Resource]: + """ + If given an FQDN, returns the Resource if it has one of the given services. If given None, returns None. If multiple Resources have the same FQDN, checks the first one. If suppress_errors is False, raises an exception on the following conditions: - no Resource matching FQDN (ResourceNotRegistered) - - Resource does not provide a SERVICE_NAME (ResourceMissingService) + - Resource does not provide any of the services in SERVICE_NAMES (ResourceMissingServices) If suppress_errors is True, logs the error and returns None on the above conditions. - """ resource = None + if isinstance(service_names, str): + service_names = [service_names] if fqdn: resource = topology.safe_get_resource_by_fqdn(fqdn) if not resource: _log_or_raise(suppress_errors, ResourceNotRegistered(fqdn=fqdn)) return None - if service_name not in resource.service_names: + + for service_name in service_names: + if service_name in resource.service_names: + return resource + else: _log_or_raise( suppress_errors, - ResourceMissingService(resource, service_name) + ResourceMissingServices(resource, service_names) ) return None return resource def _get_cache_resource(fqdn: Optional[str], topology: Topology, suppress_errors: bool) -> Optional[Resource]: - """Convenience wrapper around _get_resource-with-service() for a cache""" - return _get_resource_with_service(fqdn, XROOTD_CACHE_SERVER, topology, suppress_errors) + """ + Convenience wrapper around _get_resource_with_services() for an xrootd + or pelican cache + """ + return _get_resource_with_services(fqdn, [XROOTD_CACHE_SERVER, PELICAN_CACHE], topology, suppress_errors) def _get_origin_resource(fqdn: Optional[str], topology: Topology, suppress_errors: bool) -> Optional[Resource]: - """Convenience wrapper around _get_resource-with-service() for an origin""" - return _get_resource_with_service(fqdn, XROOTD_ORIGIN_SERVER, topology, suppress_errors) + """ + Convenience wrapper around _get_resource_with_services() for an xrootd + or pelican origin + """ + return _get_resource_with_services(fqdn, [XROOTD_ORIGIN_SERVER, PELICAN_ORIGIN], topology, suppress_errors) def resource_allows_namespace(resource: Resource, namespace: Optional[Namespace]) -> bool: @@ -120,7 +126,8 @@ def get_supported_caches_for_namespace(namespace: Namespace, topology: Topology) all_caches = [resource for group in resource_groups for resource in group.resources - if _resource_has_cache(resource)] + if (resource.has_xrootd_cache or + resource.has_pelican_cache)] return [cache for cache in all_caches if namespace_allows_cache_resource(namespace, cache) @@ -546,6 +553,8 @@ def get_namespaces_info(global_data: GlobalData, filters: Optional[NamespacesFil If `include_downed` is True, caches/origins in downtime are also included. If `include_inactive` is True, caches/origins that are not marked as active are also included. + + NOTE: This is specific to XRootD caches and origins; Pelican caches and origins are not included. """ if filters is None: filters = NamespacesFilters() @@ -579,10 +588,10 @@ def _service_resource_dict( "production": production, } - def _cache_resource_dict(r: Resource): + def _xrootd_cache_resource_dict(r: Resource): return _service_resource_dict(r=r, service_name=XROOTD_CACHE_SERVER, auth_port_default=8443, unauth_port_default=8000) - def _origin_resource_dict(r: Resource): + def _xrootd_origin_resource_dict(r: Resource): return _service_resource_dict(r=r, service_name=XROOTD_ORIGIN_SERVER, auth_port_default=1095, unauth_port_default=1094) def _namespace_dict(ns: Namespace): @@ -653,12 +662,12 @@ def _resource_has_downed_origin(r: Resource, t: Topology): if group.itb and not filters.itb: continue for resource in group.resources: - if (_resource_has_cache(resource) + if (resource.has_xrootd_cache and (filters.include_inactive or resource.is_active) and (filters.include_downed or not _resource_has_downed_cache(resource, topology)) ): cache_resource_objs[resource.name] = resource - cache_resource_dicts[resource.name] = _cache_resource_dict(resource) + cache_resource_dicts[resource.name] = _xrootd_cache_resource_dict(resource) # Build a dict of origin resources @@ -671,12 +680,12 @@ def _resource_has_downed_origin(r: Resource, t: Topology): if group.itb and not filters.itb: continue for resource in group.resources: - if (_resource_has_origin(resource) + if (resource.has_xrootd_origin and (filters.include_inactive or resource.is_active) and (filters.include_downed or not _resource_has_downed_origin(resource, topology)) ): origin_resource_objs[resource.name] = resource - origin_resource_dicts[resource.name] = _origin_resource_dict(resource) + origin_resource_dicts[resource.name] = _xrootd_origin_resource_dict(resource) result_namespaces = [] for stashcache_obj in vos_data.stashcache_by_vo_name.values(): diff --git a/src/templates/iframe.html.j2 b/src/templates/iframe.html.j2 index 316284e18..a63f1b5d8 100644 --- a/src/templates/iframe.html.j2 +++ b/src/templates/iframe.html.j2 @@ -220,30 +220,47 @@ will want to adjust the Map.data which populates the select input and legend. const compute_services = new Set(["CE", "Submit Node", "Connect", "GUMS Server", "Glidein factory", "VOMS Server", "Execution Endpoint"]); const storage_services = new Set(["Squid", "SRMv2", "XRootD cache server", "GridFtp", "XRootD component", "XRootD origin server", "SRMv1", "LFC", "Apache Server", "FTS"]); const network_services = new Set(["net.perfSONAR.Bandwidth", "net.perfSONAR.Latency"]); - const ospool_resources = new Set([ - "UMT-Hellgate-CE1", "SU-ITS-CE3", "Expanse-PATH-EP", "SU-ITS-CE2", "Lancium-PEP", "UNL-PATH-EP", "UConn-HPC", - "SDSC-PRP-OSPool-Provisioner", "IU-Jetstream2-Backfill", "Lancium-Backfill", "WISC-PATH-EP", "GPGrid", "MWT2", - "GLOW", "Purdue-Geddes", "Lehigh - Hawk", "UW-IT", "NWICG_NDCMS", "UColorado_HEP", "TACC-Jetstream-Backfill", - "UConn-OSG", "GPN-GP-ARGO-Backfill", "AMNH-Mendel-CE1", "BNL-ATLAS", "TCNJ-ELSA", "CUmulus-Backfill", - "AMNH-HEL-CE1", "Rice-RAPID-Backfill", "OSG_US_FSU_HNPGRID", "GP-ARGO-wichita-backfill", "SDSC-PRP-CE1", - "UA-HPC-CE1", "VU-AUGIE", "SIUE-CC-production", "GP-ARGO-dsu-backfill", "SLATE_US_NMSU_DISCOVERY", - "UC-Denver-CE1", "UTC-Epyc", "Crane", "AGLT2", "GP-ARGO-uams-backfill", "SYRA-PATH-EP", "GP-ARGO-oru-backfill", - "USCMS-FNAL-WC1", "GP-ARGO-sdsmt-backfill", "GP-ARGO-sdsu-backfill", "GP-ARGO-astate-backfill", - "GP-ARGO-usd-backfill", "Georgia_Tech_PACE_CE_2", "GP-ARGO-ksu-backfill", "GP-ARGO-emporia-backfill", - "Rhodes-HPC-CE1", "Swan-CE1", "GP-ARGO-langston-backfill", "GP-ARGO-uark-backfill", - "GP-ARGO-creighton-backfill", "ODU-Ubuntu", "LSUHSC-Tigerfish-CE1", "WTAMU_HPC", "ASU-DELL_M420", - "GP-ARGO-mst-backfill", "GP-ARGO-ku-backfill", "uprm-cms", "WSU-GRID", "USC-CARC-Artemis-Backfill", - "FANDM-ITS", "Clarkson-ACRES-CE2", "NMSU-Discovery-CE1", "LC-ITS", "Rhino", "UA-LR-ITS-EP", - "PDX-Coeus-CE1", "GP-ARGO-osu-backfill", "Nebraska", "cinvestav", "ISI", "Purdue-Anvil-Composable", - "GP-ARGO-kanren-backfill", "GSU-ACIDS", "Clemson-Palmetto", "LSUHSC-Tigerfish-CE2", "AMNH-ARES-CE1", - "GP-ARGO-doane-backfill", "LSU-DB-CE1", "CHTC", "CHTC-canary2", "NMSU-Discovery", "KSU-Beocat-CE1", - "WSU-GRID-CE1", "GP-ARGO-cameron-backfill", "SPRACE", "ND_CAMLGPU", "CYBERA_EDMONTON", "UMissHEP", - "USF", "Maine-ACG", "Clarkson-ACRES", "FIU-PATH-BACKFILL", "GP-ARGO-semo-backfill", "AMNH-ARES", - "FIU-IRCC", "Alabama-CHPC-CE1", "TIGER-OSG-BACKFILL-PROD", "CIT_CMS_T2", "UCR-HPCC-CE1", "Tufts-Cluster", - "Purdue-Anvil-CE1", "IIT_CE2", "IIT_CE1", "CHTC-GPU-EP", "Maine-ACG-CE1", "NCSU-HPC-CE1", - "SLATE_US_UUTAH_LONEPEAK", "USC-CARC-Carina-Backfill", "SLATE_US_UUTAH_NOTCHPEAK", "ISI_ImageTest", - "SLATE_US_UUTAH_KINGSPEAK", "Wilson Facility" + const backup_ospool_resources = new Set([ + "Expanse-PATH-EP", "SU-ITS-CE3", "MWT2", "SU-ITS-CE2", "UConn-HPC", "IU-Jetstream2-Backfill", "Purdue-Geddes", + "UNL-PATH-EP", "GPGrid", "WISC-PATH-EP", "GLOW", "Lancium-Backfill", "UNKNOWN", "Clemson-Palmetto-CE1", + "Lancium-PEP", "MTState-Tempest-CE1", "SDSC-PRP-OSPool-Provisioner", "UW-IT", "Lehigh - Hawk", "NWICG_NDCMS", + "UColorado_HEP", "MI-HORUS-CE1", "SIUE-CC-production", "AMNH-Mendel-CE1", "NDSU-Lancium-Backfill", + "OU_OCHEP_SWT2", "Purdue-Anvil-CE1", "VU-AUGIE", "TACC-Jetstream-Backfill", "CHTC-Spark-CE1", "BNL-ATLAS", + "UC-Denver-CE1", "KSU-Beocat-CE1", "AMNH-HEL-CE1", "Nebraska", "OSG_US_FSU_HNPGRID", "PSU-LIGO", "TCNJ-ELSA", + "SYRA-PATH-EP", "GP-ARGO-wichita-backfill", "Alabama-CHPC-CE1", "UConn-OSG", "UA-LR-ITS-EP", "USCMS-FNAL-WC1", + "AGLT2", "LSUHSC-Tigerfish-CE2", "Rhodes-HPC-CE1", "CUmulus-Backfill", "Purdue-Anvil-Composable", "Crane", + "UTC-Epyc", "USD-Lawrence-CE1", "Georgia_Tech_PACE_CE_2", "GPN-GP-ARGO-Backfill", "Swan-CE1", "LC-ITS", + "GP-ARGO-sdsu-backfill", "GP-ARGO-dsu-backfill", "IIT_CE2", "Georgia_Tech_PACE_CE_OSG", "NMSU-Discovery-CE1", + "Rice-RAPID-Backfill", "GP-ARGO-uams-backfill", "UA-HPC-CE1", "GP-ARGO-usd-backfill", "GP-ARGO-sdsmt-backfill", + "GP-ARGO-astate-backfill", "GP-ARGO-oru-backfill", "Rhino", "ODU-Ubuntu", "ORU-Titan-CE1", + "GP-ARGO-mst-backfill", "SLATE_US_NMSU_DISCOVERY", "Maine-ACG-CE1", "GP-ARGO-uark-backfill", + "GP-ARGO-emporia-backfill", "Hawaii-Koa-CE1", "LIGO-WA-CE", "FANDM-ITS", "GP-ARGO-ksu-backfill", "AMNH-Mendel", + "GP-ARGO-ku-backfill", "ASU-Sol-CE1", "PDX-Coeus-CE1", "MSU-DataMachine-CE1", "GP-ARGO-creighton-backfill", + "GSU-ACIDS", "SDSC-PRP-CE1", "GP-ARGO-doane-backfill", "GP-ARGO-semo-backfill", "GP-ARGO-langston-backfill", + "USC-CARC-Artemis-Backfill", "LSUHSC-Tigerfish-CE1", "uprm-cms", "WSU-GRID", "IRISHEP-SSL-RIVER-DEV-BACKFILL", + "SLATE_US_UUTAH_NOTCHPEAK", "GP-ARGO-cameron-backfill", "ASU-DELL_M420", "WTAMU_HPC", "UW-IT-CE1", + "Clarkson-ACRES-CE2", "WSU-GRID-CE1", "Clemson-Palmetto", "SLATE_US_NMSU_AGGIE_GRID", "CHTC-canary2", "ISI", + "AMNH-HEL", "SDSC-TS-CE1", "ND_CAMLGPU", "SLATE_US_UUTAH_LONEPEAK", "KENT-STATE-RESEARCH-EP", "SDSC-Expanse", + "LSU-DB-CE1", "TACC-Stampede2-CE2", "VU-AUGIE-CE1", "GP-ARGO-osu-backfill", "UChicago_Pile_Backfill", + "AMNH-ARES-CE1", "IIT_CE1", "Wilson Facility", "cinvestav", "SLATE_US_UUTAH_KINGSPEAK", "FIU-IRCC", "WTAMU-HPC", + "CHTC", "FSU-HNPGRID", "SPRACE", "USF", "SDSC-Expanse-CE1", "UND-Talon-CE1", "AMNH-ARES", "UNR-CC-CE1", + "UMT-Hellgate-CE1", "CYBERA_EDMONTON", "SDSC-PRP", "Clarkson-ACRES", "GP-ARGO-kanren-backfill", "BEOCAT-SLATE", + "NMSU-Discovery", "UAH-Voyager-CE1", "UCR-HPCC-CE1", "Local Job", "chameleon-uc-dev-backfill", "NDSU-CCAST", + "FIU-PATH-BACKFILL", "IRISHEP-SSL-UCHICAGO", "ND-CAML_gpu", "USF-SC", "FIU-IRCC-CE1", "UMissHEP", "CIT_CMS_T2", + "Maine-ACG", "TIGER-OSG-BACKFILL-PROD", "SDSC-Triton_Stratus", "CHTC-GPU-EP", "NCSU-HPC-CE1", + "Jetstream2-IU-Backfill", "Tufts-Cluster", "LC-ITS-CE1", "PATH-OSPOOL-BACKFILL", "JetStream", "Lancium-HMF-ITB", + "scott.grid.uchicago.edu", "amundsen.grid.uchicago.edu", "USC-CARC-Carina-Backfill", "GSU-ACORE", + "GLUEX_US_FSU_HNPGRID", "TNTech-Warp1-CE1", "MIT_CMS", "Langston-Lion-CE1", "OSG_US_ISI_osg", + "UIUC-TGI-RAILS-CE1", "rutgers-cms", "OSG_US_GSU_ACORE", "TACC-PATH-EP", "ISI_ImageTest", + "CancerComputer_MinneUEL_CE", "UCSDT2", "OSG_US_MWT2_gk", "BELLARMINE_TIER2", "HOSTED-CE-CHTC-UBUNTU", + "UWM-NEMO", "UFlorida-HPC", "UTA_SWT2", "PSC-Bridges2-CE2", "CHTC-DEV-EP-matyas", "RABBIT-OSG-BACKFILL-PROD", + "BNL-SDCC-CE01", "UWEC-BOSE-CE1", "OSG_US_USF_SC", "OSG_US_NMSU_DISCOVERY", "JLab-FARM-CE", "matyas-laptop", + "ComputeCanada-Cedar", "UERJ", "CHTC-ITB-GPU-BACKFILL", "CHTC-Jupyter-User-EP", "BrianTest", "TCNJ - ELSA", + "Lamar-Cluster", "OSG_US_TCNJ_ELSA", "OSG_US_UMD_SIAB", "TACC-Stampede2-ce2", "Anvil", "DESY-ZN", + "FIU_HPCOSG_CE", "Jetstream", "NDSU-Lancium-Backfill-Test", "OSG_US_ASU_DELL_M420", "OSG_US_GSU-ACORE", + "SLATE_US_UIUC_HTC", "nat.mwt2.org" ].map(x => x.toLowerCase())) + const backup_ospool_resource_timestamp = "2024-09-12" const iconConfig = { iconSize: [36,36], @@ -307,8 +324,8 @@ will want to adjust the Map.data which populates the select input and legend. this.isCompute = this.calcIsCompute(); this.isStorage = this.calcIsStorage() this.isNetwork = this.calcIsNetwork(); - this.isOSDFCache = this.calcIsOSDFCache(); - this.isOSDFOrigin = this.calcIsOSDFOrigin(); + this.isCache = this.calcIsCache(); + this.isOrigin = this.calcIsOrigin(); } calcIsEDU () { @@ -327,23 +344,26 @@ will want to adjust the Map.data which populates the select input and legend. return this.services.some(({Name: name}) => network_services.has(name)) } - calcIsOSDFCache () { - return this.services.some(({Name: name}) => name === "XRootD cache server") + calcIsCache () { + return this.services.some(({Name: name}) => name === "XRootD cache server" || name === "Pelican cache") } - calcIsOSDFOrigin () { - return this.services.some(({Name: name}) => name === "XRootD origin server") + calcIsOrigin () { + return this.services.some(({Name: name}) => name === "XRootD origin server" || name === "Pelican origin") } } class Site { - constructor({ - Resources: { Resource : resources }, - Site: { Latitude, Longitude, Name : siteName }, - Facility: { Name: facilityName }, - GroupName: resourceGroupName - }) { + constructor( + { + Resources: { Resource : resources }, + Site: { Latitude, Longitude, Name : siteName }, + Facility: { Name: facilityName }, + GroupName: resourceGroupName + }, + ospoolResources + ) { this.resources = {} this.resourceGroups = {} this.latitude = Latitude @@ -352,6 +372,7 @@ will want to adjust the Map.data which populates the select input and legend. this.facilityName = facilityName this.siteName = siteName this.addResourceGroup({ Resources: { Resource : resources }, GroupName: resourceGroupName }) + this.ospoolResources = ospoolResources } addResourceGroup({ @@ -390,11 +411,11 @@ will want to adjust the Map.data which populates the select input and legend. } } else if(view === "OpenScienceDataFederation") { - if (this.isOSDFOrigin && this.isOSDFCache) { + if (this.isOrigin && this.isCache) { icon = cacheAndOriginIcon - } else if (this.isOSDFOrigin) { + } else if (this.isOrigin) { icon = originIcon - } else if (this.isOSDFCache) { + } else if (this.isCache) { icon = cacheIcon } @@ -493,7 +514,7 @@ will want to adjust the Map.data which populates the select input and legend. } else if(view === "CCStar"){ return resource.isCCStar } else if(view === "OpenScienceDataFederation") { - return resource.isOSDFCache || resource.isOSDFOrigin + return resource.isCache || resource.isOrigin } else if(view === "OSPool"){ return this.resourceIsInOSPool(resource) } @@ -522,35 +543,34 @@ will want to adjust the Map.data which populates the select input and legend. return Object.values(this.resources).some(x => x.isNetwork) } - get isOSDFCache() { - return Object.values(this.resources).some(x => x.isOSDFCache) + get isCache() { + return Object.values(this.resources).some(x => x.isCache) } - get isOSDFOrigin(){ - return Object.values(this.resources).some(x => x.isOSDFOrigin) + get isOrigin(){ + return Object.values(this.resources).some(x => x.isOrigin) } get isOSPool () { if(Object.values(this.resources).some(x => this.resourceIsInOSPool(x))){ shownOspoolContributors.add(this.name) - console.log(shownOspoolContributors) } return Object.values(this.resources).some(x => this.resourceIsInOSPool(x)) } resourceIsInOSPool (resource) { // If this resource is in the ospool_resources list - return ospool_resources.has(resource.name.toLowerCase()) || + return this.ospoolResources.has(resource.name.toLowerCase()) || // If this resourceGroup is in the list, and no resources are named that groupname ( !(resource.resourceGroupName in this.resources) && - ospool_resources.has(resource.resourceGroupName.toLowerCase()) + this.ospoolResources.has(resource.resourceGroupName.toLowerCase()) // If this resources Site name is in the list, and no resources have this Site name ) || ( !(this.siteName in this.resources) && - ospool_resources.has(this.siteName.toLowerCase()) + this.ospoolResources.has(this.siteName.toLowerCase()) ) } } @@ -624,7 +644,7 @@ will want to adjust the Map.data which populates the select input and legend. imgNode.src = iconUrl imgNode.alt = "Icon for " + iconLabel - labelNode.innerText = iconLabel + labelNode.innerHTML = iconLabel // Count values in layer that match iconUrl with current legend item // In this case iconUrl is a proxy for Site Category @@ -693,50 +713,6 @@ will want to adjust the Map.data which populates the select input and legend. constructor() { - this.metaData = { - "OSGSites" : { - "longText" : "OSG Sites", - "legend" : { - "OSG Site": greenStarIcon?.options?.iconUrl, - } - }, - "ComputevsStorage" : { - "longText" : "Compute and Storage", - "legend" : { - "Compute Only": blueStarIcon?.options?.iconUrl, - "Storage Only": purpleStarIcon?.options?.iconUrl, - "Compute And Storage": greenStarIcon?.options?.iconUrl, - } - }, - "EduvsOther" : { - "longText" : "EDU sites and others", - "legend" : { - "EDU Site": blueStarIcon?.options?.iconUrl, - "Others": greenStarIcon?.options?.iconUrl, - } - }, - "CCStar" : { - "longText" : "CC* Sites", - "legend" : { - "CC* Site": redStarIcon?.options?.iconUrl - } - }, - "OpenScienceDataFederation" : { - "longText" : "Open Science Data Federation", - "legend" : { - "Origin": originIcon?.options?.iconUrl, - "Cache": cacheIcon?.options?.iconUrl, - "Cache and Origin": cacheAndOriginIcon?.options?.iconUrl, - } - }, - "OSPool" : { - "longText" : "OSPool Contributors", - "legend" : { - "OSPool Contributor" : greenStarIcon?.options?.iconUrl - } - } - } - this.leafletMap = new Map() this.leafletMap.map.on("popupopen", (e) => { this.siteSelect.value = e.popup.site.siteName @@ -775,7 +751,7 @@ will want to adjust the Map.data which populates the select input and legend. this.layers = {} - this.fetchSites() + this.asyncWork() } get view() { @@ -794,6 +770,52 @@ will want to adjust the Map.data which populates the select input and legend. return Object.entries(this.sites).map(([name, site]) => site.getMarker(this.view)).filter(icon => icon !== null) } + get metaData() { + return { + "OSGSites" : { + "longText" : "OSG Sites", + "legend" : { + "OSG Site": greenStarIcon?.options?.iconUrl, + } + }, + "ComputevsStorage" : { + "longText" : "Compute and Storage", + "legend" : { + "Compute Only": blueStarIcon?.options?.iconUrl, + "Storage Only": purpleStarIcon?.options?.iconUrl, + "Compute And Storage": greenStarIcon?.options?.iconUrl, + } + }, + "EduvsOther" : { + "longText" : "EDU sites and others", + "legend" : { + "EDU Site": blueStarIcon?.options?.iconUrl, + "Others": greenStarIcon?.options?.iconUrl, + } + }, + "CCStar" : { + "longText" : "CC* Sites", + "legend" : { + "CC* Site": redStarIcon?.options?.iconUrl + } + }, + "OpenScienceDataFederation" : { + "longText" : "Open Science Data Federation", + "legend" : { + "Origin": originIcon?.options?.iconUrl, + "Cache": cacheIcon?.options?.iconUrl, + "Cache and Origin": cacheAndOriginIcon?.options?.iconUrl, + } + }, + "OSPool" : { + "longText" : `OSPool Contributors`, + "legend" : { + [`
OSPool Contributor
Updated ${this.ospoolResourcesTimestamp}
`]: greenStarIcon?.options?.iconUrl + } + } + } + } + update() { this.siteSelect.addOptions( Object.values(this.layer._layers) @@ -803,6 +825,36 @@ will want to adjust the Map.data which populates the select input and legend. this.leafletMap.update(this.layer, this.metaData[this.view].legend) } + async asyncWork () { + await this.fetchOSPoolResources() + await this.fetchSites() + } + + /** Fetches the OSPool resources falling back if failing */ + async fetchOSPoolResources() { + try { + await this.fetchOSPoolResourcesList() + await this.fetchOSPoolResourceUpdateTime() + } catch (e) { + console.error(e) + this.ospoolResourcesTimestamp = backup_ospool_resource_timestamp + this.ospoolResources = backup_ospool_resources + } + } + + async fetchOSPoolResourceUpdateTime() { + const response = await fetch("https://api.github.com/repos/osg-htc/ospool-data/commits?path=/data/ospool_resources_report/ospool_resources.json&per_page=1") + const commits = await response.json() + const timestampString = commits[0].commit.author.date + this.ospoolResourcesTimestamp = new Date(timestampString).toLocaleString() + } + + async fetchOSPoolResourcesList() { + let response = await fetch("https://osg-htc.org/ospool-data/data/ospool_resources_report/ospool_resources.json") + let ospoolResources = await response.json() + this.ospoolResources = new Set(ospoolResources.map(x => x.toLowerCase())) + } + async fetchSites() { let response = await fetch("/api/resource_group_summary") let resourceGroupJson = await response.json() @@ -822,7 +874,7 @@ will want to adjust the Map.data which populates the select input and legend. if(value?.Site?.Name in sites){ sites[value?.Site?.Name].addResourceGroup(value) } else { - sites[value?.Site?.Name] = new Site(value) + sites[value?.Site?.Name] = new Site(value, this.ospoolResources) } }) diff --git a/src/tests/diff_cache_configs.py b/src/tests/diff_cache_configs.py deleted file mode 100755 index 9a224c5da..000000000 --- a/src/tests/diff_cache_configs.py +++ /dev/null @@ -1,142 +0,0 @@ -#!/usr/bin/env python3 - -import re -import os -import sys -import json -import collections -import urllib.request -from subprocess import Popen, PIPE - -CVMFS_EXTERNAL_URL = "CVMFS_EXTERNAL_URL" - -baseurl = "https://raw.githubusercontent.com/cvmfs-contrib/config-repo/master" -ligoconf = "etc/cvmfs/config.d/ligo.osgstorage.org.conf" -osgconf = "etc/cvmfs/domain.d/osgstorage.org.conf" -whitelist = "cache_config_whitelist.txt" - -namespaces = "https://topology.opensciencegrid.org/stashcache/namespaces.json" - - -def slurp_file(path): - path = "%s/%s" % (os.path.dirname(__file__), path) - return open(path, "rb").read() - -def slurp_url(url): - remote = url if "://" in url else "%s/%s" % (baseurl, url) - return urllib.request.urlopen(remote).read() - - -def shell_parse_env(srctxt, env): - # evaluate shell source text and print the value of env var - env = env.encode() - # only eval lines that contain the env var we are interested in - grepped = b"\n".join( line for line in srctxt.splitlines() if env in line ) - sh_code = 'eval "$1"; echo "${!2}"' - cmdline = ["/bin/bash", "-c", sh_code, "-", grepped, env] - sh_eval = Popen(cmdline, stdout=PIPE).communicate()[0] or b'' - return sh_eval.decode() - - -def get_conf_urls(confurl): - txt = slurp_url(confurl) - return shell_parse_env(txt, CVMFS_EXTERNAL_URL).strip().split(";") - - -URLInfo = collections.namedtuple("URLInfo", ["proto", "hostport", "path"]) - -def split_url_components(url): - # "https://xrootd-local.unl.edu:1094//user/ligo/" -> - # ("https://", "xrootd-local.unl.edu:1094", "/user/ligo") - m = re.match(r'^(https?://)([^/]*)/?(/.*)', url) - return URLInfo(*m.groups()) if m else URLInfo(None, None, None) - - -def get_conf_url_infos(confurl): - urls = get_conf_urls(confurl) - return list(map(split_url_components, urls)) - - -def get_conf_url_path_map(confurl): - urlinfos = get_conf_url_infos(confurl) - dd = collections.defaultdict(set) - for info in urlinfos: - dd[info.path].add(info.hostport) - return dd - - -def cache_endpoints(caches, endpoint): - endpoints = set() - for cache in caches: - endpoints.add(cache[endpoint]) - return endpoints - - -def get_namespaces_map(): - txt = slurp_url(namespaces) - d = json.loads(txt) - return { - ns['path']: { - 'auth_endpoint': cache_endpoints(ns['caches'], 'auth_endpoint'), - 'endpoint': cache_endpoints(ns['caches'], 'endpoint') - } for ns in d['namespaces'] - } - - -def get_whitelisted(): - wl = slurp_file(whitelist).decode() - return set( l for l in wl.splitlines() if not l.startswith("#") ) - - -def do_conf_comparisons(): - nsmap = get_namespaces_map() - osgmap = get_conf_url_path_map(osgconf) - ligomap = get_conf_url_path_map(ligoconf) - whitelisted = get_whitelisted() - - osg_cvmfs_caches = osgmap['/'] - osg_topology_caches = nsmap['/osgconnect/public']['endpoint'] - - ligo_cvmfs_caches = ligomap['/user/ligo/'] - ligo_topology_caches = nsmap['/user/ligo']['auth_endpoint'] - - print_diffs(osgconf, osg_cvmfs_caches, osg_topology_caches, whitelisted) - print_diffs(ligoconf, ligo_cvmfs_caches, ligo_topology_caches, whitelisted) - - return (osg_cvmfs_caches - whitelisted == osg_topology_caches and - ligo_cvmfs_caches - whitelisted == ligo_topology_caches) - - -def print_diffs(conf, cvmfs_caches, topology_caches, whitelisted): - conf = os.path.basename(conf) - if cvmfs_caches - whitelisted == topology_caches: - print("%s is up to date with topology source" % conf) - print("") - else: - cvmfs_missing = topology_caches - cvmfs_caches - cvmfs_extra = cvmfs_caches - topology_caches - whitelisted - - if cvmfs_missing: - print("Caches in Topology, missing from CVMFS config %s" % conf) - print_bulletted(cvmfs_missing) - print("") - if cvmfs_extra: - print("Caches in CVMFS config %s, missing from Topology" % conf) - print_bulletted(cvmfs_extra) - print("") - - -def print_bulletted(items): - for item in sorted(items): - print(" - %s" % item) - - -def main(): - return do_conf_comparisons() - - -if __name__ == '__main__': - all_match = main() - sys.exit(0 if all_match else 1) - - diff --git a/src/webapp/automerge_check.py b/src/webapp/automerge_check.py index 7cc9e491c..969d4d103 100755 --- a/src/webapp/automerge_check.py +++ b/src/webapp/automerge_check.py @@ -2,6 +2,7 @@ import collections import subprocess +import requests import stat import yaml import sys @@ -20,6 +21,7 @@ import xml.etree.ElementTree as et +INSTITUTIONS_API = "https://topology-institutions.osg-htc.org" # NOTE: throughout this program, git shas are of type str, while paths and # filenames are of type bytes. The motivation behind this is to handle @@ -122,19 +124,27 @@ def main(args): errors += check_resource_contacts(BASE_SHA, rg_fname, resources_affected, contacts) - if any( re.match(br'^projects/.*\.yaml', fname) for fname in modified ): + updated_projects = [fname for fname in modified if re.match(br'^projects/.*\.yaml', fname)] + if updated_projects: orgs_base = get_organizations_at_version(base) orgs_new = get_organizations_at_version(head) orgs_added = orgs_new - orgs_base for org in sorted(orgs_added): errors += ["New Organization '%s' requires OSG approval" % org] + invalid_institutions = get_invalid_institution_ids(head, updated_projects) + if invalid_institutions: + errors += [ + f"Unrecognized InstitutionID in project(s) {', '.join(invalid_institutions)}. " + f"See {INSTITUTIONS_API} for known ID list." + ] else: orgs_added = None + invalid_institutions = None print_errors(errors) return ( RC.ALL_CHECKS_PASS if len(errors) == 0 else RC.OUT_OF_DATE_ONLY if len(errors) == 1 and not up_to_date - else RC.ORGS_ADDED if orgs_added + else RC.ORGS_ADDED if orgs_added or invalid_institutions else RC.DT_MOD_ERRORS if len(DTs) > 0 else RC.CONTACT_ERROR if not contacts else RC.NON_DT_ERRORS ) @@ -212,6 +222,13 @@ def get_organizations_at_version(sha): if re.search(br'.\.yaml$', fname) ] return set( p.get("Organization") for p in projects ) +def get_invalid_institution_ids(sha, fnames): + valid_institutions = requests.get(f'{INSTITUTIONS_API}/api/institution_ids').json() + institution_ids = [i['id'] for i in valid_institutions] + projects = { fname : parse_yaml_at_version(sha, fname, {}) for fname in fnames } + return [fname.decode() for fname, yaml in projects.items() if not yaml.get("InstitutionID", "") in institution_ids] + + def commit_is_merged(sha_a, sha_b): args = ['git', 'merge-base', '--is-ancestor', sha_a, sha_b] ret, out = runcmd(args, stderr=_devnull) diff --git a/src/webapp/common.py b/src/webapp/common.py index d11c8e232..311ccca6c 100644 --- a/src/webapp/common.py +++ b/src/webapp/common.py @@ -396,5 +396,7 @@ def wrapped(): XROOTD_CACHE_SERVER = "XRootD cache server" XROOTD_ORIGIN_SERVER = "XRootD origin server" +PELICAN_CACHE = "Pelican cache" +PELICAN_ORIGIN = "Pelican origin" GRIDTYPE_1 = "OSG Production Resource" GRIDTYPE_2 = "OSG Integration Test Bed Resource" diff --git a/src/webapp/data_federation.py b/src/webapp/data_federation.py index 8542f527f..f78b1afc3 100644 --- a/src/webapp/data_federation.py +++ b/src/webapp/data_federation.py @@ -4,7 +4,7 @@ from collections import OrderedDict from typing import Optional, List, Dict, Tuple, Union, Set -from .common import XROOTD_CACHE_SERVER, XROOTD_ORIGIN_SERVER, ParsedYaml, is_null +from .common import PELICAN_CACHE, PELICAN_ORIGIN, XROOTD_CACHE_SERVER, XROOTD_ORIGIN_SERVER, ParsedYaml, is_null try: from .x509 import generate_dn_hash except ImportError: # if asn1 is unavailable @@ -89,14 +89,16 @@ def __str__(self): f"map_subject={self.map_subject}" def get_scitokens_conf_block(self, service_name: str): - if service_name not in [XROOTD_CACHE_SERVER, XROOTD_ORIGIN_SERVER]: - raise ValueError(f"service_name must be '{XROOTD_CACHE_SERVER}' or '{XROOTD_ORIGIN_SERVER}'") + if service_name not in {PELICAN_CACHE, PELICAN_ORIGIN, XROOTD_CACHE_SERVER, XROOTD_ORIGIN_SERVER}: + raise ValueError( + f"service_name must be one of: '{PELICAN_CACHE}', '{PELICAN_ORIGIN}', " + f"'{XROOTD_CACHE_SERVER}', or '{XROOTD_ORIGIN_SERVER}'") block = (f"[Issuer {self.issuer}]\n" f"issuer = {self.issuer}\n" f"base_path = {self.base_path}\n") if self.restricted_path: block += f"restricted_path = {self.restricted_path}\n" - if service_name == XROOTD_ORIGIN_SERVER: + if service_name in {PELICAN_ORIGIN, XROOTD_ORIGIN_SERVER}: block += f"map_subject = {self.map_subject}\n" return block diff --git a/src/webapp/exceptions.py b/src/webapp/exceptions.py index 7fd827cae..613075468 100644 --- a/src/webapp/exceptions.py +++ b/src/webapp/exceptions.py @@ -25,10 +25,17 @@ def __init__(self, resource: "Resource", text: str): super().__init__(f"Resource {resource.name}, FQDN {resource.fqdn}: {text}") -class ResourceMissingService(ResourceDataError): - def __init__(self, resource: "Resource", service_name: str): - self.service_name = service_name - super().__init__(resource=resource, text=f"Missing expected service {service_name}") +class ResourceMissingServices(ResourceDataError): + def __init__(self, resource: "Resource", service_names): + if isinstance(service_names, str): + service_names = [service_names] + self.service_names = service_names + self.service_names_str = ", ".join(service_names) + super().__init__( + resource=resource, + text="None of the following expected services are available: " + + self.service_names_str + ) class VODataError(DataError): diff --git a/src/webapp/rg_reader.py b/src/webapp/rg_reader.py index 14c8598cf..ac86fae44 100755 --- a/src/webapp/rg_reader.py +++ b/src/webapp/rg_reader.py @@ -76,7 +76,7 @@ def get_topology(indir="../topology", contacts_data=None, strict=False): facility_yaml_path = facility_path / 'FACILITY.yaml' facility_data = load_yaml_file(facility_yaml_path) if facility_yaml_path.exists() else {} id_ = gen_id_from_yaml(facility_data or {}, name) - topology.add_facility(name, id_) + topology.add_facility(name, id_, facility_data['InstitutionID'] if 'InstitutionID' in facility_data else None) for site_path in root.glob("*/*/SITE.yaml"): facility, name = site_path.parts[-3:-1] assert facility in topology.facilities, f"Missing facility {facility} for site {name}" diff --git a/src/webapp/topology.py b/src/webapp/topology.py index d09ae511c..68da65630 100644 --- a/src/webapp/topology.py +++ b/src/webapp/topology.py @@ -9,7 +9,7 @@ from .common import RGDOWNTIME_SCHEMA_URL, RGSUMMARY_SCHEMA_URL, Filters, ParsedYaml, \ is_null, expand_attr_list_single, expand_attr_list, ensure_list, XROOTD_ORIGIN_SERVER, XROOTD_CACHE_SERVER, \ - gen_id_from_yaml, GRIDTYPE_1, GRIDTYPE_2, is_true + gen_id_from_yaml, GRIDTYPE_1, GRIDTYPE_2, is_true, PELICAN_ORIGIN, PELICAN_CACHE from .contacts_reader import ContactsData, User from .exceptions import DataError @@ -41,14 +41,16 @@ def __init__(self, contacts: ContactsData, service_types: Dict, support_centers: class Facility(object): - def __init__(self, name: str, id: int): + def __init__(self, name: str, id: int, institution_id: str = None): self.name = name self.id = id + self.institution_id = institution_id self.sites_by_name = dict() def get_tree(self) -> OrderedDict: return OrderedDict([ ("ID", self.id), + ("InstitutionID", self.institution_id), ("Name", self.name), ("IsCCStar", self.is_ccstar) ]) @@ -111,8 +113,25 @@ def __init__(self, name: str, yaml_data: ParsedYaml, common_data: CommonData, rg self.name = name self.service_types = common_data.service_types self.common_data = common_data + # Some "indexes" to speed up data lookup + self.has_xrootd_cache = False + self.has_xrootd_origin = False + self.has_pelican_cache = False + self.has_pelican_origin = False + self.service_names = [] if not is_null(yaml_data, "Services"): self.services = self._expand_services(yaml_data["Services"]) + for svc in self.services: + if "Name" in svc: + self.service_names.append(svc["Name"]) + if svc["Name"] == XROOTD_CACHE_SERVER: + self.has_xrootd_cache = True + elif svc["Name"] == XROOTD_ORIGIN_SERVER: + self.has_xrootd_origin = True + elif svc["Name"] == PELICAN_CACHE: + self.has_pelican_cache = True + elif svc["Name"] == PELICAN_ORIGIN: + self.has_pelican_origin = True else: self.services = [] self.service_names = [n["Name"] for n in self.services if "Name" in n] @@ -677,8 +696,8 @@ def add_rg(self, facility_name: str, site_name: str, name: str, parsed_data: Par except (AttributeError, KeyError, ValueError) as err: log.exception("RG %s, %s error: %r; skipping", site_name, name, err) - def add_facility(self, name, id): - self.facilities[name] = Facility(name, id) + def add_facility(self, name, id, institution_id=None): + self.facilities[name] = Facility(name, id, institution_id) def add_site(self, facility_name, name, id, site_info): site = Site(name, id, self.facilities[facility_name], site_info) diff --git a/src/webapp/webhook_status_messages.py b/src/webapp/webhook_status_messages.py index 50e7c7726..b8f8f8d27 100644 --- a/src/webapp/webhook_status_messages.py +++ b/src/webapp/webhook_status_messages.py @@ -76,7 +76,7 @@ "Thank you for your pull request.\n" "\n" "Your [requested changes]({base_sha}...{head_sha}) add a new organization" - " to a project file; this requires manual review from OSG Staff.\n" + " or project ID to a project file; this requires manual review from OSG Staff.\n" "\n" "-- OSG-BOT :oncoming_police_car:\n" "\n" diff --git a/topology/ANL/FACILITY.yaml b/topology/ANL/FACILITY.yaml index d1b201562..117018b8e 100644 --- a/topology/ANL/FACILITY.yaml +++ b/topology/ANL/FACILITY.yaml @@ -1 +1,2 @@ ID: 10089 +InstitutionID: https://osg-htc.org/iid/26xdp9lwzmhd diff --git a/topology/Academia Sinica/FACILITY.yaml b/topology/Academia Sinica/FACILITY.yaml index cc5b9c941..60485126d 100644 --- a/topology/Academia Sinica/FACILITY.yaml +++ b/topology/Academia Sinica/FACILITY.yaml @@ -1 +1,2 @@ ID: 10199 +InstitutionID: https://osg-htc.org/iid/3yiehdw3bef5 diff --git a/topology/Albert Einstein Institute/FACILITY.yaml b/topology/Albert Einstein Institute/FACILITY.yaml new file mode 100644 index 000000000..6a97e5f49 --- /dev/null +++ b/topology/Albert Einstein Institute/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/mz1887bjwfk0 diff --git a/topology/American Museum of Natural History/AMNH/AMNH.yaml b/topology/American Museum of Natural History/AMNH/AMNH.yaml index 501c5a35d..cdd934229 100644 --- a/topology/American Museum of Natural History/AMNH/AMNH.yaml +++ b/topology/American Museum of Natural History/AMNH/AMNH.yaml @@ -109,7 +109,7 @@ Resources: # : # ... AMNH-ARES: - Active: true + Active: false Description: This is a Hosted CE for the AMNH Slurm cluster # If you have an up-to-date local git clone, fill ID with the output from `bin/next_resource_id` # Otherwise, leave it blank and we will fill in the appropriate value for you. @@ -217,7 +217,7 @@ Resources: Tags: - CC* AMNH-HEL: - Active: true + Active: false Description: Second Hosted CE for the AMNH # If you have an up-to-date local git clone, fill ID with the output from `bin/next_resource_id` # Otherwise, leave it blank and we will fill in the appropriate value for you. diff --git a/topology/American Museum of Natural History/FACILITY.yaml b/topology/American Museum of Natural History/FACILITY.yaml index 524de3887..98103198e 100644 --- a/topology/American Museum of Natural History/FACILITY.yaml +++ b/topology/American Museum of Natural History/FACILITY.yaml @@ -1 +1,2 @@ ID: 10165 +InstitutionID: https://osg-htc.org/iid/em2w05s9c1uc diff --git a/topology/American University of Beirut/Facility.yaml b/topology/American University of Beirut/Facility.yaml new file mode 100644 index 000000000..508da6666 --- /dev/null +++ b/topology/American University of Beirut/Facility.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/dgmqc7eczsq5 diff --git a/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml b/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml index f709a147e..5e162dcfa 100644 --- a/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml +++ b/topology/American University of Beirut/HPC For Lebanon/HPC4L.yaml @@ -2,7 +2,7 @@ GroupDescription: "HPC4L initiative (https://hpc4l-webpage.web.cern.ch/)" Production: true Resources: HPC4L-CE: - Active: false + Active: true ContactLists: Administrative Contact: Primary: @@ -33,7 +33,7 @@ Resources: StorageCapacityMax: 0 StorageCapacityMin: 0 HPC4L-SE: - Active: false + Active: true ContactLists: Administrative Contact: Primary: @@ -62,7 +62,7 @@ Resources: StorageCapacityMax: 8.2 StorageCapacityMin: 1 HPC4L-SE-2: - Active: false + Active: true ContactLists: Administrative Contact: Primary: @@ -91,7 +91,7 @@ Resources: StorageCapacityMax: 8.2 StorageCapacityMin: 1 HPC4L-Squid: - Active: false + Active: true ContactLists: Administrative Contact: Primary: diff --git a/topology/Arizona State University/FACILITY.yaml b/topology/Arizona State University/FACILITY.yaml index d256554b4..98503ad9c 100644 --- a/topology/Arizona State University/FACILITY.yaml +++ b/topology/Arizona State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10159 +InstitutionID: https://osg-htc.org/iid/er1rnzey26m9 diff --git a/topology/Baylor University/Baylor University/Baylor-Kodiak_downtime.yaml b/topology/Baylor University/Baylor University/Baylor-Kodiak_downtime.yaml index eb6481b70..08e982214 100644 --- a/topology/Baylor University/Baylor University/Baylor-Kodiak_downtime.yaml +++ b/topology/Baylor University/Baylor University/Baylor-Kodiak_downtime.yaml @@ -78,3 +78,27 @@ - CE - Squid # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1894246811 + Description: Scheduled maintenance + Severity: Outage + StartTime: Aug 19, 2024 15:00 +0000 + EndTime: Aug 23, 2024 14:30 +0000 + CreatedTime: Aug 23, 2024 14:51 +0000 + ResourceName: Baylor-Kodiak-CE + Services: + - CE + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1894255721 + Description: Additional upgrade work on CE & SE scheduled + Severity: Intermittent Outage + StartTime: Aug 23, 2024 17:00 +0000 + EndTime: Aug 23, 2024 22:00 +0000 + CreatedTime: Aug 23, 2024 15:06 +0000 + ResourceName: Baylor-Kodiak-CE + Services: + - CE + - Squid +# --------------------------------------------------------- diff --git a/topology/Baylor University/FACILITY.yaml b/topology/Baylor University/FACILITY.yaml index 2065ae4f9..1c2ebb9f6 100644 --- a/topology/Baylor University/FACILITY.yaml +++ b/topology/Baylor University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10082 +InstitutionID: https://osg-htc.org/iid/c8uhtb8bojit diff --git a/topology/Bellarmine University/FACILITY.yaml b/topology/Bellarmine University/FACILITY.yaml index 8b7edbd83..382ecd74e 100644 --- a/topology/Bellarmine University/FACILITY.yaml +++ b/topology/Bellarmine University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10087 +InstitutionID: https://osg-htc.org/iid/nsonw55cjjxa diff --git a/topology/Boston University/FACILITY.yaml b/topology/Boston University/FACILITY.yaml index c74d115c3..b12706280 100644 --- a/topology/Boston University/FACILITY.yaml +++ b/topology/Boston University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10004 +InstitutionID: https://osg-htc.org/iid/drujeuinri1g diff --git a/topology/Brandeis University/FACILITY.yaml b/topology/Brandeis University/FACILITY.yaml index 8954e46c3..3a6f30af2 100644 --- a/topology/Brandeis University/FACILITY.yaml +++ b/topology/Brandeis University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10091 +InstitutionID: https://osg-htc.org/iid/z5fxzhzsjpb0 diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-ITB.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-ITB.yaml index e738cdcbb..00c0575c3 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-ITB.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-ITB.yaml @@ -35,7 +35,7 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: Primary: @@ -70,7 +70,7 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: Primary: diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-OPP.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-OPP.yaml index 68e12156a..e834a224c 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-OPP.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS-OPP.yaml @@ -7,7 +7,7 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: Primary: diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS.yaml index 9221d00c3..21fdfde7a 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL-ATLAS.yaml @@ -2,6 +2,45 @@ GroupDescription: This site is the ATLAS Tier 1 Facility at Brookhaven National GroupID: 235 Production: true Resources: + BNL_ATLAS_01: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Name: BNL Atlas Tier 1 support + Secondary: + ID: OSG1000638 + Name: Ivan Glushkov + Security Contact: + Primary: + Name: BNL Atlas Tier 1 support + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Secondary: + Name: Robert Hancock + ID: OSG1000212 + Description: moved under the resource group BNL_LCG2. This will set the stage + for unified site availability with WLCG. + FQDN: gridgk01.sdcc.bnl.gov + Services: + CE: + Description: Compute Element + Details: + hidden: false + sam_uri: htcondor://gridgk01.sdcc.bnl.gov + VOOwnership: + ATLAS: 100 + WLCGInformation: + APELNormalFactor: 12.69 + AccountingName: BNL_ATLAS_1 + HEPSPEC: 287779 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 15500 + KSI2KMin: 15500 + StorageCapacityMax: 0 + StorageCapacityMin: 0 BNL_ATLAS_1: Active: true ContactLists: @@ -42,8 +81,46 @@ Resources: KSI2KMin: 15500 StorageCapacityMax: 0 StorageCapacityMin: 0 + BNL_ATLAS_02: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Name: BNL Atlas Tier 1 support + Secondary: + ID: OSG1000638 + Name: Ivan Glushkov + Security Contact: + Primary: + Name: BNL Atlas Tier 1 support + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Secondary: + Name: Robert Hancock + ID: OSG1000212 + Description: change resource groupname to BNL-LCG2 + FQDN: gridgk02.sdcc.bnl.gov + Services: + CE: + Description: Compute Element + Details: + hidden: false + sam_uri: htcondor://gridgk02.sdcc.bnl.gov + VOOwnership: + ATLAS: 100 + WLCGInformation: + APELNormalFactor: 12.69 + AccountingName: BNL_ATLAS_1 + HEPSPEC: 0 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 0 + KSI2KMin: 0 + StorageCapacityMax: 0 + StorageCapacityMin: 0 BNL_ATLAS_2: - Active: true + Active: false ContactLists: Administrative Contact: Primary: @@ -81,6 +158,45 @@ Resources: KSI2KMin: 0 StorageCapacityMax: 0 StorageCapacityMin: 0 + BNL_ATLAS_03: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Name: BNL Atlas Tier 1 support + Secondary: + ID: OSG1000638 + Name: Ivan Glushkov + Security Contact: + Primary: + Name: BNL Atlas Tier 1 support + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Secondary: + Name: Robert Hancock + ID: OSG1000212 + Description: An OSG CE resource at BNL, mainly serving USATLAS production jobs, + not open to general OSG users. + FQDN: gridgk03.sdcc.bnl.gov + Services: + CE: + Description: Compute Element + Details: + hidden: false + sam_uri: htcondor://gridgk03.sdcc.bnl.gov + VOOwnership: + ATLAS: 100 + WLCGInformation: + APELNormalFactor: 12.69 + AccountingName: BNL_ATLAS_1 + HEPSPEC: 0 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 0 + KSI2KMin: 0 + StorageCapacityMax: 0 + StorageCapacityMin: 0 BNL_ATLAS_3: Active: true ContactLists: @@ -121,6 +237,45 @@ Resources: KSI2KMin: 0 StorageCapacityMax: 0 StorageCapacityMin: 0 + BNL_ATLAS_04: + Active: false + ContactLists: + Administrative Contact: + Primary: + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Name: BNL Atlas Tier 1 support + Secondary: + ID: OSG1000638 + Name: Ivan Glushkov + Security Contact: + Primary: + Name: BNL Atlas Tier 1 support + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Secondary: + Name: Robert Hancock + ID: OSG1000212 + Description: This is just another gatekeeper, sharing the same backend resources + with the other BNL_ATLAS_X gatekeepers. + FQDN: gridgk04.sdcc.bnl.gov + Services: + CE: + Description: Compute Element + Details: + hidden: false + sam_uri: htcondor://gridgk04.sdcc.bnl.gov + VOOwnership: + ATLAS: 100 + WLCGInformation: + APELNormalFactor: 12.69 + AccountingName: BNL_ATLAS_1 + HEPSPEC: 0 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 0 + KSI2KMin: 0 + StorageCapacityMax: 0 + StorageCapacityMin: 0 BNL_ATLAS_4: Active: true ContactLists: @@ -161,8 +316,47 @@ Resources: KSI2KMin: 0 StorageCapacityMax: 0 StorageCapacityMin: 0 - BNL_ATLAS_6: + BNL_ATLAS_06: Active: true + ContactLists: + Administrative Contact: + Primary: + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Name: BNL Atlas Tier 1 support + Secondary: + ID: OSG1000638 + Name: Ivan Glushkov + Security Contact: + Primary: + Name: BNL Atlas Tier 1 support + ID: 1e47726bf41f2128059de31cf7bc9c8d5dcadad6 + Secondary: + Name: Robert Hancock + ID: OSG1000212 + Description: An OSG CE resource at BNL, mainly serving USATLAS production jobs, + not open to general OSG users. + FQDN: gridgk06.sdcc.bnl.gov + Services: + CE: + Description: Compute Element + Details: + hidden: false + sam_uri: htcondor://gridgk06.sdcc.bnl.gov + VOOwnership: + ATLAS: 100 + WLCGInformation: + APELNormalFactor: 12.69 + AccountingName: BNL_ATLAS_1 + HEPSPEC: 0 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 0 + KSI2KMin: 0 + StorageCapacityMax: 0 + StorageCapacityMin: 0 + BNL_ATLAS_6: + Active: false ContactLists: Administrative Contact: Primary: diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_ATLAS_1.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_ATLAS_1.yaml index 1a88adf79..182acab8f 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_ATLAS_1.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_ATLAS_1.yaml @@ -7,7 +7,7 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: Primary: diff --git a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_Test_2.yaml b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_Test_2.yaml index f15594292..041293979 100644 --- a/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_Test_2.yaml +++ b/topology/Brookhaven National Laboratory/BNL ATLAS Tier1/BNL_Test_2.yaml @@ -10,7 +10,7 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: Primary: diff --git a/topology/Brookhaven National Laboratory/BNL-SDCC/BNL-SDCC.yaml b/topology/Brookhaven National Laboratory/BNL-SDCC/BNL-SDCC.yaml index 7ce97b43a..8da11a516 100644 --- a/topology/Brookhaven National Laboratory/BNL-SDCC/BNL-SDCC.yaml +++ b/topology/Brookhaven National Laboratory/BNL-SDCC/BNL-SDCC.yaml @@ -13,7 +13,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -21,7 +21,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce01.sdcc.bnl.gov Services: @@ -37,7 +37,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -45,7 +45,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce02.sdcc.bnl.gov Services: @@ -61,7 +61,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -69,7 +69,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce03.sdcc.bnl.gov Services: @@ -85,7 +85,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -93,7 +93,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce04.sdcc.bnl.gov Services: @@ -109,7 +109,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -117,7 +117,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce05.sdcc.bnl.gov Services: @@ -133,7 +133,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -141,7 +141,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce05.sdcc.bnl.gov Services: @@ -157,7 +157,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -165,7 +165,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: spce06.sdcc.bnl.gov Services: @@ -181,7 +181,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao Security Contact: @@ -189,7 +189,7 @@ Resources: ID: b39de31776fc01735eff9678a851c2126a3680be Name: Doug Benjamin Secondary: - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + ID: OSG1000116 Name: Xin Zhao FQDN: osgsub01.sdcc.bnl.gov DN: /DC=org/DC=incommon/C=US/ST=New York/L=Upton/O=Brookhaven National Laboratory/OU=SDCC/CN=osgsub01.sdcc.bnl.gov diff --git a/topology/Brookhaven National Laboratory/FACILITY.yaml b/topology/Brookhaven National Laboratory/FACILITY.yaml index a75997da1..c7e8d61e1 100644 --- a/topology/Brookhaven National Laboratory/FACILITY.yaml +++ b/topology/Brookhaven National Laboratory/FACILITY.yaml @@ -1 +1,2 @@ ID: 10003 +InstitutionID: https://osg-htc.org/iid/g29k1hhqys0y diff --git a/topology/Brown University/FACILITY.yaml b/topology/Brown University/FACILITY.yaml index 679579f67..5aee79b75 100644 --- a/topology/Brown University/FACILITY.yaml +++ b/topology/Brown University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10076 +InstitutionID: https://osg-htc.org/iid/0ytxfy0n4hol diff --git a/topology/CBPF/FACILITY.yaml b/topology/CBPF/FACILITY.yaml index 2010235bf..6e82a6f4f 100644 --- a/topology/CBPF/FACILITY.yaml +++ b/topology/CBPF/FACILITY.yaml @@ -1 +1,2 @@ ID: 10141 +InstitutionID: https://osg-htc.org/iid/vmznd0jreaby diff --git a/topology/CENF_NeutrinoPlatform/FACILITY.yaml b/topology/CENF_NeutrinoPlatform/FACILITY.yaml index 4b9834886..2ad0f66cb 100644 --- a/topology/CENF_NeutrinoPlatform/FACILITY.yaml +++ b/topology/CENF_NeutrinoPlatform/FACILITY.yaml @@ -1 +1,2 @@ ID: 10152 +InstitutionID: https://osg-htc.org/iid/8alpqdbfmj7m diff --git a/topology/CILogon_org/FACILITY.yaml b/topology/CILogon_org/FACILITY.yaml index a15a9ea4f..b9299151b 100644 --- a/topology/CILogon_org/FACILITY.yaml +++ b/topology/CILogon_org/FACILITY.yaml @@ -1 +1,2 @@ ID: 10147 +InstitutionID: https://osg-htc.org/iid/ypnvkgxa67oy diff --git a/topology/CUNY Graduate Center/FACILITY.yaml b/topology/CUNY Graduate Center/FACILITY.yaml index c20bb5e70..cd0e921f4 100644 --- a/topology/CUNY Graduate Center/FACILITY.yaml +++ b/topology/CUNY Graduate Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10069 +InstitutionID: https://osg-htc.org/iid/o336cz96qrh4 diff --git a/topology/California Institute of Technology/FACILITY.yaml b/topology/California Institute of Technology/FACILITY.yaml index 8d77c363f..dc7ae5b86 100644 --- a/topology/California Institute of Technology/FACILITY.yaml +++ b/topology/California Institute of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10006 +InstitutionID: https://osg-htc.org/iid/m9rrh8ld1wyh diff --git a/topology/California State University, Fresno/FACILITY.yaml b/topology/California State University, Fresno/FACILITY.yaml index e3000001c..0643eaa76 100644 --- a/topology/California State University, Fresno/FACILITY.yaml +++ b/topology/California State University, Fresno/FACILITY.yaml @@ -1 +1,2 @@ ID: 10117 +InstitutionID: https://osg-htc.org/iid/yjoil34g24pn diff --git a/topology/CancerComputer/FACILITY.yaml b/topology/CancerComputer/FACILITY.yaml index e599f499a..fbe011500 100644 --- a/topology/CancerComputer/FACILITY.yaml +++ b/topology/CancerComputer/FACILITY.yaml @@ -1 +1,2 @@ ID: 10150 +InstitutionID: ~ diff --git a/topology/Cardiff University/Cardiff Computing Cluster/CARDIFF-IGWN.yaml b/topology/Cardiff University/Cardiff Computing Cluster/CARDIFF-IGWN.yaml new file mode 100644 index 000000000..f7d825b63 --- /dev/null +++ b/topology/Cardiff University/Cardiff Computing Cluster/CARDIFF-IGWN.yaml @@ -0,0 +1,104 @@ +# Production is true if the resource is for production and not testing use +Production: true +# SupportCenter is one of the support centers in topology/support-centers.yaml +SupportCenter: Self Supported + +# GroupDescription is a long description of the resource group; may be multiple lines. +GroupDescription: Cardiff IGWN cluster CE + +# Resources contains one or more resources in this +# ResourceGroup. A resource provides one or more services +Resources: + # Resource Name should be a short descriptor of the resource. + # e.g. the Center for High Throughput Computing's GlideinWMS Frontend is "CHTC-glidein2" + # Resource Names need to be unique across all resources in the OSG. + CARDIFF-IGWN-CE1: + # Active is true if the resource is accepting requests, and false otherwise. + # When first registering a resource, set this to false. Set it to true when it's ready for production. + Active: true + # Description is a long description of the resource; may be multiple lines + Description: Hosted CE serving Cardiff IWGN + # ContactLists contain information about people to contact regarding this resource. + # The "ID" is a hash of their email address available at https://topology.opensciencegrid.org/miscuser/xml + # If you cannot find the contact above XML, please register the contact: + # https://opensciencegrid.org/docs/common/registration/#registering-contacts + ContactLists: + # Administrative Contact is one to three people to contact regarding administrative issues + Administrative Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + # Secondary: + # Name: + # ID: + # Tertiary: + # Name: + # ID: + + # Security Contact is one to three people to contact regarding security issues + Security Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + # Secondary: + # Name: + # ID: + # Tertiary: + # Name: + # ID: + + # FQDN is the fully qualified domain name of the host running this resource + FQDN: cardiff-igwn-ce1.svc.opensciencegrid.org + ### FQDNAliases (optional) are any other DNS aliases by which this host can be accessed + # FQDNAliases: + # - + # - + + # Services is one or more services provided by this resource; + # valid services are listed in topology/services.yaml with the format ": " + Services: + CE: + # Description is a brief description of the service + Description: Cardiff IGWN Hosted-CE + ### Details (optional) + # Details: + # # hidden + # hidden: false + # ### uri_override (optional, use if your service is on some non-standard URL) + # # uri_override: : + # ### sam_uri (optional) + # # sam_uri: htcondor://... + # ### endpoint (for perfSONAR services) + # # endpoint: + + # Other services if you have any + # : + # ... + + #Tags: + #- CC* + + ### VOOwnership (optional) is the percentage of the resource owned by one or more VOs. + ### If part of the resource is not owned by the VO, do not list it. + ### The total percentage cannot exceed 100. + # VOOwnership: + # : + # : + + ### WLCGInformation (optional) is only for resources that are part of the WLCG + # WLCGInformation: + # APELNormalFactor: 0.0 + # AccountingName: + # HEPSPEC: 0 + # InteropAccounting: true + # InteropBDII: true + # InteropMonitoring: true + # KSI2KMax: 0 + # KSI2KMin: 0 + # StorageCapacityMax: 0 + # StorageCapacityMin: 0 + # TapeCapacity: 0 + + # Other resources if you have any... + # : + # ... diff --git a/topology/Cardiff University/FACILITY.yaml b/topology/Cardiff University/FACILITY.yaml index e96884bbf..e77fddcb1 100644 --- a/topology/Cardiff University/FACILITY.yaml +++ b/topology/Cardiff University/FACILITY.yaml @@ -1 +1,2 @@ -ID: 10172 \ No newline at end of file +ID: 10172 +InstitutionID: https://osg-htc.org/iid/6qf1531hmz0q diff --git a/topology/Cinvestav/FACILITY.yaml b/topology/Cinvestav/FACILITY.yaml index 8c6ddd4f4..af06e5755 100644 --- a/topology/Cinvestav/FACILITY.yaml +++ b/topology/Cinvestav/FACILITY.yaml @@ -1 +1,2 @@ ID: 10005 +InstitutionID: https://osg-htc.org/iid/4u04p0sg78f1 diff --git a/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES.yaml b/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES.yaml index 2881a6763..9d0cc198d 100644 --- a/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES.yaml +++ b/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES.yaml @@ -118,7 +118,7 @@ Resources: Clarkson-ACRES-CE2: # Active is true if the resource is accepting requests, and false otherwise. # When first registering a resource, set this to false. Set it to true when it's ready for production. - Active: true + Active: false # Description is a long description of the resource; may be multiple lines Description: Hosted CE serving Clarkson-ACRES # If you have an up-to-date local git clone, fill ID with the output from `bin/next_resource_id` diff --git a/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml b/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml index d6ed09dce..6ccf446eb 100644 --- a/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml +++ b/topology/Clarkson University/Clarkson - ACRES/Clarkson-ACRES_downtime.yaml @@ -3,7 +3,7 @@ Description: CE needs to be migrated off river / slate Severity: Outage StartTime: Mar 11, 2024 16:00 +0000 - EndTime: Mar 10, 2025 16:00 +0000 + EndTime: Mar 12, 2024 16:00 +0000 CreatedTime: Mar 11, 2024 16:02 +0000 ResourceName: Clarkson-ACRES-CE2 Services: diff --git a/topology/Clarkson University/FACILITY.yaml b/topology/Clarkson University/FACILITY.yaml index c93278ede..b20dd182d 100644 --- a/topology/Clarkson University/FACILITY.yaml +++ b/topology/Clarkson University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10179 +InstitutionID: https://osg-htc.org/iid/o2qtl8pbjmss diff --git a/topology/Clemson University/Clemson-Palmetto/Clemson-Palmetto.yaml b/topology/Clemson University/Clemson-Palmetto/Clemson-Palmetto.yaml index d160a580d..f4a5bb26f 100644 --- a/topology/Clemson University/Clemson-Palmetto/Clemson-Palmetto.yaml +++ b/topology/Clemson University/Clemson-Palmetto/Clemson-Palmetto.yaml @@ -7,14 +7,14 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: ID: 56f7f6139ae847fc94317c466a7789acf8cdc85d Name: Randall Martin Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: ID: 56f7f6139ae847fc94317c466a7789acf8cdc85d diff --git a/topology/Clemson University/FACILITY.yaml b/topology/Clemson University/FACILITY.yaml index c919151f7..7b15e5220 100644 --- a/topology/Clemson University/FACILITY.yaml +++ b/topology/Clemson University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10007 +InstitutionID: https://osg-htc.org/iid/ricyf18amt49 diff --git a/topology/Columbia University_Nevis Labs/FACILITY.yaml b/topology/Columbia University_Nevis Labs/FACILITY.yaml index 6db8c48d6..ec4756cf8 100644 --- a/topology/Columbia University_Nevis Labs/FACILITY.yaml +++ b/topology/Columbia University_Nevis Labs/FACILITY.yaml @@ -1 +1,2 @@ ID: 10100 +InstitutionID: https://osg-htc.org/iid/avy4x5r4jsrw diff --git a/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml b/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml index 12c7e8588..eb817dc64 100644 --- a/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml +++ b/topology/Compute Canada/ComputeCanada - Cedar/ComputeCanada-Cedar_downtime.yaml @@ -42,3 +42,25 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1861822300 + Description: HW issue + Severity: Outage + StartTime: Jul 15, 2024 19:30 +0000 + EndTime: Jul 18, 2024 19:30 +0000 + CreatedTime: Jul 17, 2024 02:10 +0000 + ResourceName: ComputeCanada-Cedar-Cache + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1888256761 + Description: Config Issue + Severity: Outage + StartTime: Aug 14, 2024 19:03 +0000 + EndTime: Aug 23, 2024 19:03 +0000 + CreatedTime: Aug 16, 2024 16:27 +0000 + ResourceName: ComputeCanada-Cedar-Cache + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Compute Canada/FACILITY.yaml b/topology/Compute Canada/FACILITY.yaml index 8bb010cb2..563315d25 100644 --- a/topology/Compute Canada/FACILITY.yaml +++ b/topology/Compute Canada/FACILITY.yaml @@ -1 +1,2 @@ ID: 10180 +InstitutionID: https://osg-htc.org/iid/es2qxhnf1cmw diff --git a/topology/Computer Network Information Center (CNIC)/FACILITY.yaml b/topology/Computer Network Information Center (CNIC)/FACILITY.yaml index de5366bd7..9c3bd3662 100644 --- a/topology/Computer Network Information Center (CNIC)/FACILITY.yaml +++ b/topology/Computer Network Information Center (CNIC)/FACILITY.yaml @@ -1 +1,2 @@ ID: 10074 +InstitutionID: https://osg-htc.org/iid/ue13fl35dhwe diff --git a/topology/Cornell University/FACILITY.yaml b/topology/Cornell University/FACILITY.yaml index 66ee35085..7275049a1 100644 --- a/topology/Cornell University/FACILITY.yaml +++ b/topology/Cornell University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10026 +InstitutionID: https://osg-htc.org/iid/0lcrhlbjpu9r diff --git a/topology/CyVerse/FACILITY.yaml b/topology/CyVerse/FACILITY.yaml index 67d547254..c580ddbfa 100644 --- a/topology/CyVerse/FACILITY.yaml +++ b/topology/CyVerse/FACILITY.yaml @@ -1 +1,2 @@ ID: 10163 +InstitutionID: https://osg-htc.org/iid/7rjyoz6kb8vq diff --git a/topology/Cybera/FACILITY.yaml b/topology/Cybera/FACILITY.yaml index 46f08a704..2e63d165b 100644 --- a/topology/Cybera/FACILITY.yaml +++ b/topology/Cybera/FACILITY.yaml @@ -1 +1,2 @@ ID: 10175 +InstitutionID: ~ diff --git a/topology/DIII-D National Fusion Facility/FACILITY.yaml b/topology/DIII-D National Fusion Facility/FACILITY.yaml new file mode 100644 index 000000000..3f951ffcd --- /dev/null +++ b/topology/DIII-D National Fusion Facility/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/3zqhr5dalpot diff --git a/topology/DIII-D/National Fusion Facility/FDP-OSDF.yaml b/topology/DIII-D National Fusion Facility/National Fusion Facility/FDP-OSDF.yaml similarity index 100% rename from topology/DIII-D/National Fusion Facility/FDP-OSDF.yaml rename to topology/DIII-D National Fusion Facility/National Fusion Facility/FDP-OSDF.yaml diff --git a/topology/DIII-D National Fusion Facility/National Fusion Facility/FDP-OSDF_downtime.yaml b/topology/DIII-D National Fusion Facility/National Fusion Facility/FDP-OSDF_downtime.yaml new file mode 100644 index 000000000..b87664483 --- /dev/null +++ b/topology/DIII-D National Fusion Facility/National Fusion Facility/FDP-OSDF_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1873946840 + Description: testing the pelican sw + Severity: Outage + StartTime: Jul 28, 2024 08:01 +0000 + EndTime: Aug 09, 2024 19:03 +0000 + CreatedTime: Jul 31, 2024 02:58 +0000 + ResourceName: FDP_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/DIII-D/National Fusion Facility/SITE.yaml b/topology/DIII-D National Fusion Facility/National Fusion Facility/SITE.yaml similarity index 100% rename from topology/DIII-D/National Fusion Facility/SITE.yaml rename to topology/DIII-D National Fusion Facility/National Fusion Facility/SITE.yaml diff --git a/topology/Donald Danforth Plant Science Center/FACILITY.yaml b/topology/Donald Danforth Plant Science Center/FACILITY.yaml index db14d9da9..9fcbc18c2 100644 --- a/topology/Donald Danforth Plant Science Center/FACILITY.yaml +++ b/topology/Donald Danforth Plant Science Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10157 +InstitutionID: https://osg-htc.org/iid/rsgxpux8bm0h diff --git a/topology/Duke_University/FACILITY.yaml b/topology/Duke_University/FACILITY.yaml index f79d008a2..4a224d0bb 100644 --- a/topology/Duke_University/FACILITY.yaml +++ b/topology/Duke_University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10065 +InstitutionID: https://osg-htc.org/iid/v0pbd5jfz81s diff --git a/topology/Dutch National e-Infrastructure/FACILITY.yaml b/topology/Dutch National e-Infrastructure/FACILITY.yaml index 2113469af..bca1b311b 100644 --- a/topology/Dutch National e-Infrastructure/FACILITY.yaml +++ b/topology/Dutch National e-Infrastructure/FACILITY.yaml @@ -1 +1,2 @@ -ID: 10173 +ID: 10173 +InstitutionID: https://osg-htc.org/iid/xdbgbyhvcsmj diff --git a/topology/Dutch National e-Infrastructure/SURF-ICT/SURFMS4.yaml b/topology/Dutch National e-Infrastructure/SURF-ICT/SURFMS4.yaml index 0c57c0fb5..3a9cb1e53 100644 --- a/topology/Dutch National e-Infrastructure/SURF-ICT/SURFMS4.yaml +++ b/topology/Dutch National e-Infrastructure/SURF-ICT/SURFMS4.yaml @@ -1,12 +1,10 @@ Production: true SupportCenter: Community Support Center GroupDescription: Infrastructure for SURF-MS4 -GroupID: 1358 Resources: - SURF_MS4_OSDF_ORIGIN: + SURF_MS4_OSDF_STASHCACHE: Active: false - Description: Origin for SURF-MS4 - ID: 1453 + Description: OSDF Cache at SURF-MS4 for LVK ContactLists: Administrative Contact: Primary: @@ -22,10 +20,10 @@ Resources: Secondary: ID: OSG1000162 Name: Fabio Andrijauskas - FQDN: osg-origin.ms4.surfsara.nl - DN: /C=NL/ST=Utrecht/O=SURF B.V./CN=osg-origin.ms4.surfsara.nl + FQDN: osg-cache.ms4.surfsara.nl + DN: /C=NL/ST=Utrecht/O=SURF B.V./CN=osg-cache.ms4.surfsara.nl Services: - XRootD origin server: - Description: Origin for SURF-MS4 + XRootD cache server: + Description: Cache at SURF-MS4 for LVK AllowedVOs: - ANY diff --git a/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam.yaml b/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam.yaml index c8d9af603..29ee2a720 100644 --- a/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam.yaml +++ b/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam.yaml @@ -22,4 +22,4 @@ Resources: Pelican cache: Description: ESnet Amsterdam Cache AllowedVOs: - - LIGO + - ANY diff --git a/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam_downtime.yaml b/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam_downtime.yaml new file mode 100644 index 000000000..e98d4ea5d --- /dev/null +++ b/topology/Energy Sciences Network/Amsterdam/EsnetAmsterdam_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1830524787 + Description: '#toPelican' + Severity: Outage + StartTime: Jun 10, 2024 08:00 +0000 + EndTime: Jun 15, 2024 06:59 +0000 + CreatedTime: Jun 10, 2024 20:47 +0000 + ResourceName: AMSTERDAM_ESNET_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Energy Sciences Network/FACILITY.yaml b/topology/Energy Sciences Network/FACILITY.yaml index d1603ca2f..25817fe50 100644 --- a/topology/Energy Sciences Network/FACILITY.yaml +++ b/topology/Energy Sciences Network/FACILITY.yaml @@ -1 +1,2 @@ ID: 10211 +InstitutionID: https://osg-htc.org/iid/np7mwa7948gb diff --git a/topology/Energy Sciences Network/London/ESnetLondon.yaml b/topology/Energy Sciences Network/London/ESnetLondon.yaml index 60822a85b..80aef5d41 100644 --- a/topology/Energy Sciences Network/London/ESnetLondon.yaml +++ b/topology/Energy Sciences Network/London/ESnetLondon.yaml @@ -22,4 +22,4 @@ Resources: Pelican cache: Description: Internet2 London Cache AllowedVOs: - - LIGO + - ANY diff --git a/topology/Fermi National Accelerator Laboratory/FACILITY.yaml b/topology/Fermi National Accelerator Laboratory/FACILITY.yaml index 61fb8ac50..f633b50fd 100644 --- a/topology/Fermi National Accelerator Laboratory/FACILITY.yaml +++ b/topology/Fermi National Accelerator Laboratory/FACILITY.yaml @@ -1 +1,2 @@ ID: 10009 +InstitutionID: https://osg-htc.org/iid/ik4s3ql8u1j7 diff --git a/topology/Fermi National Accelerator Laboratory/FNAL USCMS Tier1/USCMS-FNAL-WC1_downtime.yaml b/topology/Fermi National Accelerator Laboratory/FNAL USCMS Tier1/USCMS-FNAL-WC1_downtime.yaml index 9a0e9518b..c2332f564 100644 --- a/topology/Fermi National Accelerator Laboratory/FNAL USCMS Tier1/USCMS-FNAL-WC1_downtime.yaml +++ b/topology/Fermi National Accelerator Laboratory/FNAL USCMS Tier1/USCMS-FNAL-WC1_downtime.yaml @@ -1060,5 +1060,29 @@ Services: - SRMv2 # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1866535972 + Description: dCache upgrade + Severity: Severe + StartTime: Jul 24, 2024 13:10 +0000 + EndTime: Jul 24, 2024 22:10 +0000 + CreatedTime: Jul 22, 2024 13:06 +0000 + ResourceName: USCMS-FNAL-WC1-SE + Services: + - FTS + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1866536437 + Description: dCache upgrade + Severity: Severe + StartTime: Jul 23, 2024 13:10 +0000 + EndTime: Jul 23, 2024 22:10 +0000 + CreatedTime: Jul 22, 2024 13:07 +0000 + ResourceName: USCMS-FNAL-WC1-SE2 + Services: + - FTS + - SRMv2 +# --------------------------------------------------------- diff --git a/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF_downtime.yaml b/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF_downtime.yaml new file mode 100644 index 000000000..f2bf32508 --- /dev/null +++ b/topology/Fermi National Accelerator Laboratory/FermiGrid/FNAL_OSDF_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1831468972 + Description: Testing the pelican sw + Severity: Outage + StartTime: Jun 11, 2024 08:00 +0000 + EndTime: Jun 21, 2024 19:30 +0000 + CreatedTime: Jun 11, 2024 23:01 +0000 + ResourceName: FNAL_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- diff --git a/topology/Florida A&M University/FACILITY.yaml b/topology/Florida A&M University/FACILITY.yaml index 4ab79872a..5e5995785 100644 --- a/topology/Florida A&M University/FACILITY.yaml +++ b/topology/Florida A&M University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10101 +InstitutionID: https://osg-htc.org/iid/4kdz6crgg38e diff --git a/topology/Florida Institute of Technology/FACILITY.yaml b/topology/Florida Institute of Technology/FACILITY.yaml index 89afd5ffc..6ddaf1ee7 100644 --- a/topology/Florida Institute of Technology/FACILITY.yaml +++ b/topology/Florida Institute of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10051 +InstitutionID: https://osg-htc.org/iid/o4qs4gpcylcj diff --git a/topology/Florida International University/FACILITY.yaml b/topology/Florida International University/FACILITY.yaml index dd4abc744..3c53980a1 100644 --- a/topology/Florida International University/FACILITY.yaml +++ b/topology/Florida International University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10008 +InstitutionID: https://osg-htc.org/iid/gyqnlof5dslq diff --git a/topology/Florida State University/FACILITY.yaml b/topology/Florida State University/FACILITY.yaml index 802b772b4..4cdd63ec4 100644 --- a/topology/Florida State University/FACILITY.yaml +++ b/topology/Florida State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10010 +InstitutionID: https://osg-htc.org/iid/0yddmgnh2xl5 diff --git a/topology/Franklin and Marshall College/FACILITY.yaml b/topology/Franklin and Marshall College/FACILITY.yaml index 7fa5de6b9..06ba34075 100644 --- a/topology/Franklin and Marshall College/FACILITY.yaml +++ b/topology/Franklin and Marshall College/FACILITY.yaml @@ -1 +1,2 @@ ID: 10196 +InstitutionID: https://osg-htc.org/iid/vfr5kfa0m5vm diff --git a/topology/George Washington University/FACILITY.yaml b/topology/George Washington University/FACILITY.yaml new file mode 100644 index 000000000..c9ade34cc --- /dev/null +++ b/topology/George Washington University/FACILITY.yaml @@ -0,0 +1,2 @@ +ID: 10218 +InstitutionID: https://osg-htc.org/iid/67icxo2r0nw7 diff --git a/topology/George Washington University/George Washington RTS/GWU-Viper.yaml b/topology/George Washington University/George Washington RTS/GWU-Viper.yaml new file mode 100644 index 000000000..f2196cff6 --- /dev/null +++ b/topology/George Washington University/George Washington RTS/GWU-Viper.yaml @@ -0,0 +1,25 @@ +Production: true +SupportCenter: Self Supported + +GroupDescription: George Washington University + +Resources: + GWU-Viper-CE1: + Active: false + Description: Hosted CE serving GWU + ContactLists: + Administrative Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Security Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + + FQDN: gwu-viper-ce1.svc.opensciencegrid.org + Services: + CE: + Description: Hosted CE + Tags: + - CC* diff --git a/topology/George Washington University/George Washington RTS/SITE.yaml b/topology/George Washington University/George Washington RTS/SITE.yaml new file mode 100644 index 000000000..d06d47e1d --- /dev/null +++ b/topology/George Washington University/George Washington RTS/SITE.yaml @@ -0,0 +1,7 @@ +AddressLine1: 2121 I St NW +Country: United States +Description: George Washington University +Latitude: 38.899664 +Longitude: -77.048567 +State: DC +Zipcode: '20052' diff --git a/topology/Georgia Institute of Technology/FACILITY.yaml b/topology/Georgia Institute of Technology/FACILITY.yaml index bf740544b..836e39073 100644 --- a/topology/Georgia Institute of Technology/FACILITY.yaml +++ b/topology/Georgia Institute of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10140 +InstitutionID: https://osg-htc.org/iid/uvf22j6xjbtv diff --git a/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml b/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml index fac08e0e8..371b8bebb 100644 --- a/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml +++ b/topology/Georgia Institute of Technology/Georgia Tech/Georgia Tech PACE OSG 2_downtime.yaml @@ -842,4 +842,161 @@ Services: - net.perfSONAR.Bandwidth # --------------------------------------------------------- - +- Class: SCHEDULED + ID: 1874682385 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_LIGO_Submit_2 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1874682386 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_PACE_CE_2 + Services: + - CE + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1874682387 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_PACE_CE_ICECUBE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1874682388 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_PACE_CE_LIGO + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1874682389 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_PACE_CE_OSG + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1874682390 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_PACE_GridFTP2 + Services: + - GridFtp + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1874682391 + Description: Systems maintenance week + Severity: Severe + StartTime: Aug 06, 2024 10:00 +0000 + EndTime: Aug 10, 2024 03:00 +0000 + CreatedTime: Jul 31, 2024 23:23 +0000 + ResourceName: Georgia_Tech_PACE_perfSONAR_BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721445 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_LIGO_Submit_2 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721446 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_PACE_CE_2 + Services: + - CE + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721447 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_PACE_CE_ICECUBE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721448 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_PACE_CE_LIGO + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721449 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_PACE_CE_OSG + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721450 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_PACE_GridFTP2 + Services: + - GridFtp + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903721451 + Description: PACE-Wide Emergency Shutdown - cooling issues in data center + Severity: Outage + StartTime: Sep 03, 2024 22:00 +0000 + EndTime: Sep 05, 2024 18:00 +0000 + CreatedTime: Sep 03, 2024 14:02 +0000 + ResourceName: Georgia_Tech_PACE_perfSONAR_BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- diff --git a/topology/Georgia State University/FACILITY.yaml b/topology/Georgia State University/FACILITY.yaml index c993e4598..6b40f23b2 100644 --- a/topology/Georgia State University/FACILITY.yaml +++ b/topology/Georgia State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10129 +InstitutionID: https://osg-htc.org/iid/ybl3snr9pbs1 diff --git a/topology/Georgia State University/GSU - ACIDS/GSU-ACIDS.yaml b/topology/Georgia State University/GSU - ACIDS/GSU-ACIDS.yaml index 47e59ed8b..55309e3ff 100644 --- a/topology/Georgia State University/GSU - ACIDS/GSU-ACIDS.yaml +++ b/topology/Georgia State University/GSU - ACIDS/GSU-ACIDS.yaml @@ -37,3 +37,26 @@ Resources: Services: CE: Description: Compute Element + GSU-ADONIS: + Active: true + Description: ADONIS is a Kubernetes Cluster at GSU + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000368 + Name: Christopher Childress + Security Contact: + Primary: + ID: OSG1000368 + Name: Christopher Childress + Site Contact: + Primary: + ID: 1b342d6ec2923f2d1f00ad77106e810e6c25fb9c + Name: Suranga Edirisinghe Pathirannehelage + Secondary: + ID: OSG1000368 + Name: Christopher Childress + FQDN: adonis-ctrl01.rs.gsu.edu # Not accessible to public + Services: + Execution Endpoint: + Description: OSPool EP pods at GSU-ADONIS diff --git a/topology/Georgia State University/GSU - ACORE/GSU-ACORE.yaml b/topology/Georgia State University/GSU - ACORE/GSU-ACORE.yaml index 4803f8641..e520dcb08 100644 --- a/topology/Georgia State University/GSU - ACORE/GSU-ACORE.yaml +++ b/topology/Georgia State University/GSU - ACORE/GSU-ACORE.yaml @@ -19,7 +19,7 @@ Resources: GSU-ACORE: # Active is true if the resource is accepting requests, and false otherwise. # When first registering a resource, set this to false. Set it to true when it's ready for production. - Active: true + Active: false # Description is a long description of the resource; may be multiple lines Description: Hosted CE for ACORE resource at GSU # If you have an up-to-date local git clone, fill ID with the output from `bin/next_resource_id` diff --git a/topology/Great Plains Network/FACILITY.yaml b/topology/Great Plains Network/FACILITY.yaml index 35f8efe90..39290adb9 100644 --- a/topology/Great Plains Network/FACILITY.yaml +++ b/topology/Great Plains Network/FACILITY.yaml @@ -1 +1,2 @@ ID: 10193 +InstitutionID: https://osg-htc.org/iid/ssmtibyuojo6 diff --git a/topology/Gridplexus/FACILITY.yaml b/topology/Gridplexus/FACILITY.yaml index 2ae82454c..fbcf9e18c 100644 --- a/topology/Gridplexus/FACILITY.yaml +++ b/topology/Gridplexus/FACILITY.yaml @@ -1 +1,2 @@ ID: 10055 +InstitutionID: ~ diff --git a/topology/Hampton University PPCF/FACILITY.yaml b/topology/Hampton University PPCF/FACILITY.yaml index 8fd8bd494..8edf56d6f 100644 --- a/topology/Hampton University PPCF/FACILITY.yaml +++ b/topology/Hampton University PPCF/FACILITY.yaml @@ -1 +1,2 @@ ID: 10107 +InstitutionID: https://osg-htc.org/iid/k38kbasl5hpd diff --git a/topology/Harrisburg University of Science and Technology/FACILITY.yaml b/topology/Harrisburg University of Science and Technology/FACILITY.yaml new file mode 100644 index 000000000..65d27cad0 --- /dev/null +++ b/topology/Harrisburg University of Science and Technology/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/6l8t5d2hv9ay diff --git a/topology/Harvard Medical School/FACILITY.yaml b/topology/Harvard Medical School/FACILITY.yaml index af9f5b581..39f0a3527 100644 --- a/topology/Harvard Medical School/FACILITY.yaml +++ b/topology/Harvard Medical School/FACILITY.yaml @@ -1 +1,2 @@ ID: 10108 +InstitutionID: https://osg-htc.org/iid/n1kbnzl7kyiv diff --git a/topology/Harvard University/FACILITY.yaml b/topology/Harvard University/FACILITY.yaml index bf993e102..066374488 100644 --- a/topology/Harvard University/FACILITY.yaml +++ b/topology/Harvard University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10053 +InstitutionID: https://osg-htc.org/iid/n1kbnzl7kyiv diff --git a/topology/Hewlett Packard Enterprise/FACILITY.yaml b/topology/Hewlett Packard Enterprise/FACILITY.yaml new file mode 100644 index 000000000..b650da226 --- /dev/null +++ b/topology/Hewlett Packard Enterprise/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: ~ diff --git a/topology/High Performance Computing Facility - University of Puerto Rico/FACILITY.yaml b/topology/High Performance Computing Facility - University of Puerto Rico/FACILITY.yaml index 7d4103d8c..0b0c089ea 100644 --- a/topology/High Performance Computing Facility - University of Puerto Rico/FACILITY.yaml +++ b/topology/High Performance Computing Facility - University of Puerto Rico/FACILITY.yaml @@ -1 +1,2 @@ ID: 10133 +InstitutionID: https://osg-htc.org/iid/ej3h6dqbbtv3 diff --git a/topology/IFAE/FACILITY.yaml b/topology/IFAE/FACILITY.yaml index e9c7e9b3a..792e0f5d7 100644 --- a/topology/IFAE/FACILITY.yaml +++ b/topology/IFAE/FACILITY.yaml @@ -1 +1,2 @@ ID: 10177 +InstitutionID: https://osg-htc.org/iid/qcal5imhbiey diff --git a/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml b/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml index 141b3aa2f..0439b23a8 100644 --- a/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml +++ b/topology/IFAE/PIC/PIC-CachingInfrastructure_downtime.yaml @@ -31,3 +31,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1869275492 + Description: OS upgrade + Severity: Outage + StartTime: Jul 29, 2024 05:00 +0000 + EndTime: Jul 29, 2024 23:00 +0000 + CreatedTime: Jul 25, 2024 17:12 +0000 + ResourceName: PIC_STASHCACHE_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/IN2P3/FACILITY.yaml b/topology/IN2P3/FACILITY.yaml new file mode 100644 index 000000000..9c12aa6e1 --- /dev/null +++ b/topology/IN2P3/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/l7y1tv6mn75x diff --git a/topology/INFN-PADOVA/FACILITY.yaml b/topology/INFN-PADOVA/FACILITY.yaml index 01ecb5f4f..5460fc8f2 100644 --- a/topology/INFN-PADOVA/FACILITY.yaml +++ b/topology/INFN-PADOVA/FACILITY.yaml @@ -1 +1,2 @@ ID: 10122 +InstitutionID: https://osg-htc.org/iid/ne7xrfhlfnwc diff --git a/topology/INFN-T1/FACILITY.yaml b/topology/INFN-T1/FACILITY.yaml index 949b917db..6d0b3c881 100644 --- a/topology/INFN-T1/FACILITY.yaml +++ b/topology/INFN-T1/FACILITY.yaml @@ -1 +1,2 @@ ID: 10094 +InstitutionID: https://osg-htc.org/iid/9i275kacobtc diff --git a/topology/Illinois Institute of Technology/FACILITY.yaml b/topology/Illinois Institute of Technology/FACILITY.yaml index 1ee675536..6a8562688 100644 --- a/topology/Illinois Institute of Technology/FACILITY.yaml +++ b/topology/Illinois Institute of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10149 +InstitutionID: https://osg-htc.org/iid/3jn3w1ccwxwd diff --git a/topology/Indiana University/FACILITY.yaml b/topology/Indiana University/FACILITY.yaml index 70a5979eb..9934deb65 100644 --- a/topology/Indiana University/FACILITY.yaml +++ b/topology/Indiana University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10017 +InstitutionID: https://osg-htc.org/iid/uws6kivcttuc diff --git a/topology/Institute of Physics ASCR/FACILITY.yaml b/topology/Institute of Physics ASCR/FACILITY.yaml index d1a3f81d9..5a2c0aaf0 100644 --- a/topology/Institute of Physics ASCR/FACILITY.yaml +++ b/topology/Institute of Physics ASCR/FACILITY.yaml @@ -1 +1,2 @@ ID: 10134 +InstitutionID: https://osg-htc.org/iid/rylf5707oced diff --git a/topology/Institute of Physics ASCR/FZU/FZU_downtime.yaml b/topology/Institute of Physics ASCR/FZU/FZU_downtime.yaml index ac3d03e16..707d8f6c5 100644 --- a/topology/Institute of Physics ASCR/FZU/FZU_downtime.yaml +++ b/topology/Institute of Physics ASCR/FZU/FZU_downtime.yaml @@ -32,3 +32,75 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1837692118 + Description: See https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35391 and + https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35395 + Severity: Outage + StartTime: Jun 14, 2024 12:00 +0000 + EndTime: Jun 21, 2024 16:00 +0000 + CreatedTime: Jun 19, 2024 03:53 +0000 + ResourceName: FZU_OSG_CE1 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1837692119 + Description: See https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35391 and + https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35395 + Severity: Outage + StartTime: Jun 14, 2024 12:00 +0000 + EndTime: Jun 21, 2024 16:00 +0000 + CreatedTime: Jun 19, 2024 03:53 +0000 + ResourceName: FZU_OSG_CE2 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1837692120 + Description: See https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35391 and + https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35395 + Severity: Outage + StartTime: Jun 14, 2024 12:00 +0000 + EndTime: Jun 21, 2024 16:00 +0000 + CreatedTime: Jun 19, 2024 03:53 +0000 + ResourceName: FZU_OSG_CE3 + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1837692121 + Description: See https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35391 and + https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35395 + Severity: Outage + StartTime: Jun 14, 2024 12:00 +0000 + EndTime: Jun 21, 2024 16:00 +0000 + CreatedTime: Jun 19, 2024 03:53 +0000 + ResourceName: FZU_STASH + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1837692122 + Description: See https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35391 and + https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35395 + Severity: Outage + StartTime: Jun 14, 2024 12:00 +0000 + EndTime: Jun 21, 2024 16:00 +0000 + CreatedTime: Jun 19, 2024 03:53 +0000 + ResourceName: perfSONAR_FZU_bandwidth + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1837692123 + Description: See https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35391 and + https://goc.egi.eu/portal/index.php?Page_Type=Downtime&id=35395 + Severity: Outage + StartTime: Jun 14, 2024 12:00 +0000 + EndTime: Jun 21, 2024 16:00 +0000 + CreatedTime: Jun 19, 2024 03:53 +0000 + ResourceName: perfSONAR_FZU_latency + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- diff --git a/topology/Institute of Plasma Physics, Chinese Academy of Sciences/FACILITY.yaml b/topology/Institute of Plasma Physics, Chinese Academy of Sciences/FACILITY.yaml index bd15f1e0b..0abc3b703 100644 --- a/topology/Institute of Plasma Physics, Chinese Academy of Sciences/FACILITY.yaml +++ b/topology/Institute of Plasma Physics, Chinese Academy of Sciences/FACILITY.yaml @@ -1 +1,2 @@ ID: 10153 +InstitutionID: https://osg-htc.org/iid/na87t42eqy7a diff --git a/topology/Inter-University Centre for Astronomy and Astrophysics/FACILITY.yaml b/topology/Inter-University Centre for Astronomy and Astrophysics/FACILITY.yaml index 17937fa81..e078e7c48 100644 --- a/topology/Inter-University Centre for Astronomy and Astrophysics/FACILITY.yaml +++ b/topology/Inter-University Centre for Astronomy and Astrophysics/FACILITY.yaml @@ -1 +1,2 @@ ID: 10161 +InstitutionID: https://osg-htc.org/iid/05bo9s0qjx7c diff --git a/topology/International Centre for Theoretical Sciences/FACILITY.yaml b/topology/International Centre for Theoretical Sciences/FACILITY.yaml index 471959331..2439c8c1f 100644 --- a/topology/International Centre for Theoretical Sciences/FACILITY.yaml +++ b/topology/International Centre for Theoretical Sciences/FACILITY.yaml @@ -1 +1,2 @@ ID: 10187 +InstitutionID: https://osg-htc.org/iid/ysvhsvps5n0n diff --git a/topology/Internet2/FACILITY.yaml b/topology/Internet2/FACILITY.yaml index c1d897d70..5390c97db 100644 --- a/topology/Internet2/FACILITY.yaml +++ b/topology/Internet2/FACILITY.yaml @@ -1 +1,2 @@ ID: 10176 +InstitutionID: https://osg-htc.org/iid/rdbgla0ef33b diff --git a/topology/Internet2/Internet2Boise/I2BoiseInfrastructure_downtime.yaml b/topology/Internet2/Internet2Boise/I2BoiseInfrastructure_downtime.yaml index a10db4b36..d9e93eebb 100644 --- a/topology/Internet2/Internet2Boise/I2BoiseInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Boise/I2BoiseInfrastructure_downtime.yaml @@ -31,3 +31,25 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1880486298 + Description: HW issue + Severity: Outage + StartTime: Aug 07, 2024 08:00 +0000 + EndTime: Aug 16, 2024 19:30 +0000 + CreatedTime: Aug 07, 2024 16:37 +0000 + ResourceName: BOISE_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1890864242 + Description: HW issues + Severity: Outage + StartTime: Aug 18, 2024 08:00 +0000 + EndTime: Sep 04, 2024 19:30 +0000 + CreatedTime: Aug 19, 2024 16:53 +0000 + ResourceName: BOISE_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml b/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml index 30bf616a9..feed440a1 100644 --- a/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Chicago/I2ChicagoInfrastructure_downtime.yaml @@ -31,3 +31,37 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1872790066 + Description: SW debug + Severity: Outage + StartTime: Jul 28, 2024 07:30 +0000 + EndTime: Aug 09, 2024 19:30 +0000 + CreatedTime: Jul 29, 2024 18:50 +0000 + ResourceName: Stashcache-Chicago + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1881372340 + Description: debug + Severity: Outage + StartTime: Aug 07, 2024 19:30 +0000 + EndTime: Aug 16, 2024 19:30 +0000 + CreatedTime: Aug 08, 2024 17:13 +0000 + ResourceName: Stashcache-Chicago + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1922640858 + Description: 'for debug 403 ' + Severity: Outage + StartTime: Sep 24, 2024 15:30 +0000 + EndTime: Oct 04, 2024 15:30 +0000 + CreatedTime: Sep 25, 2024 11:34 +0000 + ResourceName: Stashcache-Chicago + Services: + - XRootD cache server +# --------------------------------------------------------- + diff --git a/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml b/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml index 6a1cc3a33..45b3ea789 100644 --- a/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Denver/I2DenverInfrastructure_downtime.yaml @@ -42,3 +42,61 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1867467090 + Description: overloaded + Severity: Outage + StartTime: Jul 23, 2024 05:01 +0000 + EndTime: Jul 26, 2024 16:30 +0000 + CreatedTime: Jul 23, 2024 14:58 +0000 + ResourceName: DENVER_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1880487130 + Description: HW issue + Severity: Outage + StartTime: Aug 07, 2024 08:00 +0000 + EndTime: Aug 16, 2024 19:30 +0000 + CreatedTime: Aug 07, 2024 16:38 +0000 + ResourceName: DENVER_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- + +- Class: UNSCHEDULED + ID: 1890864772 + Description: HW issues + Severity: Outage + StartTime: Aug 18, 2024 08:00 +0000 + EndTime: Sep 4, 2024 19:30 +0000 + CreatedTime: Aug 19, 2024 16:54 +0000 + ResourceName: DENVER_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1910005769 + Description: HW issue + Severity: Outage + StartTime: Sep 09, 2024 00:01 +0000 + EndTime: Sep 11, 2024 11:30 +0000 + CreatedTime: Sep 10, 2024 20:36 +0000 + ResourceName: DENVER_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1922118024 + Description: '157 pod restarts ' + Severity: Outage + StartTime: Sep 23, 2024 15:30 +0000 + EndTime: Oct 11, 2024 15:03 +0000 + CreatedTime: Sep 24, 2024 21:03 +0000 + ResourceName: DENVER_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- + + diff --git a/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml b/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml index de10d6ed3..1fe72b93f 100644 --- a/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2GreatPlains/I2GreatPlainsInfrastructure_downtime.yaml @@ -29,3 +29,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1922772509 + Description: performance issues + Severity: Outage + StartTime: Sep 24, 2024 15:30 +0000 + EndTime: Oct 10, 2024 15:30 +0000 + CreatedTime: Sep 25, 2024 15:14 +0000 + ResourceName: Stashcache-Kansas + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml b/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml index feb66ae13..66154a57a 100644 --- a/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Houston/I2HoustonInfrastructure_downtime.yaml @@ -20,3 +20,47 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1860708585 + Description: Several HW issues + Severity: Outage + StartTime: Jul 15, 2024 19:00 +0000 + EndTime: Jul 31, 2024 19:00 +0000 + CreatedTime: Jul 15, 2024 19:14 +0000 + ResourceName: HOUSTON2_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1875324652 + Description: HW issue + Severity: Outage + StartTime: Jul 31, 2024 08:01 +0000 + EndTime: Aug 05, 2024 19:30 +0000 + CreatedTime: Aug 01, 2024 17:14 +0000 + ResourceName: HOUSTON2_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1898041141 + Description: HW issue + Severity: Outage + StartTime: Aug 26, 2024 08:01 +0000 + EndTime: Aug 29, 2024 19:30 +0000 + CreatedTime: Aug 28, 2024 00:15 +0000 + ResourceName: HOUSTON2_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1903815938 + Description: HW issue + Severity: Outage + StartTime: Sep 02, 2024 19:30 +0000 + EndTime: Sep 4, 2024 19:30 +0000 + CreatedTime: Sep 03, 2024 16:39 +0000 + ResourceName: HOUSTON2_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml b/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml index 05f472f50..966f59247 100644 --- a/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml +++ b/topology/Internet2/Internet2Jacksonville/I2JacksonvilleInfrastructure_downtime.yaml @@ -20,3 +20,25 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1898041785 + Description: HW issue + Severity: Outage + StartTime: Aug 26, 2024 08:01 +0000 + EndTime: Aug 29, 2024 19:30 +0000 + CreatedTime: Aug 28, 2024 00:16 +0000 + ResourceName: JACKSONVILLE_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1903809760 + Description: HW Issue + Severity: Outage + StartTime: Sep 02, 2024 19:30 +0000 + EndTime: Sep 30, 2024 19:30 +0000 + CreatedTime: Sep 03, 2024 16:29 +0000 + ResourceName: JACKSONVILLE_INTERNET2_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Iowa State University/FACILITY.yaml b/topology/Iowa State University/FACILITY.yaml index 403130dd9..79c6c0ac2 100644 --- a/topology/Iowa State University/FACILITY.yaml +++ b/topology/Iowa State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10049 +InstitutionID: https://osg-htc.org/iid/wbwnw037cybm diff --git a/topology/JINR/FACILITY.yaml b/topology/JINR/FACILITY.yaml index d14dd042e..3bfc20c5f 100644 --- a/topology/JINR/FACILITY.yaml +++ b/topology/JINR/FACILITY.yaml @@ -1 +1,2 @@ ID: 10143 +InstitutionID: https://osg-htc.org/iid/71b19iahbbtx diff --git a/topology/Jackson State University/FACILITY.yaml b/topology/Jackson State University/FACILITY.yaml new file mode 100644 index 000000000..374be522a --- /dev/null +++ b/topology/Jackson State University/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/q8m8imsihb9c diff --git a/topology/Jackson State University/JSU IT/JSU-IT.yaml b/topology/Jackson State University/JSU IT/JSU-IT.yaml new file mode 100644 index 000000000..d26a8f198 --- /dev/null +++ b/topology/Jackson State University/JSU IT/JSU-IT.yaml @@ -0,0 +1,41 @@ +Production: true +SupportCenter: Self Supported +GroupDescription: This is an OSPool Access Point on our IT Cluster + +Resources: + JSU-ap0: + Active: true + Description: This is an OSPool Access Point for JSU IT. + ContactLists: + Administrative Contact: + Primary: + Name: Jackson State University IT + ID: f2b7cd041f56af2d018a07acb079a85dda4e2d90 + Secondary: + Name: Aaron Moate + ID: OSG1000015 + Tertiary: + Name: Brian Lin + ID: OSG1000003 + Security Contact: + Primary: + Name: Jackson State University IT + ID: f2b7cd041f56af2d018a07acb079a85dda4e2d90 + Secondary: + Name: Aaron Moate + ID: OSG1000015 + Tertiary: + Name: Brian Lin + ID: OSG1000003 + Local Executive Contact: + Primary: + Name: Michael Robinson + ID: OSG1000832 + + FQDN: chtc.ap0.jsums.edu + # valid services are listed in topology/services.yaml with the format ": " + Services: + Submit Node: + Description: An OSPool Access Point to submit jobs to the OSPool. + Tags: + - OSPool diff --git a/topology/Jackson State University/JSU IT/SITE.yaml b/topology/Jackson State University/JSU IT/SITE.yaml new file mode 100644 index 000000000..d6147709d --- /dev/null +++ b/topology/Jackson State University/JSU IT/SITE.yaml @@ -0,0 +1,8 @@ +LongName: Jackson State University Research Computing +AddressLine1: 1400 John R. Lynch St +City: Jackson +Country: United States +State: Mississippi +Zipcode: "39217" +Latitude: 32.29 +Longitude: 90.20 diff --git a/topology/Kansas State University/FACILITY.yaml b/topology/Kansas State University/FACILITY.yaml index f29dd936d..ee89351aa 100644 --- a/topology/Kansas State University/FACILITY.yaml +++ b/topology/Kansas State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10088 +InstitutionID: https://osg-htc.org/iid/kxvagjjgn71t diff --git a/topology/Kansas University/FACILITY.yaml b/topology/Kansas University/FACILITY.yaml index ef6aa104d..f9f6ae19b 100644 --- a/topology/Kansas University/FACILITY.yaml +++ b/topology/Kansas University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10012 +InstitutionID: https://osg-htc.org/iid/3dxfebv9ibby diff --git a/topology/Kansas University/KANSAS_HOSTED/KANSAS_HOSTED_BOSCO_CE.yaml b/topology/Kansas University/KANSAS_HOSTED/KANSAS_HOSTED_BOSCO_CE.yaml index 3fd7d4c7d..eb1116c86 100644 --- a/topology/Kansas University/KANSAS_HOSTED/KANSAS_HOSTED_BOSCO_CE.yaml +++ b/topology/Kansas University/KANSAS_HOSTED/KANSAS_HOSTED_BOSCO_CE.yaml @@ -8,11 +8,11 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Description: BOSCO CE gatekeeper for the cluster at KU Community Cluster FQDN: hosted-ce01.grid.uchicago.edu diff --git a/topology/Kennesaw State University/FACILITY.yaml b/topology/Kennesaw State University/FACILITY.yaml index cc85e9adb..732442446 100644 --- a/topology/Kennesaw State University/FACILITY.yaml +++ b/topology/Kennesaw State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10131 +InstitutionID: https://osg-htc.org/iid/ergs0rt3q1i6 diff --git a/topology/Kent State University/FACILITY.yaml b/topology/Kent State University/FACILITY.yaml index 2ddf51777..56b6e172b 100644 --- a/topology/Kent State University/FACILITY.yaml +++ b/topology/Kent State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10205 +InstitutionID: https://osg-htc.org/iid/2iujc1axzu6d diff --git a/topology/Korea Institute of Science and Technology Information/FACILITY.yaml b/topology/Korea Institute of Science and Technology Information/FACILITY.yaml index 908d47586..147a1b7d9 100644 --- a/topology/Korea Institute of Science and Technology Information/FACILITY.yaml +++ b/topology/Korea Institute of Science and Technology Information/FACILITY.yaml @@ -1 +1,2 @@ ID: 10077 +InstitutionID: https://osg-htc.org/iid/0899w228yttv diff --git a/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml b/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml index 97011f945..fdcd613df 100644 --- a/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml +++ b/topology/Korea Institute of Science and Technology Information/T3_KR_KISTI/KISTIPRPCachingInfrastructure_downtime.yaml @@ -31,3 +31,25 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1880487981 + Description: HW issue + Severity: Outage + StartTime: Aug 07, 2024 08:00 +0000 + EndTime: Aug 16, 2024 19:30 +0000 + CreatedTime: Aug 07, 2024 16:39 +0000 + ResourceName: Stashcache-KISTI + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1898040201 + Description: HW issue + Severity: Outage + StartTime: Aug 26, 2024 08:01 +0000 + EndTime: Aug 29, 2024 19:30 +0000 + CreatedTime: Aug 28, 2024 00:13 +0000 + ResourceName: Stashcache-KISTI + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/LHCONE/FACILITY.yaml b/topology/LHCONE/FACILITY.yaml index 7034cd97a..e87b8ac78 100644 --- a/topology/LHCONE/FACILITY.yaml +++ b/topology/LHCONE/FACILITY.yaml @@ -1 +1,2 @@ ID: 10139 +InstitutionID: https://osg-htc.org/iid/8alpqdbfmj7m diff --git a/topology/Lafayette College/FACILITY.yaml b/topology/Lafayette College/FACILITY.yaml index 264d6d6d2..92a2d0b39 100644 --- a/topology/Lafayette College/FACILITY.yaml +++ b/topology/Lafayette College/FACILITY.yaml @@ -1 +1,2 @@ ID: 10202 +InstitutionID: https://osg-htc.org/iid/16w51d77uyqw diff --git a/topology/Lamar University/FACILITY.yaml b/topology/Lamar University/FACILITY.yaml index bc1319209..e34d32fcb 100644 --- a/topology/Lamar University/FACILITY.yaml +++ b/topology/Lamar University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10185 +InstitutionID: https://osg-htc.org/iid/g1wb6gt1e1wq diff --git a/topology/Lamar University/Lamar Cluster/Lamar-Cluster.yaml b/topology/Lamar University/Lamar Cluster/Lamar-Cluster.yaml index f3373074c..48878feaa 100644 --- a/topology/Lamar University/Lamar Cluster/Lamar-Cluster.yaml +++ b/topology/Lamar University/Lamar Cluster/Lamar-Cluster.yaml @@ -5,7 +5,7 @@ GroupID: 1111 Resources: Lamar-Cluster: - Active: true + Active: false Description: This is a Hosted CE for LamarUniversity. ID: 1134 ContactLists: diff --git a/topology/Lancium/FACILITY.yaml b/topology/Lancium/FACILITY.yaml index 539c0fb8f..fa3cec60d 100644 --- a/topology/Lancium/FACILITY.yaml +++ b/topology/Lancium/FACILITY.yaml @@ -1,2 +1,3 @@ --- ID: 10194 +InstitutionID: https://osg-htc.org/iid/h8acvq5abqim diff --git a/topology/Langston University/FACILITY.yaml b/topology/Langston University/FACILITY.yaml index 226b77c48..f1cc9fd12 100644 --- a/topology/Langston University/FACILITY.yaml +++ b/topology/Langston University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10078 +InstitutionID: https://osg-htc.org/iid/168929yzoupi diff --git a/topology/Langston University/LU-CCRE/Langston-Lion_downtime.yaml b/topology/Langston University/LU-CCRE/Langston-Lion_downtime.yaml index 5546bd747..a517eb3b7 100644 --- a/topology/Langston University/LU-CCRE/Langston-Lion_downtime.yaml +++ b/topology/Langston University/LU-CCRE/Langston-Lion_downtime.yaml @@ -3,7 +3,7 @@ Description: Cooling issues Severity: Outage StartTime: Feb 07, 2024 20:00 +0000 - EndTime: Feb 10, 2025 01:00 +0000 + EndTime: Jul 25, 2024 01:00 +0000 CreatedTime: Feb 07, 2024 20:28 +0000 ResourceName: Langston-Lion-CE1 Services: diff --git a/topology/Lawrence Berkley National Laboratory/FACILITY.yaml b/topology/Lawrence Berkley National Laboratory/FACILITY.yaml index e605db554..44fc0e1d8 100644 --- a/topology/Lawrence Berkley National Laboratory/FACILITY.yaml +++ b/topology/Lawrence Berkley National Laboratory/FACILITY.yaml @@ -1 +1,2 @@ ID: 10052 +InstitutionID: https://osg-htc.org/iid/bvf12qyqplv6 diff --git a/topology/Lawrence Berkley National Laboratory/LBL_HPCS/LBL_HPCS_downtime.yaml b/topology/Lawrence Berkley National Laboratory/LBL_HPCS/LBL_HPCS_downtime.yaml index d911007b1..f354d8da7 100644 --- a/topology/Lawrence Berkley National Laboratory/LBL_HPCS/LBL_HPCS_downtime.yaml +++ b/topology/Lawrence Berkley National Laboratory/LBL_HPCS/LBL_HPCS_downtime.yaml @@ -1,11 +1,11 @@ - Class: UNSCHEDULED ID: 1299092679 - Description: SLURM update + Description: SLURM update [it was scheduled, I was on travel so registering it a little late] Severity: Outage StartTime: Oct 04, 2022 17:00 +0000 EndTime: Oct 05, 2022 17:00 +0000 CreatedTime: Oct 04, 2022 18:47 +0000 - ResourceName: LBL_HPCS + ResourceName: LBL_HPCS_LRC Services: - CE # --------------------------------------------------------- diff --git a/topology/Lawrence Livermore National Laboratory/FACILITY.yaml b/topology/Lawrence Livermore National Laboratory/FACILITY.yaml index 3709096bc..d71e06067 100644 --- a/topology/Lawrence Livermore National Laboratory/FACILITY.yaml +++ b/topology/Lawrence Livermore National Laboratory/FACILITY.yaml @@ -1 +1,2 @@ ID: 10081 +InstitutionID: https://osg-htc.org/iid/p4yzz1wxq2g3 diff --git a/topology/Lehigh University/FACILITY.yaml b/topology/Lehigh University/FACILITY.yaml index e75167868..a2339d3f2 100644 --- a/topology/Lehigh University/FACILITY.yaml +++ b/topology/Lehigh University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10018 +InstitutionID: https://osg-htc.org/iid/zu72yws3nzeo diff --git a/topology/Louisiana State University Health Sciences Center/FACILITY.yaml b/topology/Louisiana State University Health Sciences Center/FACILITY.yaml index 811005912..1a81597f8 100644 --- a/topology/Louisiana State University Health Sciences Center/FACILITY.yaml +++ b/topology/Louisiana State University Health Sciences Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10189 +InstitutionID: https://osg-htc.org/iid/9idmt4uz33c1 diff --git a/topology/Louisiana State University/FACILITY.yaml b/topology/Louisiana State University/FACILITY.yaml index fac1adc91..5183357a8 100644 --- a/topology/Louisiana State University/FACILITY.yaml +++ b/topology/Louisiana State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10019 +InstitutionID: https://osg-htc.org/iid/lk45ajqlj7f1 diff --git a/topology/Louisiana State University/LSU SuperMIC/LSU_SuperMIC_downtime.yaml b/topology/Louisiana State University/LSU SuperMIC/LSU_SuperMIC_downtime.yaml new file mode 100644 index 000000000..6a2ea9cd4 --- /dev/null +++ b/topology/Louisiana State University/LSU SuperMIC/LSU_SuperMIC_downtime.yaml @@ -0,0 +1,12 @@ +- Class: UNSCHEDULED + ID: 1873525527 + Description: Down for headnode upgrade + Severity: Outage + StartTime: Jul 30, 2024 15:00 +0000 + EndTime: Aug 15, 2024 15:00 +0000 + CreatedTime: Jul 30, 2024 15:15 +0000 + ResourceName: LSU-SuperMIC-CE1 + Services: + - CE +# --------------------------------------------------------- + diff --git a/topology/Louisiana Tech University/FACILITY.yaml b/topology/Louisiana Tech University/FACILITY.yaml index c09bc5847..9edd7fc3a 100644 --- a/topology/Louisiana Tech University/FACILITY.yaml +++ b/topology/Louisiana Tech University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10020 +InstitutionID: https://osg-htc.org/iid/qmx56gydd858 diff --git a/topology/Massachusetts Green High Performance Computing Center/FACILITY.yaml b/topology/Massachusetts Green High Performance Computing Center/FACILITY.yaml index d83681850..d64472622 100644 --- a/topology/Massachusetts Green High Performance Computing Center/FACILITY.yaml +++ b/topology/Massachusetts Green High Performance Computing Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10204 +InstitutionID: https://osg-htc.org/iid/akhgffx9bnad diff --git a/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure.yaml b/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure.yaml index da4d1f9b2..714e0e383 100644 --- a/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure.yaml +++ b/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure.yaml @@ -4,7 +4,7 @@ GroupDescription: Caching infrastructure in MGHPCC GroupID: 1318 Resources: MGHPCC_NRP_OSDF_CACHE: - Active: true + Active: false Description: MGHPCC NRP OSDF Cache ID: 1348 ContactLists: diff --git a/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure_downtime.yaml b/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure_downtime.yaml index a41d58815..ef9b9df51 100644 --- a/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure_downtime.yaml +++ b/topology/Massachusetts Green High Performance Computing Center/NRP/MGHPCCCachingInfrastructure_downtime.yaml @@ -31,3 +31,26 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1875363442 + Description: HW issue + Severity: Outage + StartTime: Jul 31, 2024 08:01 +0000 + EndTime: Aug 10, 2024 19:30 +0000 + CreatedTime: Aug 01, 2024 18:19 +0000 + ResourceName: MGHPCC_NRP_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1922146055 + Description: NRP issue + Severity: Outage + StartTime: Sep 22, 2024 15:00 +0000 + EndTime: Oct 04, 2024 15:30 +0000 + CreatedTime: Sep 24, 2024 21:50 +0000 + ResourceName: MGHPCC_NRP_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- + diff --git a/topology/Massachusetts Institute of Technology/FACILITY.yaml b/topology/Massachusetts Institute of Technology/FACILITY.yaml index bf2e5389b..cc2b116a8 100644 --- a/topology/Massachusetts Institute of Technology/FACILITY.yaml +++ b/topology/Massachusetts Institute of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10022 +InstitutionID: https://osg-htc.org/iid/jtlq7k0qkxtn diff --git a/topology/McGill University/FACILITY.yaml b/topology/McGill University/FACILITY.yaml index 88c77feb1..0311493bd 100644 --- a/topology/McGill University/FACILITY.yaml +++ b/topology/McGill University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10021 +InstitutionID: https://osg-htc.org/iid/vkp9ftx9kdrq diff --git a/topology/Michigan State University High Energy Physics/FACILITY.yaml b/topology/Michigan State University High Energy Physics/FACILITY.yaml index 18777ac14..2b801452f 100644 --- a/topology/Michigan State University High Energy Physics/FACILITY.yaml +++ b/topology/Michigan State University High Energy Physics/FACILITY.yaml @@ -1 +1,2 @@ ID: 10050 +InstitutionID: https://osg-htc.org/iid/wala2w0ka0gb diff --git a/topology/Michigan State University/FACILITY.yaml b/topology/Michigan State University/FACILITY.yaml index 3067134bd..4fd202583 100644 --- a/topology/Michigan State University/FACILITY.yaml +++ b/topology/Michigan State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10214 +InstitutionID: https://osg-htc.org/iid/wala2w0ka0gb diff --git a/topology/Montana State University/FACILITY.yaml b/topology/Montana State University/FACILITY.yaml index c5f9071a3..08ca412b7 100644 --- a/topology/Montana State University/FACILITY.yaml +++ b/topology/Montana State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10216 +InstitutionID: https://osg-htc.org/iid/0budavib8vhh diff --git a/topology/Montana State University/Montana State RCI/MTState-Tempest_downtime.yaml b/topology/Montana State University/Montana State RCI/MTState-Tempest_downtime.yaml new file mode 100644 index 000000000..41b39894a --- /dev/null +++ b/topology/Montana State University/Montana State RCI/MTState-Tempest_downtime.yaml @@ -0,0 +1,11 @@ +- Class: SCHEDULED + ID: 1861471608 + Description: Bianual Updates + Severity: Severe + StartTime: Jul 15, 2024 14:00 +0000 + EndTime: Jul 18, 2024 14:00 +0000 + CreatedTime: Jul 16, 2024 16:26 +0000 + ResourceName: MTState-Tempest-CE1 + Services: + - CE +# --------------------------------------------------------- diff --git a/topology/NSF DC/FACILITY.yaml b/topology/NSF DC/FACILITY.yaml index 937e9d534..9e858fc30 100644 --- a/topology/NSF DC/FACILITY.yaml +++ b/topology/NSF DC/FACILITY.yaml @@ -1 +1,2 @@ ID: 10058 +InstitutionID: ~ diff --git a/topology/National Center for Atmospheric Research/FACILITY.yaml b/topology/National Center for Atmospheric Research/FACILITY.yaml new file mode 100644 index 000000000..0a0cda17e --- /dev/null +++ b/topology/National Center for Atmospheric Research/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/hfo8pge14iwg diff --git a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF_downtime.yaml b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF_downtime.yaml index 3188d26fd..26abd4ecd 100644 --- a/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF_downtime.yaml +++ b/topology/National Center for Atmospheric Research/NCAR-Wyoming Supercomputing Center/NCAR-OSDF_downtime.yaml @@ -9,3 +9,25 @@ Services: - XRootD origin server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915949502 + Description: 'network outage ' + Severity: Outage + StartTime: Sep 16, 2024 04:00 +0000 + EndTime: Sep 18, 2024 15:30 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: NCAR_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915949503 + Description: 'network outage ' + Severity: Outage + StartTime: Sep 16, 2024 04:00 +0000 + EndTime: Sep 18, 2024 15:30 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: NCAR_OSDF_S3_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- diff --git a/topology/National Center for High-performance Computing/FACILITY.yaml b/topology/National Center for High-performance Computing/FACILITY.yaml index 755155182..a2e0d0894 100644 --- a/topology/National Center for High-performance Computing/FACILITY.yaml +++ b/topology/National Center for High-performance Computing/FACILITY.yaml @@ -1 +1,2 @@ ID: 10208 +InstitutionID: https://osg-htc.org/iid/05onotllmrg3 diff --git a/topology/National Energy Research Scientific Computing Center/FACILITY.yaml b/topology/National Energy Research Scientific Computing Center/FACILITY.yaml index d24fa9321..81c465b43 100644 --- a/topology/National Energy Research Scientific Computing Center/FACILITY.yaml +++ b/topology/National Energy Research Scientific Computing Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10024 +InstitutionID: https://osg-htc.org/iid/hxb2z3xxuij4 diff --git a/topology/Nevada System of Higher Education/FACILITY.yaml b/topology/Nevada System of Higher Education/FACILITY.yaml index 3067134bd..c78065c26 100644 --- a/topology/Nevada System of Higher Education/FACILITY.yaml +++ b/topology/Nevada System of Higher Education/FACILITY.yaml @@ -1 +1,2 @@ ID: 10214 +InstitutionID: https://osg-htc.org/iid/qg1h77zyr2wl diff --git a/topology/New Mexico State University/FACILITY.yaml b/topology/New Mexico State University/FACILITY.yaml index 1b6c5637b..e9fb5d5d9 100644 --- a/topology/New Mexico State University/FACILITY.yaml +++ b/topology/New Mexico State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10164 +InstitutionID: https://osg-htc.org/iid/zoe98r1f2ztc diff --git a/topology/New Mexico State University/New Mexico State Discovery/NMSU_DISCOVERY_downtime.yaml b/topology/New Mexico State University/New Mexico State Discovery/NMSU_DISCOVERY_downtime.yaml index 63436ff74..96d5f8c78 100644 --- a/topology/New Mexico State University/New Mexico State Discovery/NMSU_DISCOVERY_downtime.yaml +++ b/topology/New Mexico State University/New Mexico State Discovery/NMSU_DISCOVERY_downtime.yaml @@ -68,4 +68,14 @@ ResourceName: NMSU-Discovery-CE1 Services: - CE +- Class: SCHEDULED + ID: 1903792728 + Description: Scheduled biannual cluster maintenance + Severity: Outage + StartTime: Sep 03, 2024 14:00 +0000 + EndTime: Sep 16, 2024 14:00 +0000 + CreatedTime: Sep 03, 2024 16:00 +0000 + ResourceName: NMSU-Discovery-CE1 + Services: + - CE # --------------------------------------------------------- diff --git a/topology/New York University/FACILITY.yaml b/topology/New York University/FACILITY.yaml index 4af058672..62351b259 100644 --- a/topology/New York University/FACILITY.yaml +++ b/topology/New York University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10106 +InstitutionID: https://osg-htc.org/iid/hjcl6b3vh3ox diff --git a/topology/Niagara University/FACILITY.yaml b/topology/Niagara University/FACILITY.yaml index 682f25219..a88cd433d 100644 --- a/topology/Niagara University/FACILITY.yaml +++ b/topology/Niagara University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10014 +InstitutionID: https://osg-htc.org/iid/c2pbsohpfk21 diff --git a/topology/Niels Bohr Institute/FACILITY.yaml b/topology/Niels Bohr Institute/FACILITY.yaml index f6491e3e3..44fff2096 100644 --- a/topology/Niels Bohr Institute/FACILITY.yaml +++ b/topology/Niels Bohr Institute/FACILITY.yaml @@ -1 +1,2 @@ ID: 10171 +InstitutionID: https://osg-htc.org/iid/6u29brmf5i9a diff --git a/topology/North Carolina State University/FACILITY.yaml b/topology/North Carolina State University/FACILITY.yaml index 97eadee19..9a3fc083d 100644 --- a/topology/North Carolina State University/FACILITY.yaml +++ b/topology/North Carolina State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10191 +InstitutionID: https://osg-htc.org/iid/mcejqenugk6j diff --git a/topology/North Dakota State University/FACILITY.yaml b/topology/North Dakota State University/FACILITY.yaml index 581440eea..6686a2360 100644 --- a/topology/North Dakota State University/FACILITY.yaml +++ b/topology/North Dakota State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10160 +InstitutionID: https://osg-htc.org/iid/der850qlvoxm diff --git a/topology/Northeastern University/FACILITY.yaml b/topology/Northeastern University/FACILITY.yaml index 8ac38d591..6bac338f8 100644 --- a/topology/Northeastern University/FACILITY.yaml +++ b/topology/Northeastern University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10135 +InstitutionID: https://osg-htc.org/iid/454t2lfhcfpp diff --git a/topology/Northern Illinois University/FACILITY.yaml b/topology/Northern Illinois University/FACILITY.yaml index fb011bc1a..85d3dec36 100644 --- a/topology/Northern Illinois University/FACILITY.yaml +++ b/topology/Northern Illinois University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10116 +InstitutionID: https://osg-htc.org/iid/4q4axu2r92r6 diff --git a/topology/Northwestern University/FACILITY.yaml b/topology/Northwestern University/FACILITY.yaml index ecd734601..54fb2068c 100644 --- a/topology/Northwestern University/FACILITY.yaml +++ b/topology/Northwestern University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10132 +InstitutionID: https://osg-htc.org/iid/5vvknn2bzgvt diff --git a/topology/Oak Ridge National Laboratory/FACILITY.yaml b/topology/Oak Ridge National Laboratory/FACILITY.yaml index ac44f0233..ae9859321 100644 --- a/topology/Oak Ridge National Laboratory/FACILITY.yaml +++ b/topology/Oak Ridge National Laboratory/FACILITY.yaml @@ -1 +1,2 @@ ID: 10027 +InstitutionID: https://osg-htc.org/iid/l6o6zg5xrbd6 diff --git a/topology/Ohio Supercomputer Center/FACILITY.yaml b/topology/Ohio Supercomputer Center/FACILITY.yaml index 5021dac4e..62e00a1c3 100644 --- a/topology/Ohio Supercomputer Center/FACILITY.yaml +++ b/topology/Ohio Supercomputer Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10127 +InstitutionID: https://osg-htc.org/iid/aahnroj46hpx diff --git a/topology/Oklahoma State University/FACILITY.yaml b/topology/Oklahoma State University/FACILITY.yaml index 527f692ea..345ec9d0e 100644 --- a/topology/Oklahoma State University/FACILITY.yaml +++ b/topology/Oklahoma State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10155 +InstitutionID: https://osg-htc.org/iid/ogvkim1urhzk diff --git a/topology/Old Dominion University/FACILITY.yaml b/topology/Old Dominion University/FACILITY.yaml index 0023b5fe8..35a1fcf77 100644 --- a/topology/Old Dominion University/FACILITY.yaml +++ b/topology/Old Dominion University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10188 +InstitutionID: https://osg-htc.org/iid/247wddvv4k1u diff --git a/topology/Oral Roberts University/FACILITY.yaml b/topology/Oral Roberts University/FACILITY.yaml index ca6335687..930d6f6b8 100644 --- a/topology/Oral Roberts University/FACILITY.yaml +++ b/topology/Oral Roberts University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10212 +InstitutionID: https://osg-htc.org/iid/oxp7nz0hpwhr diff --git a/topology/PNNL/FACILITY.yaml b/topology/PNNL/FACILITY.yaml index 830514402..77abc8f76 100644 --- a/topology/PNNL/FACILITY.yaml +++ b/topology/PNNL/FACILITY.yaml @@ -1 +1,2 @@ ID: 10126 +InstitutionID: https://osg-htc.org/iid/lh31n2nsjoyt diff --git a/topology/Penn State University/FACILITY.yaml b/topology/Penn State University/FACILITY.yaml index 12727c3fd..efd243890 100644 --- a/topology/Penn State University/FACILITY.yaml +++ b/topology/Penn State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10028 +InstitutionID: https://osg-htc.org/iid/f1tlj6c19ppg diff --git a/topology/Pittsburgh Supercomputing Center/FACILITY.yaml b/topology/Pittsburgh Supercomputing Center/FACILITY.yaml index e4b2ffdb0..323f061c9 100644 --- a/topology/Pittsburgh Supercomputing Center/FACILITY.yaml +++ b/topology/Pittsburgh Supercomputing Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10168 +InstitutionID: https://osg-htc.org/iid/2n99cshvz9ci diff --git a/topology/Pontificia Universidad Javeriana/FACILITY.yaml b/topology/Pontificia Universidad Javeriana/FACILITY.yaml index 369100af8..e115c86e2 100644 --- a/topology/Pontificia Universidad Javeriana/FACILITY.yaml +++ b/topology/Pontificia Universidad Javeriana/FACILITY.yaml @@ -1 +1,2 @@ ID: 10105 +InstitutionID: ~ diff --git a/topology/Portland State University/FACILITY.yaml b/topology/Portland State University/FACILITY.yaml index d1d73f855..148ef977d 100644 --- a/topology/Portland State University/FACILITY.yaml +++ b/topology/Portland State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10200 +InstitutionID: https://osg-htc.org/iid/26b8vvvqixd6 diff --git a/topology/Princeton University/FACILITY.yaml b/topology/Princeton University/FACILITY.yaml index 8424c1a97..d3c449768 100644 --- a/topology/Princeton University/FACILITY.yaml +++ b/topology/Princeton University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10085 +InstitutionID: https://osg-htc.org/iid/ao845i5pul3m diff --git a/topology/Purdue University/FACILITY.yaml b/topology/Purdue University/FACILITY.yaml index b286b5da1..e23960f08 100644 --- a/topology/Purdue University/FACILITY.yaml +++ b/topology/Purdue University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10031 +InstitutionID: https://osg-htc.org/iid/y2m2tk3a8pp6 diff --git a/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml b/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml index 5ba31f0a8..45f270913 100644 --- a/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml +++ b/topology/Purdue University/Purdue CMS/Purdue_downtime.yaml @@ -2142,3 +2142,15 @@ Services: - EOS # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1873501847 + Description: Cluster maintenance + Severity: Outage + StartTime: Jul 31, 2024 12:00 +0000 + EndTime: Jul 31, 2024 21:00 +0000 + CreatedTime: Jul 30, 2024 14:36 +0000 + ResourceName: Purdue-Hammer + Services: + - CE +# --------------------------------------------------------- + diff --git a/topology/Rhodes College/FACILITY.yaml b/topology/Rhodes College/FACILITY.yaml index 0eea915b4..d37ca35e6 100644 --- a/topology/Rhodes College/FACILITY.yaml +++ b/topology/Rhodes College/FACILITY.yaml @@ -1 +1,2 @@ ID: 10203 +InstitutionID: https://osg-htc.org/iid/ockutx5ytnvo diff --git a/topology/Rice University/FACILITY.yaml b/topology/Rice University/FACILITY.yaml index c814f3aae..40daa418f 100644 --- a/topology/Rice University/FACILITY.yaml +++ b/topology/Rice University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10068 +InstitutionID: https://osg-htc.org/iid/mqyva49x2em4 diff --git a/topology/Riga Technical University/FACILITY.yaml b/topology/Riga Technical University/FACILITY.yaml new file mode 100644 index 000000000..4753e958f --- /dev/null +++ b/topology/Riga Technical University/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/uf5d30nx2y0c diff --git a/topology/Rochester Institute of Technology/FACILITY.yaml b/topology/Rochester Institute of Technology/FACILITY.yaml index ba3acc9dc..268d17658 100644 --- a/topology/Rochester Institute of Technology/FACILITY.yaml +++ b/topology/Rochester Institute of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10062 +InstitutionID: https://osg-htc.org/iid/khe0lt7x352p diff --git a/topology/Rowan University/FACILITY.yaml b/topology/Rowan University/FACILITY.yaml new file mode 100644 index 000000000..242cb6a9e --- /dev/null +++ b/topology/Rowan University/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/oya34s2ysser diff --git a/topology/Rutgers University/FACILITY.yaml b/topology/Rutgers University/FACILITY.yaml index 37eb50245..69b8d17a4 100644 --- a/topology/Rutgers University/FACILITY.yaml +++ b/topology/Rutgers University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10072 +InstitutionID: https://osg-htc.org/iid/qrem5k97ikiv diff --git a/topology/SUNY Albany/FACILITY.yaml b/topology/SUNY Albany/FACILITY.yaml index a35854f80..5a1d8d2ef 100644 --- a/topology/SUNY Albany/FACILITY.yaml +++ b/topology/SUNY Albany/FACILITY.yaml @@ -1 +1,2 @@ ID: 10071 +InstitutionID: https://osg-htc.org/iid/m9adt6gcsr8c diff --git a/topology/SUNY Geneseo/FACILITY.yaml b/topology/SUNY Geneseo/FACILITY.yaml index 6cf3e20d6..80f7ca320 100644 --- a/topology/SUNY Geneseo/FACILITY.yaml +++ b/topology/SUNY Geneseo/FACILITY.yaml @@ -1 +1,2 @@ ID: 10070 +InstitutionID: https://osg-htc.org/iid/c50lqqtwgcys diff --git a/topology/SingAREN/FACILITY.yaml b/topology/SingAREN/FACILITY.yaml index 6c01ee922..0f8455b8f 100644 --- a/topology/SingAREN/FACILITY.yaml +++ b/topology/SingAREN/FACILITY.yaml @@ -1 +1,2 @@ ID: 10210 +InstitutionID: https://osg-htc.org/iid/y58b7k3717o6 diff --git a/topology/Southern Illinois University Edwardsville/FACILITY.yaml b/topology/Southern Illinois University Edwardsville/FACILITY.yaml index cd69dd5eb..c7950da9d 100644 --- a/topology/Southern Illinois University Edwardsville/FACILITY.yaml +++ b/topology/Southern Illinois University Edwardsville/FACILITY.yaml @@ -1 +1,2 @@ ID: 10178 +InstitutionID: https://osg-htc.org/iid/s19zlu9q6u7l diff --git a/topology/Southern Methodist University/FACILITY.yaml b/topology/Southern Methodist University/FACILITY.yaml index 4a43da9ed..3809ad7ad 100644 --- a/topology/Southern Methodist University/FACILITY.yaml +++ b/topology/Southern Methodist University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10032 +InstitutionID: https://osg-htc.org/iid/9g1dmrei1pes diff --git a/topology/Stanford University/FACILITY.yaml b/topology/Stanford University/FACILITY.yaml index 225699e47..e6643e260 100644 --- a/topology/Stanford University/FACILITY.yaml +++ b/topology/Stanford University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10030 +InstitutionID: https://osg-htc.org/iid/keucrg5vtwtm diff --git a/topology/Stanford University/STANFORD_HOSTED/STANFORD_HOSTED_BOSCO_CE.yaml b/topology/Stanford University/STANFORD_HOSTED/STANFORD_HOSTED_BOSCO_CE.yaml index ce3da2ac1..456ebd88e 100644 --- a/topology/Stanford University/STANFORD_HOSTED/STANFORD_HOSTED_BOSCO_CE.yaml +++ b/topology/Stanford University/STANFORD_HOSTED/STANFORD_HOSTED_BOSCO_CE.yaml @@ -7,11 +7,11 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Description: BOSCO CE gatekeeper for the proclus cluster at Stanford FQDN: hosted-ce02.grid.uchicago.edu diff --git a/topology/Stony Brook University/FACILITY.yaml b/topology/Stony Brook University/FACILITY.yaml index 0488e8e54..64b78a874 100644 --- a/topology/Stony Brook University/FACILITY.yaml +++ b/topology/Stony Brook University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10092 +InstitutionID: https://osg-htc.org/iid/qqd2s2b6m7eh diff --git a/topology/Susquehanna University/FACILITY.yaml b/topology/Susquehanna University/FACILITY.yaml index 84f5fbb9f..514b44a9c 100644 --- a/topology/Susquehanna University/FACILITY.yaml +++ b/topology/Susquehanna University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10104 +InstitutionID: https://osg-htc.org/iid/dr380tqijdnd diff --git a/topology/Swinburne University of Technology/FACILITY.yaml b/topology/Swinburne University of Technology/FACILITY.yaml index 039d10e01..99cb2812d 100644 --- a/topology/Swinburne University of Technology/FACILITY.yaml +++ b/topology/Swinburne University of Technology/FACILITY.yaml @@ -1 +1,2 @@ ID: 10182 +InstitutionID: https://osg-htc.org/iid/k15e8iippjlo diff --git a/topology/Syracuse University/FACILITY.yaml b/topology/Syracuse University/FACILITY.yaml index 2be65daca..4f53c5a02 100644 --- a/topology/Syracuse University/FACILITY.yaml +++ b/topology/Syracuse University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10137 +InstitutionID: https://osg-htc.org/iid/mzpz26kp0f3p diff --git a/topology/Syracuse University/SU ITS/SU-ITS.yaml b/topology/Syracuse University/SU ITS/SU-ITS.yaml index d98eec357..873ecedee 100644 --- a/topology/Syracuse University/SU ITS/SU-ITS.yaml +++ b/topology/Syracuse University/SU ITS/SU-ITS.yaml @@ -161,14 +161,14 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: ID: f2f9da2faec208f2e3bfa42d5f9b4c20b1a7c525 Name: Richard Ameele Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: ID: f2f9da2faec208f2e3bfa42d5f9b4c20b1a7c525 diff --git a/topology/Tata Institute of Fundamental Research/FACILITY.yaml b/topology/Tata Institute of Fundamental Research/FACILITY.yaml index 50a86c931..d6210d454 100644 --- a/topology/Tata Institute of Fundamental Research/FACILITY.yaml +++ b/topology/Tata Institute of Fundamental Research/FACILITY.yaml @@ -1,2 +1,3 @@ --- ID: 10209 +InstitutionID: https://osg-htc.org/iid/7cvhtkt3j3un diff --git a/topology/Tennessee Technological University/FACILITY.yaml b/topology/Tennessee Technological University/FACILITY.yaml new file mode 100644 index 000000000..94dbbffb8 --- /dev/null +++ b/topology/Tennessee Technological University/FACILITY.yaml @@ -0,0 +1,2 @@ +ID: 10219 +InstitutionID: https://osg-htc.org/iid/ttqvi8xg5x2g diff --git a/topology/Tennessee Technological University/Tennessee Tech ITS/SITE.yaml b/topology/Tennessee Technological University/Tennessee Tech ITS/SITE.yaml new file mode 100644 index 000000000..bab53c70c --- /dev/null +++ b/topology/Tennessee Technological University/Tennessee Tech ITS/SITE.yaml @@ -0,0 +1,7 @@ +AddressLine1: 1 William L Jones Dr +Country: United States +Description: Tennessee Tech +Latitude: 36.174627 +Longitude: -85.504012 +State: TN +Zipcode: '38505' diff --git a/topology/Tennessee Technological University/Tennessee Tech ITS/TNTech-Warp1.yaml b/topology/Tennessee Technological University/Tennessee Tech ITS/TNTech-Warp1.yaml new file mode 100644 index 000000000..0fe1e636a --- /dev/null +++ b/topology/Tennessee Technological University/Tennessee Tech ITS/TNTech-Warp1.yaml @@ -0,0 +1,25 @@ +Production: true +SupportCenter: Self Supported + +GroupDescription: Tennessee Tech + +Resources: + TNTech-Warp1-CE1: + Active: true + Description: Hosted CE serving TNTech + ContactLists: + Administrative Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Security Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + + FQDN: tntech-warp1-ce1.svc.opensciencegrid.org + Services: + CE: + Description: Hosted CE + Tags: + - CC* diff --git a/topology/Texas A&M University/FACILITY.yaml b/topology/Texas A&M University/FACILITY.yaml index f920d191b..1a4e0d879 100644 --- a/topology/Texas A&M University/FACILITY.yaml +++ b/topology/Texas A&M University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10086 +InstitutionID: https://osg-htc.org/iid/8wqbbz4i2cma diff --git a/topology/Texas Advanced Computing Center/FACILITY.yaml b/topology/Texas Advanced Computing Center/FACILITY.yaml index 2106afb47..eaa1e3da8 100644 --- a/topology/Texas Advanced Computing Center/FACILITY.yaml +++ b/topology/Texas Advanced Computing Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10167 +InstitutionID: https://osg-htc.org/iid/q0heyplofwlr diff --git a/topology/Texas Tech University/FACILITY.yaml b/topology/Texas Tech University/FACILITY.yaml index d21d10901..5107b2bd2 100644 --- a/topology/Texas Tech University/FACILITY.yaml +++ b/topology/Texas Tech University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10037 +InstitutionID: https://osg-htc.org/iid/dm49jc7i86zx diff --git a/topology/The College of New Jersey/FACILITY.yaml b/topology/The College of New Jersey/FACILITY.yaml index 2dab186f0..4fb174103 100644 --- a/topology/The College of New Jersey/FACILITY.yaml +++ b/topology/The College of New Jersey/FACILITY.yaml @@ -1 +1,2 @@ ID: 10174 +InstitutionID: https://osg-htc.org/iid/q901ybs1a9nf diff --git a/topology/The Ohio State University/FACILITY.yaml b/topology/The Ohio State University/FACILITY.yaml index d90974408..3d280e591 100644 --- a/topology/The Ohio State University/FACILITY.yaml +++ b/topology/The Ohio State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10073 +InstitutionID: https://osg-htc.org/iid/984ms2rzh7do diff --git a/topology/The University of Tokyo/FACILITY.yaml b/topology/The University of Tokyo/FACILITY.yaml new file mode 100644 index 000000000..dda8d699c --- /dev/null +++ b/topology/The University of Tokyo/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/uee38gjjxtvj diff --git a/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF_downtime.yaml b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF_downtime.yaml new file mode 100644 index 000000000..21acd43d5 --- /dev/null +++ b/topology/The University of Tokyo/Kashiwa/KAGRA-OSDF_downtime.yaml @@ -0,0 +1,11 @@ +- Class: UNSCHEDULED + ID: 1927475109 + Description: HW issue + Severity: Outage + StartTime: Sep 28, 2024 19:30 +0000 + EndTime: Oct 05, 2024 19:30 +0000 + CreatedTime: Oct 01, 2024 01:51 +0000 + ResourceName: KAGRA_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/Thomas Jefferson National Accelerator Facility/FACILITY.yaml b/topology/Thomas Jefferson National Accelerator Facility/FACILITY.yaml index 82fa8d727..804ae63eb 100644 --- a/topology/Thomas Jefferson National Accelerator Facility/FACILITY.yaml +++ b/topology/Thomas Jefferson National Accelerator Facility/FACILITY.yaml @@ -1 +1,2 @@ ID: 10156 +InstitutionID: https://osg-htc.org/iid/hlz41oydapzn diff --git a/topology/Thomas Jefferson National Accelerator Facility/JLAB/JLab-Farm.yaml b/topology/Thomas Jefferson National Accelerator Facility/JLAB/JLab-Farm.yaml index fdcefd5d7..8a00774e2 100644 --- a/topology/Thomas Jefferson National Accelerator Facility/JLAB/JLab-Farm.yaml +++ b/topology/Thomas Jefferson National Accelerator Facility/JLAB/JLab-Farm.yaml @@ -2,34 +2,6 @@ GroupDescription: Grid services for the JLab farm GroupID: 465 Production: true Resources: - scosg16: - Active: true - ContactLists: - Administrative Contact: - Primary: - ID: 818acb7ebcd1865a17551799f0cfeb5256e0db20 - Name: Kurt Strosahl - Secondary: - ID: ea9db644eb6f8632cf87fd2cbac8a6e393c21f71 - Name: Wesley Moore - Security Contact: - Primary: - ID: 818acb7ebcd1865a17551799f0cfeb5256e0db20 - Name: Kurt Strosahl - Description: Submit node for JLab - FQDN: scosg16.jlab.org - DN: /CN=scosg16.jlab.org - ID: 878 - Services: - Submit Node: - Description: OSG Submission Node - Details: - hidden: false - VOOwnership: - JLab: 100 - Tags: - - OSPool - scosg20: Active: true ContactLists: @@ -169,6 +141,33 @@ Resources: Tags: - OSPool + JLAB-osg-solid: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: 818acb7ebcd1865a17551799f0cfeb5256e0db20 + Name: Kurt Strosahl + Secondary: + ID: ea9db644eb6f8632cf87fd2cbac8a6e393c21f71 + Name: Wesley Moore + Security Contact: + Primary: + ID: 818acb7ebcd1865a17551799f0cfeb5256e0db20 + Name: Kurt Strosahl + Description: Submit node for JLab + FQDN: osg-solid.jlab.org + DN: /DC=org/DC=incommon/C=US/ST=Virginia/L=Newport News/O=Thomas Jefferson National Accelerator Facility/OU=SciComp/CN=osg-solid.jlab.org + Services: + Submit Node: + Description: OSG Submission Node + Details: + hidden: false + VOOwnership: + JLab: 100 + Tags: + - OSPool + JLab-StashCache-Origin: Active: true ContactLists: @@ -215,6 +214,29 @@ Resources: VOOwnership: JLab: 100 + JLAB-dtn2304: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: 818acb7ebcd1865a17551799f0cfeb5256e0db20 + Name: Kurt Strosahl + Secondary: + ID: ea9db644eb6f8632cf87fd2cbac8a6e393c21f71 + Name: Wesley Moore + Security Contact: + Primary: + ID: 818acb7ebcd1865a17551799f0cfeb5256e0db20 + Name: Kurt Strosahl + FQDN: dtn2304.jlab.org + FQDNAliases: + - dtn2304.jlab.org + Services: + Pelican origin: + Description: JLab Pelican origin + VOOwnership: + JLab: 100 + JLab-FARM-CE: Active: true ContactLists: diff --git a/topology/Tufts University/FACILITY.yaml b/topology/Tufts University/FACILITY.yaml index c54c9389c..5233b447a 100644 --- a/topology/Tufts University/FACILITY.yaml +++ b/topology/Tufts University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10084 +InstitutionID: https://osg-htc.org/iid/vtcuoa0mgv9x diff --git a/topology/Tufts University/Tufts - Cluster/Tufts-Cluster.yaml b/topology/Tufts University/Tufts - Cluster/Tufts-Cluster.yaml index 8b8d1dc83..a792b9bb2 100644 --- a/topology/Tufts University/Tufts - Cluster/Tufts-Cluster.yaml +++ b/topology/Tufts University/Tufts - Cluster/Tufts-Cluster.yaml @@ -19,7 +19,7 @@ Resources: Tufts-Cluster: # Active is true if the resource is accepting requests, and false otherwise. # When first registering a resource, set this to false. Set it to true when it's ready for production. - Active: true + Active: false # Description is a long description of the resource; may be multiple lines Description: This is a Hosted CE for Tufts University. # If you have an up-to-date local git clone, fill ID with the output from `bin/next_resource_id` diff --git a/topology/Tufts University/Tufts - Cluster/Tufts-Cluster_downtime.yaml b/topology/Tufts University/Tufts - Cluster/Tufts-Cluster_downtime.yaml index fd40991c5..050c2ec2f 100644 --- a/topology/Tufts University/Tufts - Cluster/Tufts-Cluster_downtime.yaml +++ b/topology/Tufts University/Tufts - Cluster/Tufts-Cluster_downtime.yaml @@ -3,7 +3,7 @@ Description: Indefinite downtime until site is ready to update IP range for gitops Severity: Outage StartTime: Dec 15, 2023 04:00 +0000 - EndTime: Jan 01, 2025 17:00 +0000 + EndTime: Jan 01, 2024 17:00 +0000 CreatedTime: Dec 15, 2023 04:06 +0000 ResourceName: Tufts-Cluster Services: diff --git a/topology/UC Irvine/FACILITY.yaml b/topology/UC Irvine/FACILITY.yaml index f6f59894a..41df5e69e 100644 --- a/topology/UC Irvine/FACILITY.yaml +++ b/topology/UC Irvine/FACILITY.yaml @@ -1 +1,2 @@ ID: 10093 +InstitutionID: https://osg-htc.org/iid/ss614ab1u5qd diff --git a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml index 718212549..11f3458bb 100644 --- a/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml +++ b/topology/UC Irvine/UCIT3/UCI-GPATLAS.yaml @@ -16,7 +16,7 @@ Resources: Name: Diego Davila Site Contact: Primary: - ID: dbcd20edf55fb43c78b2e547a393898b42643d29 + ID: OSG1000711 Name: Nathan Crawford Description: SLATE deployed Hosted CE for the GPAtlas Cluster FQDN: hosted-ce40.opensciencegrid.org @@ -39,7 +39,7 @@ Resources: Name: Diego Davila Site Contact: Primary: - ID: dbcd20edf55fb43c78b2e547a393898b42643d29 + ID: OSG1000711 Name: Nathan Crawford Description: SLATE deployed Hosted CE for the GPAtlas Cluster FQDN: uci-gpatlas-ce1.svc.opensciencegrid.org diff --git a/topology/UC Irvine/UCIT3/University of California Irvine.yaml b/topology/UC Irvine/UCIT3/University of California Irvine.yaml index 469664b10..87c00ca7e 100644 --- a/topology/UC Irvine/UCIT3/University of California Irvine.yaml +++ b/topology/UC Irvine/UCIT3/University of California Irvine.yaml @@ -1,7 +1,9 @@ -GroupDescription: UCI ATLAS Tier-3 -GroupID: 287 Production: true +SupportCenter: USATLAS +GroupDescription: UCI ATLAS Tier-3 + Resources: +#Archived Resources (inactive) UCI_ATLAS_GRIDFTP: ContactLists: Security Contact: @@ -14,9 +16,9 @@ Resources: Name: Anyes Taffard Local Operational Contact: Primary: - ID: dbcd20edf55fb43c78b2e547a393898b42643d29 + ID: OSG1000711 Name: Nathan Crawford - Active: true + Active: false Description: UCI gridftp and LHC @ UC glidein scheduler submit host. FQDN: gpatlas2.ps.uci.edu DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, Irvine/CN=gpatlas2.ps.uci.edu @@ -34,7 +36,7 @@ Resources: ATLAS: 100 UCLHC IRVINE SUBMIT HOST: - Active: true + Active: false ContactLists: Administrative Contact: Primary: @@ -52,7 +54,7 @@ Resources: Name: Jeffrey Michael Dost Local Operational Contact: Primary: - ID: dbcd20edf55fb43c78b2e547a393898b42643d29 + ID: OSG1000711 Name: Nathan Crawford Description: LHC @ UC glidein scheduler submit host. FQDN: uclhc-1.ps.uci.edu @@ -67,9 +69,51 @@ Resources: - OSPool VOOwnership: ATLAS: 100 - + +#Active Resources + UCIT3-AP1: + Active: true + Description: UCI ATLAS Access Point 1. + ContactLists: + Administrative Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Secondary: + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Name: Jeffrey Michael Dost + Tertiary: + ID: OSG1000711 + Name: Nathan Crawford + Security Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Secondary: + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Name: Jeffrey Michael Dost + Tertiary: + ID: OSG1000711 + Name: Nathan Crawford + Local Operational Contact: + Primary: + ID: OSG1000711 + Name: Nathan Crawford + FQDN: uclhc-1.ps.uci.edu + DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, Irvine/CN=uclhc-1.ps.uci.edu + Services: + Submit Node: + Description: OS Pool access point + Details: + hidden: false + Tags: + - OSPool + VOOwnership: + ATLAS: 100 + UCIT3-AP2: Active: true + Description: UCI ATLAS Access Point 2. ContactLists: Administrative Contact: Primary: @@ -78,6 +122,9 @@ Resources: Secondary: ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba Name: Jeffrey Michael Dost + Tertiary: + ID: OSG1000711 + Name: Nathan Crawford Security Contact: Primary: ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f @@ -87,12 +134,10 @@ Resources: Name: Jeffrey Michael Dost Local Operational Contact: Primary: - ID: dbcd20edf55fb43c78b2e547a393898b42643d29 + ID: OSG1000711 Name: Nathan Crawford - Description: LHC @ UC glidein scheduler submit host. FQDN: uclhc-2.ps.uci.edu DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, Irvine/CN=uclhc-2.ps.uci.edu - ID: 1209 Services: Submit Node: Description: OS Pool access point @@ -100,4 +145,73 @@ Resources: - OSPool VOOwnership: ATLAS: 100 -SupportCenter: USATLAS + + UCIT3-AP3: + Active: true + Description: UCI ATLAS Access Point 3. + ContactLists: + Administrative Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Secondary: + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Name: Jeffrey Michael Dost + Tertiary: + ID: OSG1000711 + Name: Nathan Crawford + Security Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Secondary: + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Name: Jeffrey Michael Dost + Local Operational Contact: + Primary: + ID: OSG1000711 + Name: Nathan Crawford + FQDN: gpatlas1.ps.uci.edu + DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, Irvine/CN=gpatlas1.ps.uci.edu + Services: + Submit Node: + Description: OS Pool access point + Tags: + - OSPool + VOOwnership: + ATLAS: 100 + + UCIT3-AP4: + Active: true + Description: UCI ATLAS Access Point 4. + ContactLists: + Administrative Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Secondary: + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Name: Jeffrey Michael Dost + Tertiary: + ID: OSG1000711 + Name: Nathan Crawford + Security Contact: + Primary: + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Name: Diego Davila + Secondary: + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Name: Jeffrey Michael Dost + Local Operational Contact: + Primary: + ID: OSG1000711 + Name: Nathan Crawford + FQDN: gpatlas2.ps.uci.edu + DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, Irvine/CN=gpatlas2.ps.uci.edu + Services: + Submit Node: + Description: OS Pool access point + Tags: + - OSPool + VOOwnership: + ATLAS: 100 diff --git a/topology/UC Santa Barbara/FACILITY.yaml b/topology/UC Santa Barbara/FACILITY.yaml index 38da3ca8f..b55d80f42 100644 --- a/topology/UC Santa Barbara/FACILITY.yaml +++ b/topology/UC Santa Barbara/FACILITY.yaml @@ -1 +1,2 @@ ID: 10102 +InstitutionID: https://osg-htc.org/iid/rglo22hiw2ge diff --git a/topology/UCSB/FACILITY.yaml b/topology/UCSB/FACILITY.yaml index 67603dc07..cb7ffdfda 100644 --- a/topology/UCSB/FACILITY.yaml +++ b/topology/UCSB/FACILITY.yaml @@ -1 +1,2 @@ ID: 10063 +InstitutionID: https://osg-htc.org/iid/rglo22hiw2ge diff --git a/topology/UMSNH/FACILITY.yaml b/topology/UMSNH/FACILITY.yaml index 8e80155b1..6681f0d70 100644 --- a/topology/UMSNH/FACILITY.yaml +++ b/topology/UMSNH/FACILITY.yaml @@ -1 +1,2 @@ ID: 10130 +InstitutionID: https://osg-htc.org/iid/fvxsv7lqjtj3 diff --git a/topology/Universidad Autonoma de Manizales/FACILITY.yaml b/topology/Universidad Autonoma de Manizales/FACILITY.yaml index 34ffc8bd7..77e8146b2 100644 --- a/topology/Universidad Autonoma de Manizales/FACILITY.yaml +++ b/topology/Universidad Autonoma de Manizales/FACILITY.yaml @@ -1 +1,2 @@ ID: 10002 +InstitutionID: ~ diff --git a/topology/Universidad Autonoma del Caribe/FACILITY.yaml b/topology/Universidad Autonoma del Caribe/FACILITY.yaml index 871883d9f..990f5f698 100644 --- a/topology/Universidad Autonoma del Caribe/FACILITY.yaml +++ b/topology/Universidad Autonoma del Caribe/FACILITY.yaml @@ -1 +1,2 @@ ID: 10118 +InstitutionID: ~ diff --git a/topology/Universidad Catolica de Colombia/FACILITY.yaml b/topology/Universidad Catolica de Colombia/FACILITY.yaml index 847d4027d..8f1337b81 100644 --- a/topology/Universidad Catolica de Colombia/FACILITY.yaml +++ b/topology/Universidad Catolica de Colombia/FACILITY.yaml @@ -1 +1,2 @@ ID: 10109 +InstitutionID: ~ diff --git a/topology/Universidad Industrial de Santander/FACILITY.yaml b/topology/Universidad Industrial de Santander/FACILITY.yaml index 093274e40..66ca6fb1f 100644 --- a/topology/Universidad Industrial de Santander/FACILITY.yaml +++ b/topology/Universidad Industrial de Santander/FACILITY.yaml @@ -1 +1,2 @@ ID: 10120 +InstitutionID: ~ diff --git a/topology/Universidad Pontificia Bolivariana/FACILITY.yaml b/topology/Universidad Pontificia Bolivariana/FACILITY.yaml index ccf9f5d80..a6e0b452c 100644 --- a/topology/Universidad Pontificia Bolivariana/FACILITY.yaml +++ b/topology/Universidad Pontificia Bolivariana/FACILITY.yaml @@ -1 +1,2 @@ ID: 10113 +InstitutionID: ~ diff --git a/topology/Universidad Tecnologica de Bolivar/FACILITY.yaml b/topology/Universidad Tecnologica de Bolivar/FACILITY.yaml index 589291146..a1c8c3014 100644 --- a/topology/Universidad Tecnologica de Bolivar/FACILITY.yaml +++ b/topology/Universidad Tecnologica de Bolivar/FACILITY.yaml @@ -1 +1,2 @@ ID: 10112 +InstitutionID: ~ diff --git a/topology/Universidad de Caldas/FACILITY.yaml b/topology/Universidad de Caldas/FACILITY.yaml index 77c639475..97160c0fe 100644 --- a/topology/Universidad de Caldas/FACILITY.yaml +++ b/topology/Universidad de Caldas/FACILITY.yaml @@ -1 +1,2 @@ ID: 10110 +InstitutionID: ~ diff --git a/topology/Universidad de Medellin/FACILITY.yaml b/topology/Universidad de Medellin/FACILITY.yaml index e294faceb..d8a21bb31 100644 --- a/topology/Universidad de Medellin/FACILITY.yaml +++ b/topology/Universidad de Medellin/FACILITY.yaml @@ -1 +1,2 @@ ID: 10115 +InstitutionID: ~ diff --git a/topology/Universidad de los Andes/FACILITY.yaml b/topology/Universidad de los Andes/FACILITY.yaml index 64327c59e..61aed2996 100644 --- a/topology/Universidad de los Andes/FACILITY.yaml +++ b/topology/Universidad de los Andes/FACILITY.yaml @@ -1 +1,2 @@ ID: 10111 +InstitutionID: ~ diff --git a/topology/Universidad del Valle/FACILITY.yaml b/topology/Universidad del Valle/FACILITY.yaml index 8748f8071..a64337bcb 100644 --- a/topology/Universidad del Valle/FACILITY.yaml +++ b/topology/Universidad del Valle/FACILITY.yaml @@ -1 +1,2 @@ ID: 10119 +InstitutionID: ~ diff --git a/topology/Universidade Estadual Paulista/FACILITY.yaml b/topology/Universidade Estadual Paulista/FACILITY.yaml index 6005373ff..87fad212e 100644 --- a/topology/Universidade Estadual Paulista/FACILITY.yaml +++ b/topology/Universidade Estadual Paulista/FACILITY.yaml @@ -1 +1,2 @@ ID: 10080 +InstitutionID: https://osg-htc.org/iid/pexc47w1nwwe diff --git a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml index d68162d40..f4a7564a2 100644 --- a/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml +++ b/topology/Universidade Estadual Paulista/SPRACE/SPRACE_downtime.yaml @@ -3423,3 +3423,630 @@ Services: - CE # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976534 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976535 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976536 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976537 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976538 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976539 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845976540 + Description: network maintenance + Severity: Intermittent Outage + StartTime: Jul 01, 2024 17:00 +0000 + EndTime: Jul 01, 2024 21:00 +0000 + CreatedTime: Jun 28, 2024 18:00 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963714 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963715 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963716 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963717 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963718 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963719 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1909963720 + Description: network outage + Severity: Outage + StartTime: Sep 10, 2024 19:25 +0000 + EndTime: Sep 10, 2024 23:00 +0000 + CreatedTime: Sep 10, 2024 19:26 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1910006897 + Description: HW issue + Severity: Outage + StartTime: Sep 09, 2024 00:00 +0000 + EndTime: Sep 16, 2024 11:30 +0000 + CreatedTime: Sep 10, 2024 20:38 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780378 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780379 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780380 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780381 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780382 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780383 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1912780384 + Description: network outage + Severity: Outage + StartTime: Sep 14, 2024 01:40 +0000 + EndTime: Sep 15, 2024 01:40 +0000 + CreatedTime: Sep 14, 2024 01:40 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608023 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608024 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608025 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608026 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608027 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608028 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913608029 + Description: network outage + Severity: Outage + StartTime: Sep 15, 2024 00:39 +0000 + EndTime: Sep 16, 2024 15:00 +0000 + CreatedTime: Sep 15, 2024 00:40 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992219 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992220 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992221 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992222 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992223 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992224 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1914992225 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 15:06 +0000 + EndTime: Sep 16, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 15:07 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209077 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209078 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209079 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209080 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209081 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209082 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915209083 + Description: network outage + Severity: Outage + StartTime: Sep 16, 2024 21:00 +0000 + EndTime: Sep 17, 2024 21:00 +0000 + CreatedTime: Sep 16, 2024 21:08 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949340 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949341 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949342 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949343 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949344 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949345 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1915949346 + Description: network outage + Severity: Outage + StartTime: Sep 17, 2024 21:00 +0000 + EndTime: Sep 18, 2024 21:00 +0000 + CreatedTime: Sep 17, 2024 17:42 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930720 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: BR-Sprace BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930721 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: BR-Sprace LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930722 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: SPRACE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930723 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: SPRACE-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930724 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: SPRACE_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930725 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: T2_BR_SPRACE-squid1 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1916930726 + Description: network outage + Severity: Outage + StartTime: Sep 18, 2024 21:00 +0000 + EndTime: Sep 19, 2024 15:00 +0000 + CreatedTime: Sep 18, 2024 20:57 +0000 + ResourceName: T2_BR_SPRACE-squid2 + Services: + - Squid +# --------------------------------------------------------- diff --git a/topology/Universidade de Sao Paulo/FACILITY.yaml b/topology/Universidade de Sao Paulo/FACILITY.yaml index e123618f9..bd01ef264 100644 --- a/topology/Universidade de Sao Paulo/FACILITY.yaml +++ b/topology/Universidade de Sao Paulo/FACILITY.yaml @@ -1 +1,2 @@ ID: 10033 +InstitutionID: https://osg-htc.org/iid/sg0dasyc8rbp diff --git "a/topology/Universidade de S\303\243o Paulo - Laborat\303\263rio de Computa\303\247\303\243o Cient\303\255fica Avan\303\247ada/FACILITY.yaml" "b/topology/Universidade de S\303\243o Paulo - Laborat\303\263rio de Computa\303\247\303\243o Cient\303\255fica Avan\303\247ada/FACILITY.yaml" index c1fe96b26..d67476533 100644 --- "a/topology/Universidade de S\303\243o Paulo - Laborat\303\263rio de Computa\303\247\303\243o Cient\303\255fica Avan\303\247ada/FACILITY.yaml" +++ "b/topology/Universidade de S\303\243o Paulo - Laborat\303\263rio de Computa\303\247\303\243o Cient\303\255fica Avan\303\247ada/FACILITY.yaml" @@ -1 +1,2 @@ ID: 10099 +InstitutionID: https://osg-htc.org/iid/sg0dasyc8rbp diff --git a/topology/Universidade do Estado do Rio de Janeiro/FACILITY.yaml b/topology/Universidade do Estado do Rio de Janeiro/FACILITY.yaml index 9416763b5..f73343ec7 100644 --- a/topology/Universidade do Estado do Rio de Janeiro/FACILITY.yaml +++ b/topology/Universidade do Estado do Rio de Janeiro/FACILITY.yaml @@ -1 +1,2 @@ ID: 10048 +InstitutionID: https://osg-htc.org/iid/b64ov45k2v5e diff --git a/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml b/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml index 814495128..46e5b1e85 100644 --- a/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml +++ b/topology/Universidade do Estado do Rio de Janeiro/T2_BR_UERJ/UERJ_downtime.yaml @@ -1456,4 +1456,71 @@ Services: - Squid # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1844303261 + Description: We need to make adjustments to one of our CEs + Severity: Outage + StartTime: Jun 26, 2024 19:00 +0000 + EndTime: Jun 27, 2024 15:00 +0000 + CreatedTime: Jun 26, 2024 19:32 +0000 + ResourceName: UERJ_CE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913144316 + Description: We're having connectiong problems and need to investigate the reasons. + Severity: Outage + StartTime: Sep 13, 2024 12:00 +0000 + EndTime: Sep 20, 2024 12:00 +0000 + CreatedTime: Sep 14, 2024 11:47 +0000 + ResourceName: UERJ_CE + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913144747 + Description: We're having connectiong problems and need to investigate the reasons. + Severity: Outage + StartTime: Sep 13, 2024 12:00 +0000 + EndTime: Sep 20, 2024 12:00 +0000 + CreatedTime: Sep 14, 2024 11:47 +0000 + ResourceName: UERJ_CE_2 + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913145039 + Description: We're having connectiong problems and need to investigate the reasons. + Severity: Outage + StartTime: Sep 13, 2024 12:00 +0000 + EndTime: Sep 20, 2024 12:00 +0000 + CreatedTime: Sep 14, 2024 11:48 +0000 + ResourceName: UERJ_SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913145250 + Description: We're having connectiong problems and need to investigate the reasons. + Severity: Outage + StartTime: Sep 13, 2024 12:00 +0000 + EndTime: Sep 20, 2024 12:00 +0000 + CreatedTime: Sep 14, 2024 11:48 +0000 + ResourceName: UERJ_SQUID + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1913145453 + Description: We're having connectiong problems and need to investigate the reasons. + Severity: Outage + StartTime: Sep 13, 2024 12:00 +0000 + EndTime: Sep 20, 2024 12:00 +0000 + CreatedTime: Sep 14, 2024 11:49 +0000 + ResourceName: UERJ_SQUID_2 + Services: + - Squid +# --------------------------------------------------------- + diff --git a/topology/Universite catholique de Louvain/FACILITY.yaml b/topology/Universite catholique de Louvain/FACILITY.yaml index d21bdb61d..8a3029d0b 100644 --- a/topology/Universite catholique de Louvain/FACILITY.yaml +++ b/topology/Universite catholique de Louvain/FACILITY.yaml @@ -1 +1,2 @@ ID: 10181 +InstitutionID: https://osg-htc.org/iid/auodk30mc1ej diff --git a/topology/University of Alabama at Birmingham/FACILITY.yaml b/topology/University of Alabama at Birmingham/FACILITY.yaml index eefee1bbb..4d38d0794 100644 --- a/topology/University of Alabama at Birmingham/FACILITY.yaml +++ b/topology/University of Alabama at Birmingham/FACILITY.yaml @@ -1 +1,2 @@ ID: 10121 +InstitutionID: https://osg-htc.org/iid/7hv1hsn6xv15 diff --git a/topology/University of Alabama in Huntsville/FACILITY.yaml b/topology/University of Alabama in Huntsville/FACILITY.yaml index c6eea5eb0..b12557be0 100644 --- a/topology/University of Alabama in Huntsville/FACILITY.yaml +++ b/topology/University of Alabama in Huntsville/FACILITY.yaml @@ -1 +1,2 @@ ID: 10217 +InstitutionID: https://osg-htc.org/iid/9pke4tfxr4hz diff --git a/topology/University of Alabama/FACILITY.yaml b/topology/University of Alabama/FACILITY.yaml index 2ed6dd05e..d51a4e488 100644 --- a/topology/University of Alabama/FACILITY.yaml +++ b/topology/University of Alabama/FACILITY.yaml @@ -1 +1,2 @@ ID: 10197 +InstitutionID: https://osg-htc.org/iid/h3mnbxmdwx24 diff --git a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure.yaml b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure.yaml index 7f997c8de..09363f309 100644 --- a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure.yaml +++ b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure.yaml @@ -17,8 +17,8 @@ Resources: Primary: Name: Fabio Andrijauskas ID: OSG1000162 - FQDN: fiona-r-uva.vlan7.uvalight.net - DN: /DC=org/DC=terena/DC=tcs/C=NL/ST=Noord-Holland/O=Universiteit van Amsterdam/CN=fiona-r-uva.vlan7.uvalight.net + FQDN: amst-fiona.nationalresearchplatform.org + DN: /CN=amst-fiona.nationalresearchplatform.org Services: Pelican cache: Description: University of Amsterdam Stashcache Caching Server diff --git a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml index d2680ecf2..05c014e6f 100644 --- a/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml +++ b/topology/University of Amsterdam/AmsterdamPRP/AmsterdamPRPCachingInfrastructure_downtime.yaml @@ -75,3 +75,15 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1892712712 + Description: HW issues + Severity: Outage + StartTime: Aug 20, 2024 19:30 +0000 + EndTime: Aug 26, 2024 19:30 +0000 + CreatedTime: Aug 21, 2024 20:14 +0000 + ResourceName: Stashcache-UofA + Services: + - XRootD cache server +# --------------------------------------------------------- + diff --git a/topology/University of Amsterdam/FACILITY.yaml b/topology/University of Amsterdam/FACILITY.yaml index fdbd3acda..75270b23a 100644 --- a/topology/University of Amsterdam/FACILITY.yaml +++ b/topology/University of Amsterdam/FACILITY.yaml @@ -1 +1,2 @@ -ID: 10169 \ No newline at end of file +ID: 10169 +InstitutionID: https://osg-htc.org/iid/039thjonc14s diff --git a/topology/University of Arizona/FACILITY.yaml b/topology/University of Arizona/FACILITY.yaml index 8ce7bd44f..04049bf65 100644 --- a/topology/University of Arizona/FACILITY.yaml +++ b/topology/University of Arizona/FACILITY.yaml @@ -1 +1,2 @@ ID: 10144 +InstitutionID: https://osg-htc.org/iid/7rjyoz6kb8vq diff --git a/topology/University of Arkansas at Little Rock/FACILITY.yaml b/topology/University of Arkansas at Little Rock/FACILITY.yaml index d83681850..66a8c544f 100644 --- a/topology/University of Arkansas at Little Rock/FACILITY.yaml +++ b/topology/University of Arkansas at Little Rock/FACILITY.yaml @@ -1 +1,2 @@ ID: 10204 +InstitutionID: https://osg-htc.org/iid/39lbghshs28k diff --git a/topology/University of Arkansas/FACILITY.yaml b/topology/University of Arkansas/FACILITY.yaml index db200f579..fb9592e4d 100644 --- a/topology/University of Arkansas/FACILITY.yaml +++ b/topology/University of Arkansas/FACILITY.yaml @@ -1 +1,2 @@ ID: 10054 +InstitutionID: https://osg-htc.org/iid/78b3lgmajszi diff --git a/topology/University of Bern/FACILITY.yaml b/topology/University of Bern/FACILITY.yaml index 738f4a2c2..288700bb7 100644 --- a/topology/University of Bern/FACILITY.yaml +++ b/topology/University of Bern/FACILITY.yaml @@ -1 +1,2 @@ ID: 10145 +InstitutionID: https://osg-htc.org/iid/zhaoi0w09300 diff --git a/topology/University of Birmingham/FACILITY.yaml b/topology/University of Birmingham/FACILITY.yaml index 67c4d0682..a0908af3e 100644 --- a/topology/University of Birmingham/FACILITY.yaml +++ b/topology/University of Birmingham/FACILITY.yaml @@ -1 +1,2 @@ ID: 10034 +InstitutionID: https://osg-htc.org/iid/dux9vzel52vm diff --git a/topology/University of Buffalo/FACILITY.yaml b/topology/University of Buffalo/FACILITY.yaml index 4406a09a8..ec31dbe48 100644 --- a/topology/University of Buffalo/FACILITY.yaml +++ b/topology/University of Buffalo/FACILITY.yaml @@ -1 +1,2 @@ ID: 10013 +InstitutionID: https://osg-htc.org/iid/1cze98vy4hfm diff --git a/topology/University of California Davis/FACILITY.yaml b/topology/University of California Davis/FACILITY.yaml index ca71d49b5..fbcb020ee 100644 --- a/topology/University of California Davis/FACILITY.yaml +++ b/topology/University of California Davis/FACILITY.yaml @@ -1 +1,2 @@ ID: 10075 +InstitutionID: https://osg-htc.org/iid/f62wuiqfjmxm diff --git a/topology/University of California Los Angeles/FACILITY.yaml b/topology/University of California Los Angeles/FACILITY.yaml index b846a3b54..780fb3f32 100644 --- a/topology/University of California Los Angeles/FACILITY.yaml +++ b/topology/University of California Los Angeles/FACILITY.yaml @@ -1 +1,2 @@ ID: 10038 +InstitutionID: https://osg-htc.org/iid/4vhk41w4vvn6 diff --git a/topology/University of California Riverside/FACILITY.yaml b/topology/University of California Riverside/FACILITY.yaml index be89dbd93..006945994 100644 --- a/topology/University of California Riverside/FACILITY.yaml +++ b/topology/University of California Riverside/FACILITY.yaml @@ -1 +1,2 @@ ID: 10039 +InstitutionID: https://osg-htc.org/iid/zy99b9jjoqpb diff --git a/topology/University of California San Diego/FACILITY.yaml b/topology/University of California San Diego/FACILITY.yaml index 346a7a413..43f165e3a 100644 --- a/topology/University of California San Diego/FACILITY.yaml +++ b/topology/University of California San Diego/FACILITY.yaml @@ -1 +1,2 @@ ID: 10040 +InstitutionID: https://osg-htc.org/iid/06wup3aye2t7 diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml index 613cd3949..fb95858dc 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP.yaml @@ -23,7 +23,7 @@ Resources: DN: /DC=org/DC=incommon/C=US/ST=California/O=University of California, San Diego/CN=sdsc-origin.nationalresearchplatform.org FQDN: sdsc-origin.nationalresearchplatform.org Services: - XRootD origin server: + Pelican origin: Description: SDSC NRP OSDF Origin AllowedVOs: - ANY @@ -51,6 +51,26 @@ Resources: AllowedVOs: - ANY + SDSC_NRP_OSDF_XENON_ORIGIN: + Active: true + Description: SDSC NRP OSDF Xenon Origin + ContactLists: + Administrative Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + Security Contact: + Primary: + Name: Fabio Andrijauskas + ID: OSG1000162 + DN: /CN=sdsc-xenon-origin.nationalresearchplatform.org + FQDN: sdsc-xenon-origin.nationalresearchplatform.org + Services: + XRootD origin server: + Description: SDSC NRP OSDF Xenon Origin + AllowedVOs: + - ANY + SDSC_NRP_OSDF_S3_ORIGIN: Active: true Description: SDSC NRP OSDF S3 Origin diff --git a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP_downtime.yaml b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP_downtime.yaml index 641fc3907..9d82e6c04 100644 --- a/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP_downtime.yaml +++ b/topology/University of California San Diego/San Diego Supercomputer Center/SDSC-NRP_downtime.yaml @@ -75,3 +75,25 @@ Services: - XRootD origin server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1842520649 + Description: HW issue - storage + Severity: Outage + StartTime: Jun 23, 2024 19:30 +0000 + EndTime: Jun 24, 2024 01:01 +0000 + CreatedTime: Jun 24, 2024 18:01 +0000 + ResourceName: SDSC_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1886964689 + Description: HW issue + Severity: Outage + StartTime: Aug 13, 2024 19:30 +0000 + EndTime: Aug 16, 2024 19:00 +0000 + CreatedTime: Aug 15, 2024 04:34 +0000 + ResourceName: SDSC_NRP_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2.yaml b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2.yaml index b9ffcdb37..737c02225 100644 --- a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2.yaml +++ b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2.yaml @@ -373,7 +373,7 @@ Resources: VOOwnership: CMS: 100 UCSDT2-SE1: - Active: true + Active: false ContactLists: Administrative Contact: Primary: @@ -450,6 +450,48 @@ Resources: StorageCapacityMax: 0 StorageCapacityMin: 0 TapeCapacity: 0 + UCSDT2-SE4: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: 876425696868c8a32fa1b8ee1db792b5c76a9f37 + Name: Terrence Martin + Secondary: + Name: Diego Davila + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Security Contact: + Primary: + ID: 876425696868c8a32fa1b8ee1db792b5c76a9f37 + Name: Terrence Martin + Secondary: + Name: Diego Davila + ID: bc36e7fe84fffcb5cf195fe09cc42336f5cd5d1f + Description: XRootD/WebDAV SE serving CMS. + FQDN: redirector.t2.ucsd.edu + Services: + XRootD component: + Description: XRootD Storage Element + Details: + hidden: false + WebDAV: + Description: WebDAV Storage Element + Details: + hidden: false + VOOwnership: + CMS: 100 + WLCGInformation: + APELNormalFactor: 0 + AccountingName: T2_US_UCSD + HEPSPEC: 0 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 0 + KSI2KMin: 0 + StorageCapacityMax: 5000 + StorageCapacityMin: 1000 + TapeCapacity: 0 US-UCSD BW: Active: true ContactLists: diff --git a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml index 19834b95f..9f74665ba 100644 --- a/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml +++ b/topology/University of California San Diego/UCSD CMS Tier2/UCSDT2_downtime.yaml @@ -1774,3 +1774,190 @@ Services: - net.perfSONAR.Latency # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562758 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDCMST2-2-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562759 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDCMST2-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562760 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-A + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562761 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-B + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562762 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-C + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562763 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562764 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud-1-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562765 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud-2-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562766 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud-3-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562767 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud-4-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562768 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud-5-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562769 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-Cloud-6-squid + Services: + - Squid +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562770 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-D + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562771 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-SE1 + Services: + - GridFtp +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562772 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: UCSDT2-SE3 + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562773 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: US-UCSD BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1845562774 + Description: Cooling malfunction + Severity: Outage + StartTime: Jun 28, 2024 04:00 +0000 + EndTime: Jun 29, 2024 06:59 +0000 + CreatedTime: Jun 28, 2024 06:31 +0000 + ResourceName: US-UCSD LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- diff --git a/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml b/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml index 578659014..f3b01cacf 100644 --- a/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml +++ b/topology/University of California San Diego/UCSD OSG/StashCaches_downtime.yaml @@ -30,3 +30,14 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1860710904 + Description: Mark as down until Fabio can check + Severity: Outage + StartTime: Jul 15, 2024 19:00 +0000 + EndTime: Jul 15, 2024 21:40 +0000 + CreatedTime: Jul 15, 2024 19:18 +0000 + ResourceName: Stashcache-UCSD + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/University of California Santa Cruz/FACILITY.yaml b/topology/University of California Santa Cruz/FACILITY.yaml index 684e87301..e7a916f4a 100644 --- a/topology/University of California Santa Cruz/FACILITY.yaml +++ b/topology/University of California Santa Cruz/FACILITY.yaml @@ -1 +1,2 @@ ID: 10096 +InstitutionID: https://osg-htc.org/iid/n6cai04882ca diff --git a/topology/University of Campinas/FACILITY.yaml b/topology/University of Campinas/FACILITY.yaml index f1774a948..fc3804aa9 100644 --- a/topology/University of Campinas/FACILITY.yaml +++ b/topology/University of Campinas/FACILITY.yaml @@ -1 +1,2 @@ ID: 10183 +InstitutionID: https://osg-htc.org/iid/8heeewobs6t0 diff --git a/topology/University of Chicago/FACILITY.yaml b/topology/University of Chicago/FACILITY.yaml index e5c85b691..4b3bdf2e2 100644 --- a/topology/University of Chicago/FACILITY.yaml +++ b/topology/University of Chicago/FACILITY.yaml @@ -1 +1,2 @@ ID: 10023 +InstitutionID: https://osg-htc.org/iid/o14joi278jrs diff --git a/topology/University of Chicago/IRISHEP-SSL-UCHICAGO/IRISHEP-SSL-UCHICAGO.yaml b/topology/University of Chicago/IRISHEP-SSL-UCHICAGO/IRISHEP-SSL-UCHICAGO.yaml index 69dca5a40..e78c1acfa 100644 --- a/topology/University of Chicago/IRISHEP-SSL-UCHICAGO/IRISHEP-SSL-UCHICAGO.yaml +++ b/topology/University of Chicago/IRISHEP-SSL-UCHICAGO/IRISHEP-SSL-UCHICAGO.yaml @@ -8,17 +8,17 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Description: MWT2-hosted resources for Connect-related submitters. Supporting OSG via direct flocking to WN containers @@ -40,21 +40,33 @@ Resources: ID: 63c940faf153f892f782ff435548be0caece8e71 Name: Fengping Hu Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen + Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: + ID: OSG1000221 + Name: Farnaz Golnaraghi Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: ID: 63c940faf153f892f782ff435548be0caece8e71 Name: Fengping Hu Tertiary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen + Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: + ID: OSG1000221 + Name: Farnaz Golnaraghi Description: OSG VO backfill containers on the river-dev cluster. FQDN: river-dev-osg-backfill.grid.uchicago.edu ID: 1224 diff --git a/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml b/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml index 5e6616250..8c3acec10 100644 --- a/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml +++ b/topology/University of Chicago/MWT2 ATLAS UC/MWT2.yaml @@ -7,30 +7,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: This is unified gatekeeper for MWT2 resources. FQDN: osg-gk.mwt2.org ID: 375 @@ -58,30 +64,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2-hosted resources for Connect-related submitters. Supporting OSG, XENON1T, OSG, ATLAS, CMS, etc via direct flocking. @@ -99,30 +111,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: MWT2 Gatekeeper located at Indiana University @ Indianapolis, IN FQDN: iut2-gk.mwt2.org ID: 470 @@ -150,30 +168,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: MWT2 Gatekeeper located at Indiana University @ Indianapolis, IN FQDN: iut2-gk02.mwt2.org ID: 1295 @@ -201,30 +225,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 Gatekeeper located at The University of Chicago @ Chicago, IL FQDN: uct2-gk.mwt2.org ID: 471 @@ -252,30 +282,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 Gatekeeper located at The University of Chicago @ Chicago, IL FQDN: uct2-gk02.mwt2.org ID: 1299 @@ -303,30 +339,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 Gatekeeper located at University of Illinois @ Urbana-Champaign, IL FQDN: uiuc-gk.mwt2.org ID: 490 @@ -354,30 +396,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 Gatekeeper located at University of Illinois @ Urbana-Champaign, IL FQDN: uiuc-gk02.mwt2.org ID: 1432 @@ -405,30 +453,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 CVMFS Squid located at University of Illinois @ Urbana-Champaign, IL FQDN: mwt2-cvmfs.campuscluster.illinois.edu ID: 914 @@ -438,43 +492,49 @@ Resources: VOOwnership: ATLAS: 100 MWT2_SLATE_UC: - Active: false + Active: true ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 SLATE located at the University of Chicago @ Chicago, IL - FQDN: uct2-slate.mwt2.org + FQDN: uct2-squid.mwt2.org ID: 1065 Services: Squid: Description: Generic squid service Details: - uri_override: uct2-slate.mwt2.org:32200 - Monitored: false + uri_override: uct2-squid.mwt2.org:3128 + Monitored: true VOOwnership: ATLAS: 100 MWT2_SLATE_UC_2: @@ -482,47 +542,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 SLATE located at the University of Chicago @ Chicago, IL FQDN: sl-uc-xcache1.slateci.io ID: 1239 @@ -539,30 +594,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: MWT2 SLATE located at Indiana University @ Indianapolis, IN FQDN: iut2-slate.mwt2.org ID: 1066 @@ -579,30 +640,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: MWT2 SLATE located at Indiana University @ Indianapolis, IN FQDN: iut2-slate01.mwt2.org ID: 1241 @@ -619,30 +686,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 SLATE located at University of Illinois @ Urbana-Champaign, IL FQDN: mwt2-slate.mwt2.org ID: 1067 @@ -659,30 +732,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: ID: OSG1000064 Name: Ilija Vukotic Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 4: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: ID: OSG1000064 Name: Ilija Vukotic Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 4: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 SLATE Varnish cache located at University of Chicago, IL FQDN: v4a.mwt2.org ID: 1320 @@ -697,30 +782,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: ID: OSG1000064 Name: Ilija Vukotic Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 4: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: ID: OSG1000064 Name: Ilija Vukotic Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 4: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 SLATE Varnish cache located at University of Chicago, IL FQDN: v4cvmfs.mwt2.org ID: 1321 @@ -737,24 +834,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: ID: OSG1000064 Name: Ilija Vukotic + Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: + ID: OSG1000221 + Name: Farnaz Golnaraghi + Tertiary 4: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: ID: OSG1000064 Name: Ilija Vukotic + Tertiary 2: + ID: OSG1000765 + Name: David Jordan + Tertiary 3: + ID: OSG1000221 + Name: Farnaz Golnaraghi + Tertiary 4: + ID: OSG1000694 + Name: Aidan Rosberg Description: Varnish cache located at Starlight, Chicago, IL FQDN: starlight.varnish.atlas-ml.org Services: @@ -770,30 +885,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 dCache/SRM frontend FQDN: uct2-dcache-head.mwt2.org FQDNAliases: @@ -823,30 +944,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: GridFTP headnode for MWT2 FQDN: uct2-gridftp.mwt2.org ID: 1183 @@ -874,30 +1001,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: XRootD door/headnode for MWT2 FQDN: fax.mwt2.org ID: 1184 @@ -925,30 +1058,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: HTTP-TPC WebDAV service for MWT2 FQDN: webdav.mwt2.org ID: 1185 @@ -976,30 +1115,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: MWT2 perfSONAR-PS Bandwidth instance at Indiana University FQDN: iut2-net2.iu.edu ID: 581 @@ -1015,30 +1160,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: Testbed Perfsonar bandwidth node FQDN: iut2-net4.iu.edu ID: 672 @@ -1054,30 +1205,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: Internal perfsonar bandwidth nodes FQDN: iut2-net6.iu.edu ID: 675 @@ -1093,30 +1250,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: Internal perfsonar bandwidth nodes FQDN: iut2-net8.iu.edu ID: 676 @@ -1132,47 +1295,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Bandwidth instance at Indiana University (Replaces iut2-net2) FQDN: iut2-net10.iu.edu ID: 1223 @@ -1188,47 +1346,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Bandwidth instance at Indiana University (Replaces iut2-net4) FQDN: iut2-net12.iu.edu ID: 1235 @@ -1244,47 +1397,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Bandwidth instance at Indiana University (Replaces iut2-net6) FQDN: iut2-net14.iu.edu ID: 1231 @@ -1300,47 +1448,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Bandwidth instance at Indiana University (Replaces iut2-net8) FQDN: iut2-net16.iu.edu ID: 1233 @@ -1356,30 +1499,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: MWT2 perfSONAR-PS Latency instance at Indiana University FQDN: iut2-net1.iu.edu ID: 517 @@ -1395,30 +1544,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: Testbed Perfsonar latency node FQDN: iut2-net3.iu.edu ID: 671 @@ -1434,30 +1589,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: Campus perfsonar latency node FQDN: iut2-net5.iu.edu ID: 673 @@ -1473,30 +1634,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant Description: Internal Perfsonar latency nodes FQDN: iut2-net7.iu.edu ID: 674 @@ -1512,47 +1679,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Latency instance at Indiana University (replaces iut2-net1) FQDN: iut2-net09.iu.edu ID: 1222 @@ -1568,47 +1730,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Latency instance at Indiana University (replaces iut2-net3) FQDN: iut2-net11.iu.edu ID: 1234 @@ -1624,47 +1781,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Latency instance at Indiana University (replaces iut2-net5) FQDN: iut2-net13.iu.edu ID: 1230 @@ -1680,47 +1832,42 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi - Miscellaneous Contact: - Primary: + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring - Resource Report Contact: - Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 - Name: Judith Stephen - Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant - Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d - Name: David Jordan - Tertiary 2: - ID: OSG1000221 - Name: Farnaz Golnaraghi Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 - Name: Lincoln Bryant + ID: OSG1000694 + Name: Aidan Rosberg Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 4: + ID: 3b1876c30549a51501329cbb9678289fc786ac29 + Name: Frederick Luehring Description: MWT2 perfSONAR-PS Latency instance at Indiana University (replaces iut2-net7) FQDN: iut2-net15.iu.edu ID: 1232 @@ -1736,30 +1883,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 perfSONAR-PS Bandwidth instance at the University of Chicago FQDN: uct2-net2.mwt2.org ID: 580 @@ -1775,30 +1928,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: Testbed Perfsonar Bandwidth node FQDN: uct2-net4.mwt2.org ID: 670 @@ -1814,30 +1973,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 perfSONAR-PS Latency instance at the University of Chicago FQDN: uct2-net1.mwt2.org ID: 516 @@ -1853,30 +2018,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: Testbed PerfSonar Latency node FQDN: uct2-net3.mwt2.org ID: 669 @@ -1892,30 +2063,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 perfSONAR-PS Bandwidth instance at the University of Illinois at Urbana-Champaign @@ -1933,30 +2110,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: Testbed Perfsonar Bandwidth node FQDN: mwt2-ps04.campuscluster.illinois.edu ID: 791 @@ -1972,30 +2155,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: MWT2 perfSONAR-PS Latency instance at the University of Illinois at Urbana-Champaign @@ -2013,30 +2202,36 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Tertiary: - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Name: David Jordan Tertiary 2: ID: OSG1000221 Name: Farnaz Golnaraghi + Tertiary 3: + ID: OSG1000694 + Name: Aidan Rosberg Description: Testbed PerfSonar Latency node FQDN: mwt2-ps03.campuscluster.illinois.edu ID: 790 diff --git a/topology/University of Chicago/UChicago/UC_ITB.yaml b/topology/University of Chicago/UChicago/UC_ITB.yaml index ab39f25d1..db347cc21 100644 --- a/topology/University of Chicago/UChicago/UC_ITB.yaml +++ b/topology/University of Chicago/UChicago/UC_ITB.yaml @@ -7,17 +7,17 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Security Contact: Primary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen Secondary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Description: ITB condor resource @ UC FQDN: itbv-ce-condor.mwt2.org diff --git a/topology/University of Chicago/UChicago/UChicagoCachingInfrastructure.yaml b/topology/University of Chicago/UChicago/UChicagoCachingInfrastructure.yaml index 5ef1a36f1..df64441db 100644 --- a/topology/University of Chicago/UChicago/UChicagoCachingInfrastructure.yaml +++ b/topology/University of Chicago/UChicago/UChicagoCachingInfrastructure.yaml @@ -10,10 +10,10 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen FQDN: stash.osgconnect.net Services: diff --git a/topology/University of Chicago/UChicago/UChicago_OSGConnect.yaml b/topology/University of Chicago/UChicago/UChicago_OSGConnect.yaml index 992103d10..b41b2efe8 100644 --- a/topology/University of Chicago/UChicago/UChicago_OSGConnect.yaml +++ b/topology/University of Chicago/UChicago/UChicago_OSGConnect.yaml @@ -14,17 +14,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login04.osgconnect.net DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: @@ -41,18 +41,18 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login05.osgconnect.net DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: @@ -69,30 +69,30 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: ap20.uc.osg-htc.org Services: Submit Node: @@ -112,30 +112,30 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: ap21.uc.osg-htc.org Services: Submit Node: @@ -155,30 +155,30 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: ap22.uc.osg-htc.org Services: Submit Node: @@ -198,30 +198,30 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Farnaz Golnaraghi ID: OSG1000221 Tertiary: Name: David Jordan - ID: 3c60d9a835029389712c5f6cc30720bc5562519d + ID: OSG1000765 Tertiary 2: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: ap23.uc.osg-htc.org Services: Submit Node: @@ -244,17 +244,17 @@ Resources: ID: 38cd7e4efcb45e2aff808b98f5f928c96b3a8608 Secondary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Tertiary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: flock.opensciencegrid.org DN: /DC=org/DC=incommon/C=US/ST=Wisconsin/L=Madison/O=University of Wisconsin-Madison/OU=OCIS/CN=flock.opensciencegrid.org Services: @@ -272,17 +272,17 @@ Resources: ID: 38cd7e4efcb45e2aff808b98f5f928c96b3a8608 Secondary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Tertiary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: xd-login.opensciencegrid.org DN: /DC=org/DC=incommon/C=US/ST=Wisconsin/L=Madison/O=University of Wisconsin-Madison/OU=OCIS/CN=xd-login.opensciencegrid.org Services: @@ -297,17 +297,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login.veritas.ci-connect.net DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: @@ -324,17 +324,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: duke-login.osgconnect.net DN: /DC=org/DC=opensciencegrid/O=Open Science Grid/OU=Services/CN=duke-login.osgconnect.net Services: @@ -351,17 +351,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login.ci-connect.uchicago.edu DN: /DC=org/DC=opensciencegrid/O=Open Science Grid/OU=Services/CN=login.ci-connect.uchicago.edu Services: @@ -378,17 +378,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login-el7.xenon.ci-connect.net DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: @@ -408,17 +408,17 @@ Resources: Name: Kenyi Hurtado Anampa Secondary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Tertiary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login.cms.ci-connect.net DN: /DC=org/DC=opensciencegrid/O=Open Science Grid/OU=Services/CN=login.cms.ci-connect.net Services: @@ -435,17 +435,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login.snowmass21.io DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: @@ -462,17 +462,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login.collab.ci-connect.net DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: @@ -489,17 +489,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: amundsen.grid.uchicago.edu DN: /DC=org/DC=opensciencegrid/O=Open Science Grid/OU=Services/CN=amundsen.grid.uchicago.edu Services: @@ -516,17 +516,17 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: scott.grid.uchicago.edu DN: /DC=org/DC=opensciencegrid/O=Open Science Grid/OU=Services/CN=scott.grid.uchicago.edu Services: @@ -536,15 +536,15 @@ Resources: - OSPool UChicago_OSGConnect_Public_Origin: - Active: true + Active: false Description: OSG Connect Public endpoint ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Secondary: - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Name: Judith Stephen FQDN: osdf-public.tempest.uchicago.edu DN: /CN=osdf-public.tempest.uchicago.edu @@ -553,3 +553,47 @@ Resources: Description: OSG Connect Public Origin Server AllowedVOs: - OSG + + UChicago_OSGConnect_Pelican_Public_Origin: + Active: true + Description: OSG Connect Public endpoint + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000016 + Name: Judith Stephen + Secondary: + ID: OSG1000765 + Name: David Jordan + Tertiary: + ID: OSG1000221 + Name: Farnaz Golnaraghi + FQDN: pelican-osdf-public.tempest.uchicago.edu + DN: /CN=pelican-osdf-public.tempest.uchicago.edu + Services: + Pelican origin: + Description: OSG Connect Public Origin Server + AllowedVOs: + - OSG + + UChicago_OSGConnect_Pelican_Authenticated_Origin: + Active: true + Description: OSG Connect Authenticated endpoint + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000016 + Name: Judith Stephen + Secondary: + ID: OSG1000765 + Name: David Jordan + Tertiary: + ID: OSG1000221 + Name: Farnaz Golnaraghi + FQDN: pelican-osdf-authenticated.tempest.uchicago.edu + DN: /CN=pelican-osdf-authenticated.tempest.uchicago.edu + Services: + Pelican origin: + Description: OSG Connect Authenticated Origin Server + AllowedVOs: + - OSG diff --git a/topology/University of Chicago/UChicago/UChicago_OSGConnect_ITB.yaml b/topology/University of Chicago/UChicago/UChicago_OSGConnect_ITB.yaml index 537da9aee..b33eb009e 100644 --- a/topology/University of Chicago/UChicago/UChicago_OSGConnect_ITB.yaml +++ b/topology/University of Chicago/UChicago/UChicago_OSGConnect_ITB.yaml @@ -11,19 +11,40 @@ Resources: Administrative Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Judith Stephen - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + ID: OSG1000016 Secondary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: login-test.osgconnect.net DN: /DC=org/DC=incommon/C=US/ST=IL/L=Chicago/O=University of Chicago/OU=IT Services - Self Enrollment/CN=condor-flocking-cert.grid.uchicago.edu Services: Submit Node: Description: ITB OS Pool access point + UChicago_OSGConnect_Pelican_Public_ITB: + Active: true + Description: OSG Connect ITB Public endpoint via Pelican + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000016 + Name: Judith Stephen + Secondary: + ID: OSG1000765 + Name: David Jordan + Tertiary: + ID: OSG1000221 + Name: Farnaz Golnaraghi + FQDN: pelican-public-itb.tempest.uchicago.edu + DN: /CN=pelican-public-itb.tempest.uchicago.edu + Services: + Pelican origin: + Description: OSG Connect ITB Public Origin Server + AllowedVOs: + - OSG diff --git a/topology/University of Chicago/UChicago/UChicago_Pile.yaml b/topology/University of Chicago/UChicago/UChicago_Pile.yaml new file mode 100644 index 000000000..c071e8631 --- /dev/null +++ b/topology/University of Chicago/UChicago/UChicago_Pile.yaml @@ -0,0 +1,39 @@ +Production: true +SupportCenter: Self Supported +GroupDescription: Resources associated with the UChicago Pile cluster + +Resources: + UChicago_Pile_Backfill: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000765 + Name: David Jordan + Secondary: + ID: OSG1000221 + Name: Farnaz Golnaraghi + Tertiary: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 2: + ID: OSG1000016 + Name: Judith Stephen + Security Contact: + Primary: + ID: OSG1000765 + Name: David Jordan + Secondary: + ID: OSG1000221 + Name: Farnaz Golnaraghi + Tertiary: + ID: OSG1000013 + Name: Lincoln Bryant + Tertiary 2: + ID: OSG1000016 + Name: Judith Stephen + Description: OSG VO backfill containers on the UChicago Pile cluster. + FQDN: pile-backfill.grid.uchicago.edu + Services: + Execution Endpoint: + Description: OSG VO backfill containers on the UChicago Pile cluster. diff --git a/topology/University of Colorado Denver/FACILITY.yaml b/topology/University of Colorado Denver/FACILITY.yaml index 559f723b1..3072e5eb5 100644 --- a/topology/University of Colorado Denver/FACILITY.yaml +++ b/topology/University of Colorado Denver/FACILITY.yaml @@ -1 +1,2 @@ ID: 10198 +InstitutionID: https://osg-htc.org/iid/m27szfeh7gut diff --git a/topology/University of Colorado/FACILITY.yaml b/topology/University of Colorado/FACILITY.yaml index 48d6abd6a..2b82646e0 100644 --- a/topology/University of Colorado/FACILITY.yaml +++ b/topology/University of Colorado/FACILITY.yaml @@ -1 +1,2 @@ ID: 10060 +InstitutionID: https://osg-htc.org/iid/gpeckuwpdnrs diff --git a/topology/University of Connecticut Health Center/FACILITY.yaml b/topology/University of Connecticut Health Center/FACILITY.yaml index 593205642..e8bbe33a3 100644 --- a/topology/University of Connecticut Health Center/FACILITY.yaml +++ b/topology/University of Connecticut Health Center/FACILITY.yaml @@ -1 +1,2 @@ ID: 10067 +InstitutionID: https://osg-htc.org/iid/z1cema4pdiep diff --git a/topology/University of Connecticut/FACILITY.yaml b/topology/University of Connecticut/FACILITY.yaml index c69b9a1e8..7eb5af16b 100644 --- a/topology/University of Connecticut/FACILITY.yaml +++ b/topology/University of Connecticut/FACILITY.yaml @@ -1 +1,2 @@ ID: 10079 +InstitutionID: https://osg-htc.org/iid/eq81k8qpbcq9 diff --git a/topology/University of Edinburgh/FACILITY.yaml b/topology/University of Edinburgh/FACILITY.yaml index 0ad6f5176..1ff31c463 100644 --- a/topology/University of Edinburgh/FACILITY.yaml +++ b/topology/University of Edinburgh/FACILITY.yaml @@ -1 +1,2 @@ ID: 10195 +InstitutionID: https://osg-htc.org/iid/5s885xc1ooke diff --git a/topology/University of Florida/FACILITY.yaml b/topology/University of Florida/FACILITY.yaml index f46b79812..283fa0252 100644 --- a/topology/University of Florida/FACILITY.yaml +++ b/topology/University of Florida/FACILITY.yaml @@ -1 +1,2 @@ ID: 10041 +InstitutionID: https://osg-htc.org/iid/84k5udeuw65m diff --git a/topology/University of Florida/UF HPC/UFlorida-HPC_downtime.yaml b/topology/University of Florida/UF HPC/UFlorida-HPC_downtime.yaml index 7056ce9ae..2117ca45d 100644 --- a/topology/University of Florida/UF HPC/UFlorida-HPC_downtime.yaml +++ b/topology/University of Florida/UF HPC/UFlorida-HPC_downtime.yaml @@ -959,3 +959,36 @@ Services: - XRootD component # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1886589429 + Description: Storage upgrade prevents job submissions + Severity: Outage + StartTime: Aug 14, 2024 09:00 +0000 + EndTime: Aug 17, 2024 21:00 +0000 + CreatedTime: Aug 14, 2024 18:09 +0000 + ResourceName: UFlorida-CMS + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1886589830 + Description: Storage upgrade prevents job submissions + Severity: Outage + StartTime: Aug 14, 2024 09:00 +0000 + EndTime: Aug 17, 2024 21:00 +0000 + CreatedTime: Aug 14, 2024 18:09 +0000 + ResourceName: UFlorida-HPC + Services: + - CE +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1886590095 + Description: Storage upgrade prevents job submissions + Severity: Outage + StartTime: Aug 14, 2024 09:00 +0000 + EndTime: Aug 17, 2024 21:00 +0000 + CreatedTime: Aug 14, 2024 18:10 +0000 + ResourceName: UFlorida-HPG2 + Services: + - CE +# --------------------------------------------------------- diff --git a/topology/University of Georgia/FACILITY.yaml b/topology/University of Georgia/FACILITY.yaml index 5dda5ae4d..a097ac737 100644 --- a/topology/University of Georgia/FACILITY.yaml +++ b/topology/University of Georgia/FACILITY.yaml @@ -1 +1,2 @@ ID: 10103 +InstitutionID: https://osg-htc.org/iid/f1jj8ym509ap diff --git a/topology/University of Hawaii System/FACILITY.yaml b/topology/University of Hawaii System/FACILITY.yaml index de994b23e..83e18bff1 100644 --- a/topology/University of Hawaii System/FACILITY.yaml +++ b/topology/University of Hawaii System/FACILITY.yaml @@ -1 +1,2 @@ ID: 10201 +InstitutionID: https://osg-htc.org/iid/dsdkrs83f44q diff --git a/topology/University of Hawaii System/Hawaii ITS/ITC-NRP.yaml b/topology/University of Hawaii System/Hawaii ITS/ITC-NRP.yaml index fbfeda5d2..d4197afeb 100644 --- a/topology/University of Hawaii System/Hawaii ITS/ITC-NRP.yaml +++ b/topology/University of Hawaii System/Hawaii ITS/ITC-NRP.yaml @@ -12,7 +12,7 @@ Resources: Primary: Name: Fabio Andrijauskas ID: OSG1000162 - FQDN: fiona.its.hawaii.edu + FQDN: hawaii-its-origin.nationalresearchplatform.org Services: XRootD origin server: Description: ITC OSDF Origin diff --git a/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore.yaml b/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore.yaml index 1969242e2..73e7703dc 100644 --- a/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore.yaml +++ b/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore.yaml @@ -11,9 +11,9 @@ Resources: Primary: Name: Sean Cleveland ID: OSG1000276 - FQDN: koastore-osdf.its.hawaii.edu + FQDN: koastore-origin.nationalresearchplatform.org Services: - XRootD origin server: + Pelican origin: Description: KoaStore OSDF Origin AllowedVOs: - ANY diff --git a/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore_downtime.yaml b/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore_downtime.yaml index e01bb01f4..a4abde0a7 100644 --- a/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore_downtime.yaml +++ b/topology/University of Hawaii System/Hawaii ITS/UH-KoaStore_downtime.yaml @@ -9,3 +9,14 @@ Services: - XRootD origin server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1885744233 + Description: '#toPelican' + Severity: Outage + StartTime: Aug 12, 2024 19:30 +0000 + EndTime: Aug 16, 2024 19:30 +0000 + CreatedTime: Aug 13, 2024 18:40 +0000 + ResourceName: KOASTORE_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- diff --git a/topology/University of Hawaii System/Institute for Astronomy HURP/IFAHURP_downtime.yaml b/topology/University of Hawaii System/Institute for Astronomy HURP/IFAHURP_downtime.yaml new file mode 100644 index 000000000..a688636c9 --- /dev/null +++ b/topology/University of Hawaii System/Institute for Astronomy HURP/IFAHURP_downtime.yaml @@ -0,0 +1,11 @@ +- Class: SCHEDULED + ID: 1887527582 + Description: HW issue + Severity: Outage + StartTime: Aug 14, 2024 19:30 +0000 + EndTime: Aug 21, 2024 19:30 +0000 + CreatedTime: Aug 15, 2024 20:12 +0000 + ResourceName: IFAHURP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- diff --git a/topology/University of Illinois Chicago/FACILITY.yaml b/topology/University of Illinois Chicago/FACILITY.yaml index 548471472..c5a2969c6 100644 --- a/topology/University of Illinois Chicago/FACILITY.yaml +++ b/topology/University of Illinois Chicago/FACILITY.yaml @@ -1 +1,2 @@ ID: 10042 +InstitutionID: https://osg-htc.org/iid/y691qclum4cv diff --git a/topology/University of Illinois at Urbana Champaign/FACILITY.yaml b/topology/University of Illinois at Urbana Champaign/FACILITY.yaml index 168ac6761..28aeefbfc 100644 --- a/topology/University of Illinois at Urbana Champaign/FACILITY.yaml +++ b/topology/University of Illinois at Urbana Champaign/FACILITY.yaml @@ -1 +1,2 @@ ID: 10057 +InstitutionID: https://osg-htc.org/iid/10izzs5e7v1r diff --git a/topology/University of Illinois at Urbana Champaign/ICC-SLATE-HTC/UIUC-SLATE-HTC.yaml b/topology/University of Illinois at Urbana Champaign/ICC-SLATE-HTC/UIUC-SLATE-HTC.yaml index e61b48f3d..80facda88 100644 --- a/topology/University of Illinois at Urbana Champaign/ICC-SLATE-HTC/UIUC-SLATE-HTC.yaml +++ b/topology/University of Illinois at Urbana Champaign/ICC-SLATE-HTC/UIUC-SLATE-HTC.yaml @@ -11,11 +11,11 @@ Resources: Administrative Contact: Primary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: hosted-ce02.mwt2-uiuc.slateci.io Services: CE: diff --git a/topology/University of Illinois at Urbana Champaign/MWT2-UIUC/MWT2-UIUC.yaml b/topology/University of Illinois at Urbana Champaign/MWT2-UIUC/MWT2-UIUC.yaml index 2420282d5..ad9b4ba30 100644 --- a/topology/University of Illinois at Urbana Champaign/MWT2-UIUC/MWT2-UIUC.yaml +++ b/topology/University of Illinois at Urbana Champaign/MWT2-UIUC/MWT2-UIUC.yaml @@ -25,7 +25,7 @@ Resources: Site Contact: Primary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: mwt2-uiuc-ce1.svc.opensciencegrid.org Services: CE: diff --git a/topology/University of Illinois at Urbana Champaign/UIUC-ICC-SPT/UIUC-ICC-SPT.yaml b/topology/University of Illinois at Urbana Champaign/UIUC-ICC-SPT/UIUC-ICC-SPT.yaml index 2b25b72a8..667f641d9 100644 --- a/topology/University of Illinois at Urbana Champaign/UIUC-ICC-SPT/UIUC-ICC-SPT.yaml +++ b/topology/University of Illinois at Urbana Champaign/UIUC-ICC-SPT/UIUC-ICC-SPT.yaml @@ -11,11 +11,11 @@ Resources: Administrative Contact: Primary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Security Contact: Primary: Name: Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 FQDN: uiuc-icc-spt-ce1.svc.opensciencegrid.org Services: CE: diff --git a/topology/University of Illinois at Urbana Champaign/UIUC-NFI/SITE.yaml b/topology/University of Illinois at Urbana Champaign/UIUC-NFI/SITE.yaml new file mode 100644 index 000000000..1ca8265ae --- /dev/null +++ b/topology/University of Illinois at Urbana Champaign/UIUC-NFI/SITE.yaml @@ -0,0 +1,8 @@ +City: Urbana +Country: United States +Description: University of Illinois at Urbana-Champaign's New Frontiers Initiative +LongName: University of Illinois at Urbana-Champaign New Frontiers Initiative +Latitude: 40.109647 +Longitude: -88.3 +State: IL +Zipcode: '61801' diff --git a/topology/University of Illinois at Urbana Champaign/UIUC-NFI/UIUC-TGI-RAILS.yaml b/topology/University of Illinois at Urbana Champaign/UIUC-NFI/UIUC-TGI-RAILS.yaml new file mode 100644 index 000000000..b13b4c763 --- /dev/null +++ b/topology/University of Illinois at Urbana Champaign/UIUC-NFI/UIUC-TGI-RAILS.yaml @@ -0,0 +1,24 @@ +Production: true +SupportCenter: Community Support Center +GroupDescription: This is the UIUC cluster for Taylor Geospatial Institute +Resources: + UIUC-TGI-RAILS-CE1: + Active: true + Description: This is the UIUC cluster for Taylor Geospatial Institute + ContactLists: + Administrative Contact: + Primary: + Name: Ashton Graves + ID: OSG1000362 + Security Contact: + Primary: + Name: Ashton Graves + ID: OSG1000362 + FQDN: uiuc-tgi-rails-ce1.svc.opensciencegrid.org + Services: + CE: + Description: Compute Element + Details: + hidden: false + Tags: + - CC* diff --git a/topology/University of Iowa/FACILITY.yaml b/topology/University of Iowa/FACILITY.yaml index 5b11a9821..0e7e064a3 100644 --- a/topology/University of Iowa/FACILITY.yaml +++ b/topology/University of Iowa/FACILITY.yaml @@ -1 +1,2 @@ ID: 10015 +InstitutionID: https://osg-htc.org/iid/2eafckbgu51c diff --git a/topology/University of Johannesburg/FACILITY.yaml b/topology/University of Johannesburg/FACILITY.yaml index 34d0db43b..013893a04 100644 --- a/topology/University of Johannesburg/FACILITY.yaml +++ b/topology/University of Johannesburg/FACILITY.yaml @@ -1 +1,2 @@ ID: 10066 +InstitutionID: https://osg-htc.org/iid/9zu6y5tiq158 diff --git a/topology/University of Maine System/FACILITY.yaml b/topology/University of Maine System/FACILITY.yaml index e1f868278..11e0cc426 100644 --- a/topology/University of Maine System/FACILITY.yaml +++ b/topology/University of Maine System/FACILITY.yaml @@ -1 +1,2 @@ ID: 10207 +InstitutionID: https://osg-htc.org/iid/nsi0jiu7ddfi diff --git a/topology/University of Maryland/FACILITY.yaml b/topology/University of Maryland/FACILITY.yaml index be6aa01f0..2086db3dc 100644 --- a/topology/University of Maryland/FACILITY.yaml +++ b/topology/University of Maryland/FACILITY.yaml @@ -1 +1,2 @@ ID: 10056 +InstitutionID: https://osg-htc.org/iid/h5syhdikri9a diff --git a/topology/University of Maryland/UMD_SIAB/UMD_SIAB.yaml b/topology/University of Maryland/UMD_SIAB/UMD_SIAB.yaml index 372c36632..812688aac 100644 --- a/topology/University of Maryland/UMD_SIAB/UMD_SIAB.yaml +++ b/topology/University of Maryland/UMD_SIAB/UMD_SIAB.yaml @@ -6,7 +6,7 @@ GroupDescription: The UMD_SIAB cluster Resources: OSG_US_UMD_SIAB: ID: 1345 - Disable: false + Active: false Description: The Hosted CE serving UMD_SIAB ContactLists: Administrative Contact: diff --git a/topology/University of Massachusetts - Amherst/FACILITY.yaml b/topology/University of Massachusetts - Amherst/FACILITY.yaml index 4e182bd65..403e9bffb 100644 --- a/topology/University of Massachusetts - Amherst/FACILITY.yaml +++ b/topology/University of Massachusetts - Amherst/FACILITY.yaml @@ -1 +1,2 @@ ID: 10206 +InstitutionID: https://osg-htc.org/iid/sqj1fi5b7fdj diff --git a/topology/University of Michigan/AGLT2/AGLT2.yaml b/topology/University of Michigan/AGLT2/AGLT2.yaml index 71d7a71ee..d167e9eaa 100644 --- a/topology/University of Michigan/AGLT2/AGLT2.yaml +++ b/topology/University of Michigan/AGLT2/AGLT2.yaml @@ -37,7 +37,7 @@ Resources: VOOwnership: ATLAS: 90 AGLT2-squid-3: - Active: true + Active: false ContactLists: Administrative Contact: Primary: @@ -66,7 +66,7 @@ Resources: Squid: Description: Generic squid service Details: - Monitored: true + Monitored: false VOOwnership: ATLAS: 90 AGLT2-squid-4: @@ -99,7 +99,7 @@ Resources: Squid: Description: Generic varnish service Details: - uri_override: sl-um-es2.slateci.io:6081 + uri_override: sl-um-es2.slateci.io:6082 Monitored: true VOOwnership: ATLAS: 90 diff --git a/topology/University of Michigan/FACILITY.yaml b/topology/University of Michigan/FACILITY.yaml index 130f82bfc..13e1f9659 100644 --- a/topology/University of Michigan/FACILITY.yaml +++ b/topology/University of Michigan/FACILITY.yaml @@ -1 +1,2 @@ ID: 10001 +InstitutionID: https://osg-htc.org/iid/4ocf9kvq30fn diff --git a/topology/University of Minnesota/FACILITY.yaml b/topology/University of Minnesota/FACILITY.yaml index 4dcef4c17..fa7cc08a4 100644 --- a/topology/University of Minnesota/FACILITY.yaml +++ b/topology/University of Minnesota/FACILITY.yaml @@ -1 +1,2 @@ ID: 10083 +InstitutionID: https://osg-htc.org/iid/3chofmlz7p5r diff --git a/topology/University of Mississippi/FACILITY.yaml b/topology/University of Mississippi/FACILITY.yaml index 6ef16a0b8..8be487b5d 100644 --- a/topology/University of Mississippi/FACILITY.yaml +++ b/topology/University of Mississippi/FACILITY.yaml @@ -1 +1,2 @@ ID: 10059 +InstitutionID: https://osg-htc.org/iid/bigpgrrmxblz diff --git a/topology/University of Missouri/FACILITY.yaml b/topology/University of Missouri/FACILITY.yaml new file mode 100644 index 000000000..e4f765d7a --- /dev/null +++ b/topology/University of Missouri/FACILITY.yaml @@ -0,0 +1 @@ +InstitutionID: https://osg-htc.org/iid/dohu2f6ba08u diff --git a/topology/University of Missouri/Missouri ITRSS/Missouri-Rise.yaml b/topology/University of Missouri/Missouri ITRSS/Missouri-Rise.yaml index 89602d443..305d4e10a 100644 --- a/topology/University of Missouri/Missouri ITRSS/Missouri-Rise.yaml +++ b/topology/University of Missouri/Missouri ITRSS/Missouri-Rise.yaml @@ -3,7 +3,7 @@ SupportCenter: Community Support Center GroupDescription: Compute infrastructure Resources: - Missouri-Rise-Origin1-NRP: + MISSOURI_RISE_NRP_OSDF_ORIGIN: Active: false Description: MO NRP origin ContactLists: diff --git a/topology/University of Montana/FACILITY.yaml b/topology/University of Montana/FACILITY.yaml index 61525ca1a..7e273d2b6 100644 --- a/topology/University of Montana/FACILITY.yaml +++ b/topology/University of Montana/FACILITY.yaml @@ -1 +1,2 @@ ID: 10213 +InstitutionID: https://osg-htc.org/iid/sdmbw89obfoi diff --git a/topology/University of Montana/UMontana IT/UMT-Hellgate_downtime.yaml b/topology/University of Montana/UMontana IT/UMT-Hellgate_downtime.yaml new file mode 100644 index 000000000..f9f18af37 --- /dev/null +++ b/topology/University of Montana/UMontana IT/UMT-Hellgate_downtime.yaml @@ -0,0 +1,12 @@ +- Class: UNSCHEDULED + ID: 1869263667 + Description: Down due to power outage + Severity: Outage + StartTime: Jul 25, 2024 17:00 +0000 + EndTime: Aug 15, 2024 17:00 +0000 + CreatedTime: Jul 25, 2024 16:52 +0000 + ResourceName: UMT-Hellgate-CE1 + Services: + - CE +# --------------------------------------------------------- + diff --git a/topology/University of Nebraska/FACILITY.yaml b/topology/University of Nebraska/FACILITY.yaml index a5b83725b..bd2f69da1 100644 --- a/topology/University of Nebraska/FACILITY.yaml +++ b/topology/University of Nebraska/FACILITY.yaml @@ -1 +1,2 @@ ID: 10036 +InstitutionID: https://osg-htc.org/iid/lpmbnv3fuapc diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLCachingInfrastructure_downtime.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLCachingInfrastructure_downtime.yaml index 435b7720a..387a8965a 100644 --- a/topology/University of Nebraska/Nebraska-Lincoln/UNLCachingInfrastructure_downtime.yaml +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLCachingInfrastructure_downtime.yaml @@ -9,4 +9,25 @@ Services: - XRootD origin server # --------------------------------------------------------- - +- Class: UNSCHEDULED + ID: 1875362292 + Description: HW issue + Severity: Outage + StartTime: Jul 31, 2024 08:01 +0000 + EndTime: Aug 08, 2024 19:30 +0000 + CreatedTime: Aug 01, 2024 18:17 +0000 + ResourceName: NEBRASKA_NRP_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1911495645 + Description: HW issue + Severity: Outage + StartTime: Sep 11, 2024 00:00 +0000 + EndTime: Sep 23, 2024 11:30 +0000 + CreatedTime: Sep 12, 2024 13:59 +0000 + ResourceName: NEBRASKA_NRP_OSDF_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- diff --git a/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin_downtime.yaml b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin_downtime.yaml new file mode 100644 index 000000000..49583518c --- /dev/null +++ b/topology/University of Nebraska/Nebraska-Lincoln/UNLNRPOrigin_downtime.yaml @@ -0,0 +1,91 @@ +- Class: UNSCHEDULED + ID: 1861480156 + Description: Redoing the underlying filesystems for better support + Severity: Outage + StartTime: Jul 15, 2024 16:00 +0000 + EndTime: Jul 19, 2024 05:00 +0000 + CreatedTime: Jul 16, 2024 16:40 +0000 + ResourceName: NEBRASKA_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- + + +- Class: UNSCHEDULED + ID: 1833154607 + Description: Testing OS + Severity: Outage + StartTime: Jun 12, 2024 19:30 +0000 + EndTime: Jun 21, 2024 19:30 +0000 + CreatedTime: Jun 13, 2024 21:51 +0000 + ResourceName: NEBRASKA_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1868413300 + Description: PVC issue + Severity: Outage + StartTime: Jul 22, 2024 16:30 +0000 + EndTime: Aug 16, 2024 16:30 +0000 + CreatedTime: Jul 24, 2024 17:15 +0000 + ResourceName: NEBRASKA_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1890867892 + Description: HW issue + Severity: Outage + StartTime: Aug 17, 2024 19:30 +0000 + EndTime: Sep 13, 2024 19:30 +0000 + CreatedTime: Aug 19, 2024 16:59 +0000 + ResourceName: NEBRASKA_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1891711414 + Description: HW issue + Severity: Outage + StartTime: Aug 19, 2024 19:30 +0000 + EndTime: Aug 23, 2024 19:30 +0000 + CreatedTime: Aug 20, 2024 16:25 +0000 + ResourceName: NEBRASKA_NRP_HCC_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1904966703 + Description: HW issue + Severity: Outage + StartTime: Sep 03, 2024 19:30 +0000 + EndTime: Sep 13, 2024 19:30 +0000 + CreatedTime: Sep 05, 2024 00:37 +0000 + ResourceName: NEBRASKA_NRP_HCC_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1915950560 + Description: HW issue + Severity: Outage + StartTime: Sep 15, 2024 15:30 +0000 + EndTime: Sep 21, 2024 15:30 +0000 + CreatedTime: Sep 17, 2024 17:44 +0000 + ResourceName: NEBRASKA_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1921058069 + Description: HW issues + Severity: Outage + StartTime: Sep 22, 2024 15:30 +0000 + EndTime: Oct 25, 2024 15:30 +0000 + CreatedTime: Sep 23, 2024 15:36 +0000 + ResourceName: NEBRASKA_NRP_OSDF_ORIGIN + Services: + - XRootD origin server +# --------------------------------------------------------- + diff --git a/topology/University of New Mexico/FACILITY.yaml b/topology/University of New Mexico/FACILITY.yaml index d45a8ca89..f41b0a9fb 100644 --- a/topology/University of New Mexico/FACILITY.yaml +++ b/topology/University of New Mexico/FACILITY.yaml @@ -1 +1,2 @@ ID: 10043 +InstitutionID: https://osg-htc.org/iid/pclpz1bwbpdi diff --git a/topology/University of North Carolina/FACILITY.yaml b/topology/University of North Carolina/FACILITY.yaml index 46724f1ed..42751a58c 100644 --- a/topology/University of North Carolina/FACILITY.yaml +++ b/topology/University of North Carolina/FACILITY.yaml @@ -1 +1,2 @@ ID: 10061 +InstitutionID: https://osg-htc.org/iid/nhz3r9d0308l diff --git a/topology/University of North Dakota/FACILITY.yaml b/topology/University of North Dakota/FACILITY.yaml index 5464e52f0..f168fdf0b 100644 --- a/topology/University of North Dakota/FACILITY.yaml +++ b/topology/University of North Dakota/FACILITY.yaml @@ -1 +1,2 @@ ID: 10215 +InstitutionID: https://osg-htc.org/iid/mxii12n9x22s diff --git a/topology/University of Northern Iowa/FACILITY.yaml b/topology/University of Northern Iowa/FACILITY.yaml index 975d41716..ea23dd3bb 100644 --- a/topology/University of Northern Iowa/FACILITY.yaml +++ b/topology/University of Northern Iowa/FACILITY.yaml @@ -1 +1,2 @@ ID: 10016 +InstitutionID: https://osg-htc.org/iid/940o5v3ne7m0 diff --git a/topology/University of Notre Dame/FACILITY.yaml b/topology/University of Notre Dame/FACILITY.yaml index 62e8c5c77..564af9a4e 100644 --- a/topology/University of Notre Dame/FACILITY.yaml +++ b/topology/University of Notre Dame/FACILITY.yaml @@ -1 +1,2 @@ ID: 10025 +InstitutionID: https://osg-htc.org/iid/mavkovkq2s0l diff --git a/topology/University of Oklahoma/FACILITY.yaml b/topology/University of Oklahoma/FACILITY.yaml index 2fb6b8990..80a3ce519 100644 --- a/topology/University of Oklahoma/FACILITY.yaml +++ b/topology/University of Oklahoma/FACILITY.yaml @@ -1 +1,2 @@ ID: 10029 +InstitutionID: https://osg-htc.org/iid/xvsrc4eixk2g diff --git a/topology/University of Oklahoma/OU ATLAS/OU_OSCER_ATLAS_downtime.yaml b/topology/University of Oklahoma/OU ATLAS/OU_OSCER_ATLAS_downtime.yaml index 936aa2605..36e4aea89 100644 --- a/topology/University of Oklahoma/OU ATLAS/OU_OSCER_ATLAS_downtime.yaml +++ b/topology/University of Oklahoma/OU ATLAS/OU_OSCER_ATLAS_downtime.yaml @@ -756,3 +756,108 @@ Services: - Squid # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1842497571 + Description: OSCER cluster maintenance + Severity: Outage + StartTime: Jun 26, 2024 13:00 +0000 + EndTime: Jun 27, 2024 03:00 +0000 + CreatedTime: Jun 24, 2024 17:22 +0000 + ResourceName: OU_OSCER_ATLAS + Services: + - CE + - GridFtp +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1842497572 + Description: OSCER cluster maintenance + Severity: Outage + StartTime: Jun 26, 2024 13:00 +0000 + EndTime: Jun 27, 2024 03:00 +0000 + CreatedTime: Jun 24, 2024 17:22 +0000 + ResourceName: OU_OSCER_ATLAS_SE + Services: + - GridFtp + - XRootD component +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1842497573 + Description: OSCER cluster maintenance + Severity: Outage + StartTime: Jun 26, 2024 13:00 +0000 + EndTime: Jun 27, 2024 03:00 +0000 + CreatedTime: Jun 24, 2024 17:22 +0000 + ResourceName: OU_OSCER_ATLAS_SLATE_SQUID + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903010612 + Description: OSCER cluster maintenance + Severity: Outage + StartTime: Sep 04, 2024 13:00 +0000 + EndTime: Sep 05, 2024 04:00 +0000 + CreatedTime: Sep 02, 2024 18:17 +0000 + ResourceName: OU_OSCER_ATLAS + Services: + - CE + - GridFtp +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903010613 + Description: OSCER cluster maintenance + Severity: Outage + StartTime: Sep 04, 2024 13:00 +0000 + EndTime: Sep 05, 2024 04:00 +0000 + CreatedTime: Sep 02, 2024 18:17 +0000 + ResourceName: OU_OSCER_ATLAS_SE + Services: + - GridFtp + - XRootD component +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903010614 + Description: OSCER cluster maintenance + Severity: Outage + StartTime: Sep 04, 2024 13:00 +0000 + EndTime: Sep 05, 2024 04:00 +0000 + CreatedTime: Sep 02, 2024 18:17 +0000 + ResourceName: OU_OSCER_ATLAS_SLATE_SQUID + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1905606113 + Description: test downtime to check propagation to SAM/ETF + Severity: Outage + StartTime: Sep 05, 2024 19:00 +0000 + EndTime: Sep 05, 2024 19:30 +0000 + CreatedTime: Sep 05, 2024 18:23 +0000 + ResourceName: OU_OSCER_ATLAS + Services: + - CE + - GridFtp +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1905606114 + Description: test downtime to check propagation to SAM/ETF + Severity: Outage + StartTime: Sep 05, 2024 19:00 +0000 + EndTime: Sep 05, 2024 19:30 +0000 + CreatedTime: Sep 05, 2024 18:23 +0000 + ResourceName: OU_OSCER_ATLAS_SE + Services: + - GridFtp + - XRootD component +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1905606115 + Description: test downtime to check propagation to SAM/ETF + Severity: Outage + StartTime: Sep 05, 2024 19:00 +0000 + EndTime: Sep 05, 2024 19:30 +0000 + CreatedTime: Sep 05, 2024 18:23 +0000 + ResourceName: OU_OSCER_ATLAS_SLATE_SQUID + Services: + - Squid +# --------------------------------------------------------- diff --git a/topology/University of Pennsylvania/FACILITY.yaml b/topology/University of Pennsylvania/FACILITY.yaml index 5eac030c1..b70934621 100644 --- a/topology/University of Pennsylvania/FACILITY.yaml +++ b/topology/University of Pennsylvania/FACILITY.yaml @@ -1 +1,2 @@ ID: 10090 +InstitutionID: https://osg-htc.org/iid/nv2rjrft01gg diff --git a/topology/University of Pittsburgh/FACILITY.yaml b/topology/University of Pittsburgh/FACILITY.yaml index 59a7f7a2f..4eceeab70 100644 --- a/topology/University of Pittsburgh/FACILITY.yaml +++ b/topology/University of Pittsburgh/FACILITY.yaml @@ -1 +1,2 @@ ID: 10123 +InstitutionID: https://osg-htc.org/iid/2ayx10b74xua diff --git a/topology/University of Puerto Rico - Mayaguez/FACILITY.yaml b/topology/University of Puerto Rico - Mayaguez/FACILITY.yaml index 8759e074a..810803605 100644 --- a/topology/University of Puerto Rico - Mayaguez/FACILITY.yaml +++ b/topology/University of Puerto Rico - Mayaguez/FACILITY.yaml @@ -1 +1,2 @@ ID: 10098 +InstitutionID: https://osg-htc.org/iid/43gwnkrodhv9 diff --git a/topology/University of South Dakota/FACILITY.yaml b/topology/University of South Dakota/FACILITY.yaml index 01c1d2292..b9482a037 100644 --- a/topology/University of South Dakota/FACILITY.yaml +++ b/topology/University of South Dakota/FACILITY.yaml @@ -1 +1,2 @@ ID: 10158 +InstitutionID: https://osg-htc.org/iid/it45nx81xgfl diff --git a/topology/University of South Dakota/OSG_US_USD_LEGACY/OSG_US_USD_LEGACY.yaml b/topology/University of South Dakota/OSG_US_USD_LEGACY/OSG_US_USD_LEGACY.yaml index d6066d134..629063551 100644 --- a/topology/University of South Dakota/OSG_US_USD_LEGACY/OSG_US_USD_LEGACY.yaml +++ b/topology/University of South Dakota/OSG_US_USD_LEGACY/OSG_US_USD_LEGACY.yaml @@ -7,11 +7,11 @@ Resources: ContactLists: Administrative Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Security Contact: Primary: - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 Name: Lincoln Bryant Description: Hosted CE submitting to Legacy cluster at USD FQDN: pearc-ce-5.grid.uchicago.edu diff --git a/topology/University of South Florida/FACILITY.yaml b/topology/University of South Florida/FACILITY.yaml index 9488da655..b6400259b 100644 --- a/topology/University of South Florida/FACILITY.yaml +++ b/topology/University of South Florida/FACILITY.yaml @@ -1 +1,2 @@ ID: 10170 +InstitutionID: https://osg-htc.org/iid/ztzfsirofyrb diff --git a/topology/University of South Florida/University of South Florida/USF_SC.yaml b/topology/University of South Florida/University of South Florida/USF_SC.yaml index 02c5a622e..11b604c27 100644 --- a/topology/University of South Florida/University of South Florida/USF_SC.yaml +++ b/topology/University of South Florida/University of South Florida/USF_SC.yaml @@ -62,7 +62,7 @@ Resources: Details: hidden: false USF-SC: - Active: true + Active: false ID: 1460 Description: The Hosted CE serving SC ContactLists: diff --git a/topology/University of Southern California/FACILITY.yaml b/topology/University of Southern California/FACILITY.yaml index 06c950dd6..97de6b890 100644 --- a/topology/University of Southern California/FACILITY.yaml +++ b/topology/University of Southern California/FACILITY.yaml @@ -1 +1,2 @@ ID: 10162 +InstitutionID: https://osg-htc.org/iid/6edduwj65dlr diff --git a/topology/University of Tennessee Chattanooga/FACILITY.yaml b/topology/University of Tennessee Chattanooga/FACILITY.yaml index d85618e3a..735647240 100644 --- a/topology/University of Tennessee Chattanooga/FACILITY.yaml +++ b/topology/University of Tennessee Chattanooga/FACILITY.yaml @@ -1 +1,2 @@ ID: 10186 +InstitutionID: https://osg-htc.org/iid/4e79d27c93p7 diff --git a/topology/University of Texas Arlington/FACILITY.yaml b/topology/University of Texas Arlington/FACILITY.yaml index 9c72686ea..4492c6087 100644 --- a/topology/University of Texas Arlington/FACILITY.yaml +++ b/topology/University of Texas Arlington/FACILITY.yaml @@ -1 +1,2 @@ ID: 10044 +InstitutionID: https://osg-htc.org/iid/fcm0rnxmtcor diff --git a/topology/University of Texas Arlington/SWT2 ATLAS UTA/SWT2_CPB.yaml b/topology/University of Texas Arlington/SWT2 ATLAS UTA/SWT2_CPB.yaml index a2dcf0b85..e638ff293 100644 --- a/topology/University of Texas Arlington/SWT2 ATLAS UTA/SWT2_CPB.yaml +++ b/topology/University of Texas Arlington/SWT2 ATLAS UTA/SWT2_CPB.yaml @@ -264,4 +264,42 @@ Resources: endpoint: psuta01.atlas-swt2.org VOOwnership: ATLAS: 100 + SWT2_CPB_K8S: + Active: true + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000710 + Name: Armen Vartapetian + Secondary: + ID: 85358c47f16fad2a915da157353581016788a30a + Name: Mark Sosebee + Security Contact: + Primary: + ID: OSG1000710 + Name: Armen Vartapetian + Secondary: + ID: 85358c47f16fad2a915da157353581016788a30a + Name: Mark Sosebee + Description: ATLAS Tier2 Kubernetes queue + FQDN: cpb-k8s.atlas-swt2.org # placeholder + Services: + Execution Endpoint: + Description: Container-based ATLAS PanDA pilots + Details: + hidden: false + VOOwnership: + ATLAS: 100 + WLCGInformation: + APELNormalFactor: 12.52 + AccountingName: US-SWT2 + HEPSPEC: 102816 + InteropAccounting: true + InteropBDII: true + InteropMonitoring: true + KSI2KMax: 2086 + KSI2KMin: 2086 + StorageCapacityMax: 5000 + StorageCapacityMin: 5000 + TapeCapacity: 0 SupportCenter: USATLAS diff --git a/topology/University of Texas at Austin/FACILITY.yaml b/topology/University of Texas at Austin/FACILITY.yaml index 2d996d697..d72fc8af7 100644 --- a/topology/University of Texas at Austin/FACILITY.yaml +++ b/topology/University of Texas at Austin/FACILITY.yaml @@ -1 +1,2 @@ ID: 10184 +InstitutionID: https://osg-htc.org/iid/6z0d22dz19io diff --git a/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Stampede2.yaml b/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Stampede2.yaml index 841f8dd50..8b0e32a58 100644 --- a/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Stampede2.yaml +++ b/topology/University of Texas at Austin/Texas Advanced Computing Center/TACC-Stampede2.yaml @@ -93,7 +93,7 @@ Resources: hidden: false TACC-Stampede2-CE2: ID: 1179 - Active: true + Active: false Description: The Hosted CE serving TACC-Stampede2 ContactLists: Administrative Contact: diff --git a/topology/University of Texas at Dallas/FACILITY.yaml b/topology/University of Texas at Dallas/FACILITY.yaml index 6c133befd..9aafd8f3b 100644 --- a/topology/University of Texas at Dallas/FACILITY.yaml +++ b/topology/University of Texas at Dallas/FACILITY.yaml @@ -1 +1,2 @@ ID: 10064 +InstitutionID: https://osg-htc.org/iid/eouhp4r1y2e2 diff --git a/topology/University of Utah/FACILITY.yaml b/topology/University of Utah/FACILITY.yaml index bcd98e05e..3830f41ff 100644 --- a/topology/University of Utah/FACILITY.yaml +++ b/topology/University of Utah/FACILITY.yaml @@ -1 +1,2 @@ ID: 10146 +InstitutionID: https://osg-htc.org/iid/iwlonrroeaal diff --git a/topology/University of Virginia/FACILITY.yaml b/topology/University of Virginia/FACILITY.yaml index d6f6af697..c9723cb2d 100644 --- a/topology/University of Virginia/FACILITY.yaml +++ b/topology/University of Virginia/FACILITY.yaml @@ -1 +1,2 @@ ID: 10045 +InstitutionID: https://osg-htc.org/iid/qr5lr81ioeu4 diff --git a/topology/University of Washington/FACILITY.yaml b/topology/University of Washington/FACILITY.yaml index 0bb591080..ea863be24 100644 --- a/topology/University of Washington/FACILITY.yaml +++ b/topology/University of Washington/FACILITY.yaml @@ -1 +1,2 @@ ID: 10136 +InstitutionID: https://osg-htc.org/iid/8lpmoeouw66o diff --git a/topology/University of Wisconsin Milwaukee/FACILITY.yaml b/topology/University of Wisconsin Milwaukee/FACILITY.yaml index 06b89dd9f..771a6f49d 100644 --- a/topology/University of Wisconsin Milwaukee/FACILITY.yaml +++ b/topology/University of Wisconsin Milwaukee/FACILITY.yaml @@ -1 +1,2 @@ ID: 10046 +InstitutionID: https://osg-htc.org/iid/812rlsqwylrc diff --git a/topology/University of Wisconsin/CHTC/CHTC-DEV-PROD-EPS.yaml b/topology/University of Wisconsin/CHTC/CHTC-DEV-PROD-EPS.yaml index de7bb9398..82a7a1594 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-DEV-PROD-EPS.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-DEV-PROD-EPS.yaml @@ -28,4 +28,24 @@ Resources: Services: Execution Endpoint: Description: Execution Endpoint + + + CHTC-DEV-PROD-EP-mwestphall: + Active: true + Description: EP for testing in production for Matt W + ContactLists: + Administrative Contact: + Primary: + ID: OSG1000358 + Name: MATTHEW WESTPHALL + + Security Contact: + Primary: + ID: OSG1000358 + Name: MATTHEW WESTPHALL + + FQDN: dev-prod-ep.mwestphall.chtc.wisc.edu + Services: + Execution Endpoint: + Description: Execution Endpoint # ---------------------------------------------------------------------------- diff --git a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml index fc6d114db..ee3f278c7 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-ITB.yaml @@ -406,11 +406,8 @@ Resources: FQDN: itb-osdf-pelican-origin.osdf-dev.chtc.io DN: /CN=itb-osdf-pelican-origin.osdf-dev.chtc.io Services: - XRootD origin server: + Pelican origin: Description: ITB OSDF Pelican Origin - Details: - endpoint_override: itb-osdf-pelican-origin.osdf-dev.chtc.io:8443 - auth_endpoint_override: itb-osdf-pelican-origin.osdf-dev.chtc.io:8443 AllowedVOs: - GLOW @@ -443,10 +440,7 @@ Resources: FQDN: itb-osdf-pelican-cache.osdf-dev.chtc.io DN: /CN=itb-osdf-pelican-cache.osdf-dev.chtc.io Services: - XRootD cache server: + Pelican cache: Description: ITB OSDF Pelican Cache - Details: - endpoint_override: itb-osdf-pelican-cache.osdf-dev.chtc.io:8443 - auth_endpoint_override: itb-osdf-pelican-cache.osdf-dev.chtc.io:8443 AllowedVOs: - GLOW diff --git a/topology/University of Wisconsin/CHTC/CHTC-ITB_downtime.yaml b/topology/University of Wisconsin/CHTC/CHTC-ITB_downtime.yaml index 03a1a79bb..979f7aca9 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-ITB_downtime.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-ITB_downtime.yaml @@ -9,3 +9,14 @@ Services: - CE # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1903815939 + Description: Downtime to test Pelican topology downtime integration + Severity: Outage + StartTime: Sep 4, 2024 12:00 -0600 + EndTime: Sep 4, 2024 17:00 -0600 + CreatedTime: Sep 4, 2024 11:00 -0600 + ResourceName: CHTC-ITB-OSDF-PELICAN-ORIGIN + Services: + - Pelican origin +# --------------------------------------------------------- diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml index 4a2bae712..ab80b3eca 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF.yaml @@ -8,7 +8,7 @@ GroupID: 1359 Resources: CHTC_STASHCACHE_CACHE: Active: true - Description: This is a StashCache cache server at UW. + Description: This is a Pelican cache server at UW. ID: 958 ContactLists: Administrative Contact: @@ -28,18 +28,15 @@ Resources: FQDN: sc-cache.chtc.wisc.edu DN: /CN=sc-cache.chtc.wisc.edu Services: - XRootD cache server: - Description: StashCache cache server - Details: - endpoint_override: sc-cache.chtc.wisc.edu:8443 - auth_endpoint_override: sc-cache.chtc.wisc.edu:8443 + Pelican cache: + Description: Pelican cache server VOOwnership: GLOW: 100 AllowedVOs: - ANY CHTC_TIGER_CACHE: - Active: true + Active: false Description: This is a StashCache cache server at UW running on the Tiger Kubernetes cluster. ID: 1098 ContactLists: @@ -69,7 +66,7 @@ Resources: CHTC_STASHCACHE_ORIGIN: Active: true - Description: This is a StashCache origin server at UW. + Description: This is a Pelican origin server at UW serving /chtc/PUBLIC ID: 959 ContactLists: Administrative Contact: @@ -89,8 +86,8 @@ Resources: FQDN: sc-origin.chtc.wisc.edu DN: /CN=sc-origin.chtc.wisc.edu Services: - XRootD origin server: - Description: StashCache origin server + Pelican origin: + Description: Pelican origin server Details: endpoint_override: sc-origin.chtc.wisc.edu:1095 VOOwnership: @@ -240,10 +237,8 @@ Resources: FQDN: osdf-uw-cache.svc.osg-htc.org DN: /CN=osdf-uw-cache.svc.osg-htc.org Services: - XRootD cache server: + Pelican cache: Description: Pelican cache server - Details: - endpoint_override: osdf-uw-cache.svc.osg-htc.org:8443 VOOwnership: GLOW: 100 AllowedVOs: diff --git a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml index e313d1629..474f421c7 100644 --- a/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC-OSDF_downtime.yaml @@ -197,3 +197,36 @@ Services: - XRootD cache server # --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1860755453 + Description: slow + Severity: Intermittent Outage + StartTime: Jul 15, 2024 20:32 +0000 + EndTime: Aug 15, 2024 20:32 +0000 + CreatedTime: Jul 15, 2024 20:32 +0000 + ResourceName: CHTC_STASHCACHE_CACHE + Services: + - XRootD cache server +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1885765227 + Description: slow + Severity: Intermittent Outage + StartTime: Aug 13, 2024 19:15 +0000 + EndTime: Sep 13, 2024 19:15 +0000 + CreatedTime: Aug 13, 2024 19:15 +0000 + ResourceName: CHTC_STASHCACHE_CACHE + Services: + - Pelican cache +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1927923446 + Description: Cache is slow + Severity: Intermittent Outage + StartTime: Oct 01, 2024 14:18 +0000 + EndTime: Nov 15, 2024 14:19 +0000 + CreatedTime: Oct 01, 2024 14:19 +0000 + ResourceName: CHTC_STASHCACHE_CACHE + Services: + - Pelican cache +# --------------------------------------------------------- diff --git a/topology/University of Wisconsin/CHTC/CHTC-Spark_downtime.yaml b/topology/University of Wisconsin/CHTC/CHTC-Spark_downtime.yaml new file mode 100644 index 000000000..b084089ad --- /dev/null +++ b/topology/University of Wisconsin/CHTC/CHTC-Spark_downtime.yaml @@ -0,0 +1,12 @@ +# --------------------------------------------------------- +- Class: UNSCHEDULED + ID: 1927894276 + Description: Cluster software upgrades + Severity: Severe + StartTime: Oct 01, 2024 13:00 +0000 + EndTime: Oct 01, 2024 19:00 +0000 + CreatedTime: Oct 01, 2024 13:30 +0000 + ResourceName: CHTC-Spark-CE1 + Services: + - CE +# --------------------------------------------------------- diff --git a/topology/University of Wisconsin/CHTC/CHTC.yaml b/topology/University of Wisconsin/CHTC/CHTC.yaml index 49b8d3e5e..e8c4a0fb5 100644 --- a/topology/University of Wisconsin/CHTC/CHTC.yaml +++ b/topology/University of Wisconsin/CHTC/CHTC.yaml @@ -533,12 +533,8 @@ Resources: Description: OS Pool access point Details: hidden: false - XRootD origin server: + Pelican origin: Description: OSDF Pelican origin - Details: - hidden: false - endpoint_override: ospool-ap2140.chtc.wisc.edu:8443 - auth_endpoint_override: ospool-ap2140.chtc.wisc.edu:8443 Tags: - OSPool VOOwnership: diff --git a/topology/University of Wisconsin/FACILITY.yaml b/topology/University of Wisconsin/FACILITY.yaml index 11bce30ef..45c0e7c52 100644 --- a/topology/University of Wisconsin/FACILITY.yaml +++ b/topology/University of Wisconsin/FACILITY.yaml @@ -1 +1,2 @@ ID: 10011 +InstitutionID: https://osg-htc.org/iid/fq8thqsj99zh diff --git a/topology/University of Wisconsin/GLOW/GLOW_downtime.yaml b/topology/University of Wisconsin/GLOW/GLOW_downtime.yaml index a9288377b..5fd4af871 100644 --- a/topology/University of Wisconsin/GLOW/GLOW_downtime.yaml +++ b/topology/University of Wisconsin/GLOW/GLOW_downtime.yaml @@ -3270,3 +3270,231 @@ Services: - net.perfSONAR.Latency # --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950145 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950146 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW-CMS + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950147 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW-CMS-SE + Services: + - SRMv2 +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950148 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW-CONDOR-CE + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950149 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW-OSG + Services: + - CE +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950150 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SQUID + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950151 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SQUID1 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950152 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SQUID2 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950153 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SQUID3 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950154 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SQUID4 + Services: + - Squid +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950155 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT1 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950156 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT2 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950157 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT3 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950158 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT4 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950159 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT5 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950160 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT6 + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950161 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: GLOW_SUBMIT_CERN + Services: + - Submit Node +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950162 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: US-Wisconsin BW + Services: + - net.perfSONAR.Bandwidth +# --------------------------------------------------------- +- Class: SCHEDULED + ID: 1845950163 + Description: T2 storage management service upgrade combined with a complete network + outage + Severity: Intermittent Outage + StartTime: Jul 02, 2024 16:00 +0000 + EndTime: Jul 03, 2024 05:00 +0000 + CreatedTime: Jun 28, 2024 17:16 +0000 + ResourceName: US-Wisconsin LT + Services: + - net.perfSONAR.Latency +# --------------------------------------------------------- diff --git "a/topology/University of Wisconsin\342\200\223Eau Claire/FACILITY.yaml" "b/topology/University of Wisconsin\342\200\223Eau Claire/FACILITY.yaml" new file mode 100644 index 000000000..0b72fdb60 --- /dev/null +++ "b/topology/University of Wisconsin\342\200\223Eau Claire/FACILITY.yaml" @@ -0,0 +1 @@ +ID: 10220 diff --git "a/topology/University of Wisconsin\342\200\223Eau Claire/UW-Eau Claire LTS/SITE.yaml" "b/topology/University of Wisconsin\342\200\223Eau Claire/UW-Eau Claire LTS/SITE.yaml" new file mode 100644 index 000000000..11785eab8 --- /dev/null +++ "b/topology/University of Wisconsin\342\200\223Eau Claire/UW-Eau Claire LTS/SITE.yaml" @@ -0,0 +1,7 @@ +AddressLine1: 105 Garfield Ave +Country: United States +Description: Uw-Eau Claire +Latitude: 44.797951 +Longitude: -91.499620 +State: WI +Zipcode: '54701' diff --git "a/topology/University of Wisconsin\342\200\223Eau Claire/UW-Eau Claire LTS/UWEC-BOSE.yaml" "b/topology/University of Wisconsin\342\200\223Eau Claire/UW-Eau Claire LTS/UWEC-BOSE.yaml" new file mode 100644 index 000000000..624dbdbb1 --- /dev/null +++ "b/topology/University of Wisconsin\342\200\223Eau Claire/UW-Eau Claire LTS/UWEC-BOSE.yaml" @@ -0,0 +1,23 @@ +Production: true +SupportCenter: Self Supported + +GroupDescription: University of Wisconsin-Eau Claire + +Resources: + UWEC-BOSE-CE1: + Active: true + Description: Hosted CE serving UWEC + ContactLists: + Administrative Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + Security Contact: + Primary: + Name: Jeffrey Michael Dost + ID: 3a8eb6436a8b78ca50f7e93bb2a4d1f0141212ba + + FQDN: uwec-bose-ce1.svc.opensciencegrid.org + Services: + CE: + Description: Hosted CE diff --git a/topology/Vanderbilt University/FACILITY.yaml b/topology/Vanderbilt University/FACILITY.yaml index 12572e248..c54f95934 100644 --- a/topology/Vanderbilt University/FACILITY.yaml +++ b/topology/Vanderbilt University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10047 +InstitutionID: https://osg-htc.org/iid/7bgts07ydpxp diff --git a/topology/Villanova University/FACILITY.yaml b/topology/Villanova University/FACILITY.yaml index 773fa07b5..a427d4b82 100644 --- a/topology/Villanova University/FACILITY.yaml +++ b/topology/Villanova University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10192 +InstitutionID: https://osg-htc.org/iid/p5dkoevnrvt0 diff --git a/topology/Virginia Tech/FACILITY.yaml b/topology/Virginia Tech/FACILITY.yaml index 949b917db..2413cdc0b 100644 --- a/topology/Virginia Tech/FACILITY.yaml +++ b/topology/Virginia Tech/FACILITY.yaml @@ -1 +1,2 @@ ID: 10094 +InstitutionID: https://osg-htc.org/iid/6oylis0t2x6u diff --git a/topology/Wayne State University/FACILITY.yaml b/topology/Wayne State University/FACILITY.yaml index be3b805c5..92593c332 100644 --- a/topology/Wayne State University/FACILITY.yaml +++ b/topology/Wayne State University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10035 +InstitutionID: https://osg-htc.org/iid/d54pf46v5aqz diff --git a/topology/Wayne State University/OSG_US_WSU_GRID_ce2/OSG_US_WSU_GRID.yaml b/topology/Wayne State University/OSG_US_WSU_GRID_ce2/OSG_US_WSU_GRID.yaml index b625b544d..cb26223f8 100644 --- a/topology/Wayne State University/OSG_US_WSU_GRID_ce2/OSG_US_WSU_GRID.yaml +++ b/topology/Wayne State University/OSG_US_WSU_GRID_ce2/OSG_US_WSU_GRID.yaml @@ -48,7 +48,7 @@ Resources: ID: 68dfdc5967e11a1e1698ac3a8add1538fe15f1e8 Name: Serguei Fedorov Description: squid service for frontier and cvmfs - FQDN: vsgrid1.grid.wayne.edu + FQDN: vsquid1.grid.wayne.edu ID: 1026 Services: Squid: diff --git a/topology/Wayne State University/WSU - GRID_ce2/GRID_ce2.yaml b/topology/Wayne State University/WSU - GRID_ce2/GRID_ce2.yaml index a6d979ea1..752b5c389 100644 --- a/topology/Wayne State University/WSU - GRID_ce2/GRID_ce2.yaml +++ b/topology/Wayne State University/WSU - GRID_ce2/GRID_ce2.yaml @@ -5,7 +5,7 @@ GroupID: 521 GroupDescription: The WSU-GRID_ce2 cluster Resources: WSU-GRID: - Active: true + Active: false ID: 1099 Description: The SLATE Hosted CE serving WSU-GRID ContactLists: diff --git a/topology/West Texas A&M University/FACILITY.yaml b/topology/West Texas A&M University/FACILITY.yaml index 9ae746d48..b952f439d 100644 --- a/topology/West Texas A&M University/FACILITY.yaml +++ b/topology/West Texas A&M University/FACILITY.yaml @@ -1 +1,2 @@ ID: 10190 +InstitutionID: https://osg-htc.org/iid/840gqexf0mof diff --git a/topology/services.yaml b/topology/services.yaml index 16b3362f4..d07de83fb 100644 --- a/topology/services.yaml +++ b/topology/services.yaml @@ -26,6 +26,8 @@ perfsonar data store: 145 Connect: 149 XRootD origin server: 147 XRootD cache server: 156 +Pelican origin: 165 +Pelican cache: 164 XRootD HA component: 148 Virtual Machine Host: 150 Certificate Provider: 151 diff --git a/topology/support-centers.yaml b/topology/support-centers.yaml index 3082df1e9..93c12d34b 100644 --- a/topology/support-centers.yaml +++ b/topology/support-centers.yaml @@ -556,19 +556,19 @@ UChicago: Community: University of Chicago community, mainly the OSG and UC3 VOs Contacts: Notifications Contact: - - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + - ID: OSG1000013 Name: Lincoln Bryant - - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + - ID: OSG1000016 Name: Judith Stephen Operations Contact (Ticketing): - ID: b91e3cfae9edc5c8a636e41073e8a3b4752bff7f Name: Robert William Gardner Jr - - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + - ID: OSG1000013 Name: Lincoln Bryant Security Contact: - ID: b91e3cfae9edc5c8a636e41073e8a3b4752bff7f Name: Robert William Gardner Jr - - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + - ID: OSG1000013 Name: Lincoln Bryant Description: Support Center for the University of Chicago Campus Grid and ITB resources ID: 79 diff --git a/virtual-organizations/ATLAS.yaml b/virtual-organizations/ATLAS.yaml index fc6febead..904d5b38d 100644 --- a/virtual-organizations/ATLAS.yaml +++ b/virtual-organizations/ATLAS.yaml @@ -33,14 +33,14 @@ Credentials: Community: The ATLAS physics community. Contacts: Administrative Contact: - - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + - ID: OSG1000116 Name: Xin Zhao - ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring Security Contact: - ID: b48e7f038e5586a4c6bdc7515941f2decc359e7f Name: Shigeki Misawa - - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + - ID: OSG1000116 Name: Xin Zhao - ID: 3b1876c30549a51501329cbb9678289fc786ac29 Name: Frederick Luehring diff --git a/virtual-organizations/NRP.yaml b/virtual-organizations/NRP.yaml index 4010b14b3..7b331371e 100644 --- a/virtual-organizations/NRP.yaml +++ b/virtual-organizations/NRP.yaml @@ -58,14 +58,14 @@ DataFederations: Base Path: /nrp/protected/xenon-biggrid-nl/ Map Subject: False AllowedOrigins: - - SDSC_NRP_OSDF_ORIGIN + - SDSC_NRP_OSDF_XENON_ORIGIN AllowedCaches: - ANY - Path: /nrp/fdp/ Authorizations: - PUBLIC - SciTokens: - Issuer: https://t.nationalresearchplatform.org/fdp + Issuer: https://t.nationalresearchplatform.org/fdp-d3d Base Path: /nrp/fdp/ Map Subject: False AllowedOrigins: @@ -101,3 +101,43 @@ DataFederations: - SDSC_NRP_OSDF_ORIGIN AllowedCaches: - ANY + - Path: /fdp-d3d + Authorizations: + - PUBLIC + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/fdp-d3d + Base Path: /fdp-d3d + Map Subject: False + AllowedOrigins: + - FDP_OSDF_ORIGIN + AllowedCaches: + - ANY + - Path: /nrp/so + Authorizations: + - PUBLIC + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/so + Base Path: /nrp/so + Map Subject: False + AllowedOrigins: + - SDSC_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY + - Path: /nrp/sdsc + Authorizations: + - PUBLIC + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/sdsc + Base Path: /nrp/sdsc + Map Subject: False + AllowedOrigins: + - SDSC_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY + - Path: /nrp/osdf + Authorizations: + - PUBLIC + AllowedOrigins: + - SDSC_NRP_OSDF_ORIGIN + AllowedCaches: + - ANY diff --git a/virtual-organizations/OSG.yaml b/virtual-organizations/OSG.yaml index 1c32fbf01..e084f3f37 100644 --- a/virtual-organizations/OSG.yaml +++ b/virtual-organizations/OSG.yaml @@ -48,16 +48,16 @@ OASIS: - Name: Lincoln Bryant DNs: - /DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=lbryant/CN=738076/CN=Lincoln Bryant - ID: 0a22bab3de2d83d723811e3fb1ebca904e924a97 + ID: OSG1000013 - Name: Mats Rynge DNs: - /DC=org/DC=cilogon/C=US/O=University of Southern California/CN=Mats Rynge A91316 ID: 38cd7e4efcb45e2aff808b98f5f928c96b3a8608 OASISRepoURLs: - - http://cvmfs.xsede.org:8000/cvmfs/colorado.xsede.org - http://hcc-cvmfs-repo.unl.edu:8000/cvmfs/singularity.opensciencegrid.org - http://hcc-cvmfs-repo.unl.edu:8000/cvmfs/scitokens.osgstorage.org - http://hcc-cvmfs-repo.unl.edu:8000/cvmfs/sdsc-nrp-osdf-origin.osgstorage.org + - http://hcc-cvmfs-repo.unl.edu:8000/cvmfs/public-uc.osgstorage.org - http://osg-cvmfs.grid.uchicago.edu:8000/cvmfs/veritas.opensciencegrid.org - http://osg-cvmfs.grid.uchicago.edu:8000/cvmfs/nexo.opensciencegrid.org - http://osg-cvmfs.grid.uchicago.edu:8000/cvmfs/connect.opensciencegrid.org @@ -210,32 +210,36 @@ DataFederations: Issuer: https://ospool-ap2140.chtc.wisc.edu:8443 MaxScopeDepth: 4 - # SciTokens issuer for ap20 - - Path: /ospool/ap20/.well-known - Authorizations: - - PUBLIC - AllowedOrigins: - - UChicago_OSGConnect_ap20 - # Do not cache this: direct access only - AllowedCaches: [] + ### These scitokens issuers are intentionally unregistered: the xrootd + ### service serving them does not pull config from Topology, and the + ### data is not meant to be cached. - # SciTokens issuer for ap21 - - Path: /ospool/ap21/.well-known - Authorizations: - - PUBLIC - AllowedOrigins: - - UChicago_OSGConnect_ap21 - # Do not cache this: direct access only - AllowedCaches: [] + # # SciTokens issuer for ap20 + # - Path: /ospool/ap20/.well-known + # Authorizations: + # - PUBLIC + # AllowedOrigins: + # - UChicago_OSGConnect_ap20 + # # Do not cache this: direct access only + # AllowedCaches: [] - # SciTokens issuer for ap22 - - Path: /ospool/ap22/.well-known - Authorizations: - - PUBLIC - AllowedOrigins: - - UChicago_OSGConnect_ap22 - # Do not cache this: direct access only - AllowedCaches: [] + # # SciTokens issuer for ap21 + # - Path: /ospool/ap21/.well-known + # Authorizations: + # - PUBLIC + # AllowedOrigins: + # - UChicago_OSGConnect_ap21 + # # Do not cache this: direct access only + # AllowedCaches: [] + + # # SciTokens issuer for ap22 + # - Path: /ospool/ap22/.well-known + # Authorizations: + # - PUBLIC + # AllowedOrigins: + # - UChicago_OSGConnect_ap22 + # # Do not cache this: direct access only + # AllowedCaches: [] - Path: /ospool/uc-shared/project Authorizations: diff --git a/virtual-organizations/REPORTING_GROUPS.yaml b/virtual-organizations/REPORTING_GROUPS.yaml index 8b9fcbe89..e2c3bcfbb 100644 --- a/virtual-organizations/REPORTING_GROUPS.yaml +++ b/virtual-organizations/REPORTING_GROUPS.yaml @@ -139,9 +139,9 @@ atlas: Name: Horst Severini - ID: cc443308e844418f15bb019c1fadeaa1a640ff9e Name: Joel Snow - - ID: a688fe1904cfc91c2c5529eb898a13f9ebfbadbe + - ID: OSG1000116 Name: Xin Zhao - - ID: 4884a2d919bc5079022317a8403f84a117f2d25b + - ID: OSG1000710 Name: Armen Vartapetian FQANs: - GroupName: /atlas diff --git a/virtual-organizations/SPT.yaml b/virtual-organizations/SPT.yaml index 69973d7c6..fb61bce6a 100644 --- a/virtual-organizations/SPT.yaml +++ b/virtual-organizations/SPT.yaml @@ -13,7 +13,7 @@ Contacts: Miscellaneous Contact: - ID: 78ea3b6350f56c5004290f5df4ba427f6be79199 Name: Benedikt Riedel - - ID: a418fbc5dd33637bba264c01d84d52dd317f2813 + - ID: OSG1000016 Name: Judith Stephen - ID: d7ebadcbca04bf37b33f6183bea3245431eedf38 Name: Nathan Whitehorn diff --git a/virtual-organizations/UH.yaml b/virtual-organizations/UH.yaml index d757e213a..352f5b8c2 100644 --- a/virtual-organizations/UH.yaml +++ b/virtual-organizations/UH.yaml @@ -24,16 +24,20 @@ OASIS: DataFederations: StashCache: Namespaces: - - Path: /uhawaii/its + - Path: /uhitc Authorizations: - PUBLIC AllowedOrigins: - ITC_OSDF_ORIGIN AllowedCaches: - ANY - - Path: /uhawaii/koa/public + - Path: /uhkoa Authorizations: - PUBLIC + - SciTokens: + Issuer: https://t.nationalresearchplatform.org/uhkoa + Base Path: /uhkoa + Map Subject: False AllowedOrigins: - KOASTORE_OSDF_ORIGIN AllowedCaches: