Category Archives: Big Data Hadoop

Enhancing WooCommerce API Endpoints with Custom Taxonomy and shortcode at another site.

Posted on by Chandan

In this post we will discuss how to include custom taxonomies in WooCommerce API Endpoints. Also We used this custom taxonomy at another site posts. I used a shortcode to implement this, so that it will be better usable.  Here is a comprehensive guide. Introduction: WooCommerce, a widely-used e-commerce solution for WordPress, provides a powerful […]

AWS Lambda Layer Essentials: Python Libraries to Optimize Your Serverless Stack

Posted on by Sumit Kumar

Hello Everyone, AWS Lambda is phasing out support for Python 3.7 following Python 3.7 reaching its End-Of-Life on June 27, 2023. To ensure the smooth operation of your functions, AWS strongly advises upgrading your Python 3.7 functions to Python 3.10 or Python 3.11 before November 27, 2023. AWS follows a two-stage process for ending support […]

AWS_Interview questions

Posted on by hrithik kharvi

1)Difference between Dedicated Host and Dedicated Instances A dedicated host gives you your private physical server, while dedicated instances reserve a secure space for your virtual computers within a shared server. 2) Range of Private IP i)Class A (10.0.0.0 to 10.255.255.255): This allows for approximately 16.8 million unique host addresses. The entire 10.0.0.0/8 range is […]

Kinesis_firehose_example

Posted on by Sumit Kumar

sudo yum install –y aws-kinesis-agent cd /etc/aws-kinesis/ sudo vi agent.json sudo service aws-kinesis-agent start sudo chkconfig aws-kinesis-agent on python3 LogGenerator.py 1000 cd /var/log/aws-kinesis-agent/ tail -f aws-kinesis-agent.log [ec2-user@ip-172-31-24-247 aws-kinesis]$ cat agent.json { “cloudwatch.emitMetrics”: true, “kinesis.endpoint”: “”, “firehose.endpoint”: “”, “flows”: [ { “filePattern”: “/home/ec2-user/*.log*”, “deliveryStream”: “kinesis_log_s3” } ] } ######### import names import random import time import […]