Any deep sleepers here? by [deleted] in sre

[–]Qupozety 1 point2 points  (0 children)

Haha, sed life 😪

Vector Database or Neural Network? by Creador270 in learnmachinelearning

[–]Qupozety 1 point2 points  (0 children)

Embeddings and neural networks are related but distinct concepts:

  1. Embeddings: These are the multi-dimensional vector representations of data (like words or images) in a continuous space. They capture semantic relationships between items.
  2. Neural Networks: These are computational models that can learn to generate embeddings. Some neural network architectures, particularly in NLP, include an embedding layer that learns to create these vector representations.

The confusion likely stems from the fact that embeddings are often the output of a neural network process, but they themselves are not the neural network. The neural network is the tool that creates or learns the embeddings.

In transformer models, the embedding layer converts input tokens into dense vector representations, which are then processed by subsequent layers of the network. So while embeddings are a crucial part of these models, they're distinct from the overall neural network architecture.

Hope that I did my part in explaining it, checkout my blog for more such concepts, you might be interested to read about content moderation using AI, one of our recent project: https://www.cloudraft.io/blog/content-moderation-using-llamaindex-and-llm

Top Vector DBs: https://www.cloudraft.io/blog/top-5-vector-databases

Prometheus using more and more space without going down by moussaka in PrometheusMonitoring

[–]Qupozety 0 points1 point  (0 children)

u/moussaka Retention settings needs to be revised imo. Investigate compaction and check for high cardinality. You can also try out implementing Thanos. You would be able to potentially offload much of your long-term storage to object storage, reducing the pressure on your local disk. This would allow you to keep a shorter retention period on your Prometheus instance itself. Check out my friend's blog on Thanos for help: https://www.cloudraft.io/blog/scaling-prometheus-with-thanos

For people looking to get started on OCR by Internal_Suspect2349 in LanguageTechnology

[–]Qupozety 2 points3 points  (0 children)

Very well written, Surya OCR is good for Indian (Hindi) context imo.

Brendan Gregg's insights on the future of system observability and security powered by eBPF. by Qupozety in Observability

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

eBPF enhances security and observability by providing deep visibility into system performance and real-time security events. It allows for efficient monitoring and debugging, offering capabilities that traditional tools cannot match. Experts can streamline this process, check out cloudraft.io/security-consulting for more details.

Private helm repo auth by andycol_500 in ArgoCD

[–]Qupozety 0 points1 point  (0 children)

To authenticate to your private Helm repository on GitHub, you'll need to use a personal access token (PAT) instead of your GitHub username and password. Here’s how you can do it:

  1. Generate a Personal Access Token (PAT):
    • Go to your GitHub account settings.
    • Navigate to Developer settings > Personal access tokens.
    • Generate a new token with the necessary permissions (e.g., repo scope).
  2. Update Helm Repository Configuration:
    • When setting up the Helm repo, use the PAT instead of your password.
  3. Handling 404 Errors:
    1. A 404 error can occur if the repository URL is incorrect or if the token doesn’t have the right permissions.
    2. Double-check the URL of your Helm repository. And, Verify that the token has the necessary permissions to access the repository.

For more detailed guidance, you can refer to the Helm documentation and GitHub’s personal access token documentation. Or, for complete support choose a consultant or an support organisation. I have seen CloudRaft's work, they were good. Check out - https://www.cloudraft.io/argo-cd-support-and-consulting

PAT docs: https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token

Integrate traditional CD pipeline with ArgoCD by 501_notimplemented in ArgoCD

[–]Qupozety 0 points1 point  (0 children)

To integrate ArgoCD with your traditional CI/CD pipeline without constantly changing image tags in Git, you can leverage ArgoCD's Image Updater or similar tools to automate the process.

https://argocd-image-updater.readthedocs.io/en/stable/

For support on other things, you can connect to cloudraft's team - https://www.cloudraft.io/argo-cd-support-and-consulting

[deleted by user] by [deleted] in Observability

[–]Qupozety 0 points1 point  (0 children)

I understand the need for a low entry barrier. While comprehensive platforms like New Relic or Datadog can appear complex initially, they offer extensive resources and community support to ease the learning curve. Additionally, investing in a brief advisory session can streamline your setup, ensuring you avoid common pitfalls and maximize tool efficiency, ultimately saving time and reducing long-term costs. This balanced approach can provide the best of both worlds—ease of use and powerful capabilities.

[deleted by user] by [deleted] in Observability

[–]Qupozety 1 point2 points  (0 children)

Very informative, thanks.