Alejandro Rodríguezalerodriguez.dev·Nov 13, 2024Lesson Learned #01: Cloud Run with Cloud Pub/SubProject Context I’ve been working on a system built with a microservices architecture that uses Google Cloud Pub/Sub and Cloud Run to manage notifications and keep a continuous NLP analysis flow running smoothly. Each microservice has a specific role...Discuss·2 likes·40 readsPubSub
Stefan Skorpenblog.skorp.io·Oct 5, 2024Add a trigger in postgres to make a slugA post in Affill.io, the SaaS I’m making, can have a customizable slug as its URL. But only if the post is made from a subscribed account, if its a free account the slug will be the posts id. If I just make a new row for the free accounts post I woul...DiscussSQL
Ejan Shresthaijanggmu.hashnode.dev·Aug 20, 2024Trigger in PostgresThe trigger is a function that invokes automatically when an event associated with a table occurs like an update, delete, or insert. Triggers can be defined to execute either at the statement level or the row level. Statement-level triggers: Stateme...Discuss·73 readsadvance database
Dinesh Kumar Kblog.dineshcloud.in·Aug 5, 2024Jenkins Build Trigger & Queuing jobs (Upstream, Downstream)Build Trigger Jenkins build triggers are mechanisms that automatically initiate a build job based on specific conditions or events. These triggers can be time-based, event-driven, or manually activated. By configuring build triggers, you can reduce ...Discuss·43 readsDevOpsJenkins
Prakhar Kumarprakhartechinsights.hashnode.dev·Apr 30, 2024Maximizing Workflow Efficiency with Connectors and Triggers in Power AutomateMicrosoft Power Automate is a game-changer in the realm of automation and workflow management, providing organizations with the tools they need to streamline processes, boost productivity, and drive innovation. At the heart of Power Automate's functi...DiscussPower Platform By Prakhar Kumar PowerPlatform
Rohit kumarrohitkumar0.hashnode.dev·Apr 30, 2024Cursors and Trigger in SQLIn SQL, cursors are used to retrieve and manipulate data row by row, typically within stored procedures or functions:- While cursors can be powerful tools so they should be use judiciously as they can have performance implications and especially wi...DiscussSQL
Prashanth Gowda G Rpgr.hashnode.dev·Dec 13, 2023Static Webpage deployment using Git-Jenkins-Docker-NginxInstall Jenkins using the below commands for Ubuntu 22.04 apt-get update apt install openjdk-11-jre curl -fsSL https://pkg.jenkins.io/debian/jenkins.io-2023.key | sudo tee \ /usr/share/keyrings/jenkins-keyring.asc > /dev/null echo deb ...Discuss·139 readsGit
Anuj Singhanujsingh.hashnode.dev·Oct 10, 2023Database triggers Or TypeORM subscribersDatabase Tiggers Let's establish a few things first I have worked only with the Postgres database so things might be a little different with other databases. Before we begin, let me explain a little about triggers, In simple terms it is just a functi...Discuss·1 like·755 readsdatabase
Aryan Agrawalblog.aryankuag.live·Aug 3, 2023How to create collections in MongoDB Compass with Pre-image support💤If you need 'fullDocumentBeforeChange' support in your triggers in change Events then you need to enable this feature while creating the collection. For Single Collection Creation with Pre-image support👩🏼🤝👨🏻 We'll write commands to this area....Discuss·11 likes·63 readsMongoDB
Ashutosh Mahajanashutoshamblogs.hashnode.dev·Apr 25, 2023Exploring the Power of Jenkins Declarative Pipeline for Continuous Integration and Delivery📍 Introduction Jenkins is a popular open-source automation server used for continuous integration and continuous delivery (CI/CD) pipelines. One of the main features of Jenkins is its Pipeline plugin, which allows users to define their build pipelin...Discuss·48 readsJenkins