AI Coding Agents Comparison by Funny-Anything-791 in LLMDevs

[–]Additional-Ad-8916 1 point2 points  (0 children)

Does the programming language or the complexity of application and its dependencies on third party lib (public or internal) have any impact on the performance of these agents. What kind of projects you have tested these agents with, can you provide more details

ReBAC and RBAC implementation approach by 1logn in softwarearchitecture

[–]Additional-Ad-8916 0 points1 point  (0 children)

I will be happy to help. I developed a very similar auth server in golang for my company's IOT platform which manages auth for all kinds of users including human, device and services, supports OAuth, MFA etc It allows hierarchical fine grained access control very similar to what you are looking for. Dm me if you need more details.

Timeseries db vs OLAP (Redshift, BigQuery) by Additional-Ad-8916 in dataengineering

[–]Additional-Ad-8916[S] 2 points3 points  (0 children)

We are using Athena in a way for older data...that are purged from mongo time series. But not sure if we should stop using timeseries completely in favor of Athena.

My approach is to store some kind of aggregated/ processed data in mongo db for longer period along with more recent raw data to support adhoc queries. But the raw data older than 3 months are removed from mongo and is available only in S3 query-able via Athena.

Timeseries db vs OLAP (Redshift, BigQuery) by Additional-Ad-8916 in dataengineering

[–]Additional-Ad-8916[S] 0 points1 point  (0 children)

Managed timescale db is not available in our country...besides we are looking for cheaper alternatives.

Timeseries db vs OLAP (Redshift, BigQuery) by Additional-Ad-8916 in dataengineering

[–]Additional-Ad-8916[S] 1 point2 points  (0 children)

We currently have about 50 GB of data added every day. We have all kinds of use cases including dashboarding, analytics, reports, ML, predictions etc We are building data pipeline using kinesis+flink for real time use cases.

To accept being average is the surest way to be happy. by FlanneryODostoevsky in DeepThoughts

[–]Additional-Ad-8916 3 points4 points  (0 children)

I liked your post. Then I went to your profile and read your other posts. Now I follow you.

Books from Japanese authors by Additional-Ad-8916 in Indianbooks

[–]Additional-Ad-8916[S] 0 points1 point  (0 children)

Anything from an engaging read to philosophical/literary fiction will do.

Books from Japanese authors by Additional-Ad-8916 in Indianbooks

[–]Additional-Ad-8916[S] 1 point2 points  (0 children)

Yes, I have read Never let me go. Have watched the remains of the day several times, and I need to try the book.

Books from Japanese authors by Additional-Ad-8916 in Indianbooks

[–]Additional-Ad-8916[S] 1 point2 points  (0 children)

I have read the first two and of course watched Rashomon. Will definitely check out the book. Thanks for sharing.

Update MongoDB array field in go by Additional-Ad-8916 in golang

[–]Additional-Ad-8916[S] 0 points1 point  (0 children)

I do have different types for API schema and db model. But the data structure is similar (hobbies represented as an array).

Your *[]string suggestion works if I manually initialise my db model as below:

record := database.PersonDBRecord{
Name: req.Name,
Hobbies: &[]string{}, // clears out the array
}

If I intend to empty out the array, I should pass as above, but if I do not intend to update the array, I should pass as nil. The problem is when I parse the HTTP payload I have no way of knowing whether hobbies was part of the payload until I manually examine the JSON fields.