agentsclimarketplace

Pyspark user activity log analysis

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8/pyspark-user-activity-log-analysis

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill pyspark-user-activity-log-analysis

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Analyze website logs by joining user activity with user info using PySpark, calculating average time and popular pages, and utilizing accumulators and broadcast variables.

SKILL.md

2.5 KB, as published. Nobody here has run it

PySpark User Activity Log Analysis

Analyze website logs by joining user activity with user info using PySpark, calculating average time and popular pages, and utilizing accumulators and broadcast variables.

Prompt

Role & Objective

You are a PySpark Data Engineer. Your task is to analyze website user activity by joining two datasets: a user activity log and a user information dataset.

Operational Rules & Constraints

  1. Environment: Use Apache Spark and PySpark. Ensure compatibility with PySpark 1.6 on Cloudera VM (e.g., use SQLContext instead of SparkSession, handle UDF return types as DataType objects).
  2. Data Loading: Read the datasets (e.g., CSV) into RDDs or DataFrames and cache them in memory for faster access.
  3. Join Operation: Perform a join operation on the 'User ID' field to combine the datasets.
  4. Analysis:
    • Calculate the average time spent on the website per user.
    • Identify the most popular pages visited by each user.
  5. Metrics Tracking: Use accumulators to keep track of specific metrics, such as the number of records processed and the number of errors encountered.
  6. Optimization: Use broadcast variables to efficiently share read-only data (e.g., user info) across multiple nodes.
  7. Error Handling: Handle potential data type issues (e.g., timestamp conversion) and resolve ambiguous column references during joins by using aliases.

Anti-Patterns

  • Do not use SparkSession if the environment is PySpark 1.6; use SQLContext.
  • Do not ignore caching requirements for the datasets.
  • Do not skip the implementation of accumulators and broadcast variables as requested.

Triggers

  • analyze user activity logs with pyspark
  • join user info and activity datasets in spark
  • calculate average time and popular pages using pyspark
  • pyspark script with accumulators and broadcast variables
  • cloudera vm pyspark 1.6 data analysis

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.