npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@itentialopensource/archive-job-data

v0.0.17-2021.2.8

Published

[Deprecated] Pre-built to archive jobs and tasks collections

Downloads

46

Readme

Deprecation Notice

This Pre-Built has been deprecated as of 04-30-2024 and will be end of life on 04-30-2025. The capabilities of this Pre-Built have been replaced by the IAP - Workflow Utilities

Archive Job Data

Table of Contents

Overview

This pre-built allows IAP users to archive the jobs and tasks collections to keep IAP performant. It also allows the users to restore the archived jobs and tasks. Users have the ability to choose:

  1. The number of days older than which, all qualifying data will be archived.
  2. Custom names for the archive collections to store the matching jobs and tasks documents.
  3. To keep or delete the matching documents from the original jobs and tasks collections after backing them up.
  4. Restore the archived jobs and tasks documents and delete the archived collections.

Users can use the included Operations Manager item to schedule the pre-built to run at regular intervals.

Notes:

  1. For every run, new jobs and tasks collections would be created with the current timestamps appended to the end of the jobs and tasks collection names put in by the user.
  2. Only jobs and tasks related to jobs that are either in complete or canceled state will be considered for archiving. Jobs that are in errored or incomplete state will be left untouched.
  3. Getting an RangeError [ERR_OUT_OF_RANGE] typically indicates that your bundle size is too large. Try setting it lower within the automation catalog.
  4. Very large databases with a lot of jobs and tasks to archive will typically result in multiple archive collections within the database.

Installation Prerequisites

Users must satisfy the following prerequisites:

  • Itential Automation Platform
    • ^2021.2
  • Adapter DB Mongo
    • ^0.5.7

How to Install

To install Archive Job Data, verify you are running a supported version of Itential Automation Platform (IAP) as listed above in the Installation Prerequisites section. If you do not currently have App-Artifacts installed as a service on your node, the .tgz file or "tarball" can be obtained from the Nexus repository. Please refer to the instructions included in the App-Artifacts README to install it.

Archive Job Data can be installed from within Admin Essentials. Search for archive-job-data and click the Install button.

How to Run

Use the following steps to run the pre-built:

  1. Once the pre-built is installed as outlined in the How to Install section above, go to Operations Manager and run the Archive Jobs and Tasks Collections automation.
  2. In the Copy/Move Jobs data to Collection and the Copy/Move Tasks data to Collection fields, enter the names for collections you want the matching jobs and tasks collection documents to be copied to.
  3. In the Copy/Move data from before # days field, enter the number of days (from the current date) oolder than which you want data to be archived. Note: Please enter a positive number
  4. In the MongoDB Adapter dropdown menu, select the adapter that is connected the MongoDB that contains the Tasks and Jobs Collections that you want to create an archive of.
  5. In the Batch Size field, select how many jobs you want to archive at a time.
  6. Check the Create Archive Collections checkbox if you want to create an archive collection that will be stored in the MongoDB. Unchecking this box will mean no archive will be created.
  7. Check the Delete copied data from collections checkbox if you want to discard the matching documents from the original jobs and tasks collections after they have been backed up.
  8. Check the Verbose checkbox if you want to see the results of the pre-built at the end of its run and click on START and then on VIEW JOB.

To restore the archived jobs and tasks, run the Restore Archived Jobs and Tasks workflow.

Note: The adapter ID for mongoDB in all the respective tasks of the workflow must be changed accordingly.

Inputs

The inputs for the pre-built are outlined in the following table. To run the workflow directly from IAP/API call (and not through Operations Manager), please encapsulate all of these inputs into a root object with the key formData.

Inputs for Restore Archived Jobs and Tasks workflow are defined below:

Sample Input for the overall Pre-Built:

{
  "formData": {
    "createArchiveCollections": true,
    "deleteCopiedDataFromCollections": true,
    "verbose": true,
    "copyMoveJobsDataToCollection": "jobs_archive",
    "mongoDbAdapter": "mongoPronghorn",
    "copyMoveDataOlderThanDays": 3,
    "copyMoveTasksDataToCollection": "tasks_archive",
    "batchSize": 2000,

  }
}

Sample Input for the Restore Archived Jobs and Tasks workflow:

{
	"deleteFromArchiveCollections": true,
	"archiveJobsCollectionName": "Archive_Jobs_2023-08-03T21:17:11.079Z",
	"archiveTasksCollectionName": "Archive_Tasks_2023-08-03T21:17:11.079Z",
	"numberOfArchivedCollections": 9
}

Additional Information

Please use your Itential Customer Success account if you need support when using this Pre-Built.