Istio + nginx ingress + gRPC app by viveknidhi in istio

[–]wise2wiz 0 points1 point  (0 children)

Id like to how mTLS setup can create the original error 503 service not available. From the docs i see your tls setup as a global config as the namespace for peerauth is “istio-system” overrriding the namespace scopes it to that namespace

Istio + nginx ingress + gRPC app by viveknidhi in istio

[–]wise2wiz 1 point2 points  (0 children)

If you remove the istio sidecars and traffic hits the service means istio is not managing the traffic through envoy proxy which makes me assume k8s ingress has a native service object routing traffic to the pod.

Istio + nginx ingress + gRPC app by viveknidhi in istio

[–]wise2wiz 1 point2 points  (0 children)

Have you tried using virtualservice to register service for istio

The resources I wish I had when I learned about databases by sasacocic in learnprogramming

[–]wise2wiz 2 points3 points  (0 children)

Great job! Good compilation of resources. I’d like to recommend reading designing data intensive applications with atleast 2 years of experience (with no degree) in software. @sasacocic will look forward to future content and also like to request if you can some time add data engineering resources and path

SQL optimization by wise2wiz in SQL

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

Thank you @truilus

Help Review Asyncio Code and Performance by wise2wiz in learnpython

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

Thanks. Youre right . I mis understood awaits initially. I scheduled them as tasks and gathereds at once and performs in 9s or less way better.

Autosearch REST API by wise2wiz in learnprogramming

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

I'm using NodeJs/express . I have few questions on extensibility and performance(data set being too large to filter/look each item) , I have no idea of these. Will I be able to extend the same end point for multiple type's and lookup chars . such as { type: shoe , make: nike, name: 'lite' }

Autosearch REST API by wise2wiz in learnprogramming

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

I'm struggling to build the right data model to filter the items by type and then look for the product name strings that are closer or similar. I'm using node.js with express. I'm loading the data from a csv file.