Gathering detailed insights and metrics for aws-analytics-reference-architecture
Gathering detailed insights and metrics for aws-analytics-reference-architecture
npm install aws-analytics-reference-architecture
Typescript
Module System
Node Version
NPM Version
63.2
Supply Chain
88.1
Quality
76.1
Maintenance
50
Vulnerability
73.6
License
TypeScript (50.75%)
Python (24.81%)
Java (14.46%)
Scala (7.02%)
PLpgSQL (1.82%)
JavaScript (1.07%)
Batchfile (0.03%)
Shell (0.02%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
164,865
Last Day
33
Last Week
415
Last Month
1,627
Last Year
71,162
NOASSERTION License
158 Stars
358 Commits
45 Forks
8 Watchers
24 Branches
36 Contributors
Updated on Nov 15, 2024
Minified
Minified + Gzipped
Latest Version
2.12.13
Package Id
aws-analytics-reference-architecture@2.12.13
Unpacked Size
403.46 MB
Size
117.28 MB
File Count
10,969
NPM Version
9.8.0
Node Version
20.5.1
Published on
Feb 29, 2024
Cumulative downloads
Total Downloads
Last Day
0%
33
Compared to previous day
Last Week
59.6%
415
Compared to previous week
Last Month
-23.8%
1,627
Compared to previous month
Last Year
30%
71,162
Compared to previous year
7
4
38
The AWS Analytics Reference Architecture is a set of analytics solutions put together as end-to-end examples. It regroups AWS best practices for designing, implementing, and operating analytics platforms through different purpose-built patterns, handling common requirements, and solving customers' challenges.
This project is composed of:
This documentation explains how to get started with the core components of the AWS Analytics Reference Architecture.
1export ACCOUNT_ID=$(aws sts get-caller-identity --query Account --output text) 2export AWS_REGION=eu-west-1 3cdk bootstrap aws://$ACCOUNT_ID/$AWS_REGION
1mkdir my_demo 2cd my_demo 3cdk init app --language python 4python3 -m venv .env 5source .env/bin/activate
1aws-cdk-lib==2.51.0 2constructs>=10.0.0,<11.0.0 3aws_analytics_reference_architecture>=2.0.0
1python -m pip install -r requirements.txt
1import aws_analytics_reference_architecture as ara
1 # Create a new DataLakeStorage with Raw, Clean and Transform buckets configured with data lake best practices 2 storage = ara.DataLakeStorage (self,"storage")
1 # Create a new DataLakeCatalog with Raw, Clean and Transform databases 2 catalog = ara.DataLakeCatalog (self,"catalog")
1 # Generate the Sales Data 2 sales_data = ara.BatchReplayer( 3 scope=self, 4 id="sale-data", 5 dataset=ara.PreparedDataset.RETAIL_1_GB_STORE_SALE, 6 sink_object_key="sale", 7 sink_bucket=storage.raw_bucket, 8 ) 9
1 # Generate the Customer Data 2 customer_data = ara.BatchReplayer( 3 scope=self, 4 id="customer-data", 5 dataset=ara.PreparedDataset.RETAIL_1_GB_CUSTOMER, 6 sink_object_key="customer", 7 sink_bucket=storage.raw_bucket, 8 ) 9
1 # Configure defaults for Athena console 2 athena_defaults = ara.AthenaDemoSetup(scope=self, id="demo_setup")
1 # Configure a default role for AWS Glue jobs 2 ara.GlueDemoRole.get_or_create(self)
Deploy the AWS CDK application
1cdk deploy
The time to deploy the application is depending on the constructs you are using
Delete the AWS CDK application
1cdk destroy
More contructs, helpers and datasets are available in the AWS Analytics Reference Architecture. See the full API specification here
Please refer to the contributing guidelines and contributing FAQ for details.
The documentation is made available under the Creative Commons Attribution-ShareAlike 4.0 International License. See the LICENSE file.
The sample code within this documentation is made available under the MIT-0 license. See the LICENSE-SAMPLECODE file.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 4/12 approved changesets -- score normalized to 3
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
141 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-10
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More