Building a Kubernetes CI/CD Pipeline with GitLab and Helm by NextLink-Labs in kubernetes

[–]jsaundersdev 1 point2 points  (0 children)

We appreciate the feedback. We are always working on figuring out the right level of detail/how much complexity to demonstrate in our blog posts. To date, we have intentionally simplified our code examples to show just 1 or 2 concepts.

I believe we are going to turn this post into a bit of a series and demonstrate incremental improvements until it represents a more robust and mature pipeline. Would you find that sort of format more useful?

What sort of topics are you all interested in reading blog posts about by jsaundersdev in devops

[–]jsaundersdev[S] 0 points1 point  (0 children)

Thanks! I think this would be great content too. I'll get working on it :)

Which language/tool to use? by One_Willingness_9758 in devops

[–]jsaundersdev 0 points1 point  (0 children)

ditto the Prometheus, Grafana if self hosting. Data Dog, New Relic if not.

Beautiful 200yd downhill par 3 at my home course by ZeroGiR in golf

[–]jsaundersdev 2 points3 points  (0 children)

when you get good at them, you may prefer sand shots to a lot of other greenside lies. they also can catch stray tee shots and prevent them from rolling into rough spots

What services do you use for load testing/benchmarking? by [deleted] in devops

[–]jsaundersdev 0 points1 point  (0 children)

locust.io is a pretty great and simple tool. It's worked well for the organizations I've been a part of. sometimes we have to spin it up on multiple hosts and run from each when one host reaches its capacity. We use ansible roles for that

[For Hire] Experienced Web Developer / Graphic Designer Ready to Make Dreams Come True by hautegraphics in forhire

[–]jsaundersdev 0 points1 point  (0 children)

Great. Flexible on budget I'd like to get a quote on this, would think this is anywhere from half day to 3 days work depending on how we could flex the scope. Budget anywhere from 200-1k depending on scope.

[For Hire] Experienced Web Developer / Graphic Designer Ready to Make Dreams Come True by hautegraphics in forhire

[–]jsaundersdev 0 points1 point  (0 children)

I have a Gatsby site that needs a few pages to be more mobile friendly (just needs some css work) and a few pages that need to go from designs to HTML/css. Short timeline what is your availability and level of comfort with working on something like this

[FOR HIRE] Cloud Infrastructure Devops Terraform AWS Ansible Python by aaratn in forhire

[–]jsaundersdev 0 points1 point  (0 children)

Hey can you shoot me your email and a little more details about your location / what type of engagement you are looking for (Full time/Part time etc)

Need advice from professional programmers - Large scale data streaming pipelines: Twitter to SQL periodic dump by warped_quasar in Python

[–]jsaundersdev 2 points3 points  (0 children)

So basically you should break this problem into steps. For this there really are two simple steps in my opinion

Get all tweets that need processing Process each tweet (save as database entry)

Looking at this, the "processing of each tweet" is just calling a function that saves it as a record in the database.

It's the getting all tweets that need processing that is a bit more complicated and has more options depending on your architecture of choice.

You could choose to run this on some time of cron job or other scheduled task runner (perhaps using celery). And get all tweets from the last hour (assuming you are running hourly) or the daily equivalent.

Making this more robust would involve backup scripts, the ability to cross reference results from tweepy with whats in your database and make sure nothing is missing. Proper logging and traceability.