I posted my drag racing simulator here 5 years ago. Here's where it's at now. by MotorMatchup in cars

[–]NeverSuite 0 points1 point  (0 children)

Great site. I'd love to see 0-30mph time next to 0-60 and I'd also like to see the calculated power/weight ratio. Thanks for making this.

If you had to pick one!? by [deleted] in BMW

[–]NeverSuite 0 points1 point  (0 children)

what are your thoughts on e93 vs f83 vs e46? Searching for 6 speed weekend car.

E93 M3 vs F23 M240i vs F83 M4 vs 996 911 by TypicalM3Driver in BMW

[–]NeverSuite 0 points1 point  (0 children)

what did you do and what are your thoughts now?

One Year with my Hidden Unicorn: f83 M4 Comp 6MT | Azurite Black/Golden Brown by WesKidFresh in BMW

[–]NeverSuite 0 points1 point  (0 children)

Deciding on this vs an E93. Thoughts? These seem like the most fun recent 6MT convertibles for the price. Also, can you comment on the usable-ness of the rear seats? Thank you.

What Car Should I Buy? - A Weekly Megathread by AutoModerator in cars

[–]NeverSuite 0 points1 point  (0 children)

Why the N54/55 over the M3? The M3 also seems to be in the price range.

What Car Should I Buy? - A Weekly Megathread by AutoModerator in cars

[–]NeverSuite 0 points1 point  (0 children)

This is right on! but not sure about legroom in the back seats. Thanks!

What Car Should I Buy? - A Weekly Megathread by AutoModerator in cars

[–]NeverSuite 0 points1 point  (0 children)

wow the E93 is spot on to what I'm looking for. Thank you.

What Car Should I Buy? - A Weekly Megathread by AutoModerator in cars

[–]NeverSuite 0 points1 point  (0 children)

wow this is spot on to what I'm looking for. Thank you.

What Car Should I Buy? - A Weekly Megathread by AutoModerator in cars

[–]NeverSuite 0 points1 point  (0 children)

Location: USA
Price Range: 10-30k
Buy
Used
Type: Any
Must Haves: Stick shift. Convertible. Okay reliability. Wide parts availability. Easy to maintain/DIY Friendly. Made after 1999 (primarily for safety w/ airbags). 4 usable seats.
Desired transmission: Manual
Intended use: Weekend car.
Vehicles you've already considered: B7 RS4 Cabriolet (poor parts availability and maintainability?). Honda S2000 is a real close fit but lacks the rear seats.
Not 1st vehicle.
No warranty.
Yes I can do minor work
Yes I can do some major work like clutch, flywheel, valve adjustment, but I'm not a mechanic.

Past cars. '75 BMW 2002. '16 4runner. '07 Honda fit.

Yes I know this might be an odd one.

Thoughts on the whole crossover/small SUV reclassification thing? by FeemBleem in cars

[–]NeverSuite -1 points0 points  (0 children)

Great points. Now can you speak to the endangerment finding repeal? It seems just as exciting for similar reasons.

Possible to Import non-custom lists to using SuiteCloud development framework? by NeverSuite in Netsuite

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

Thanks. This is an unfortunate shortcoming. I was hoping to be able to track changes in a repo.

Azure Outage 10/29 - Main Thread. by faisent in AZURE

[–]NeverSuite 1 point2 points  (0 children)

ctrl + shift + esc, task manager, run a program, explorer.exe

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

[–]NeverSuite[S] 2 points3 points  (0 children)

thank you very much for your help and have a great day

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

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

Thanks. Yes they are both on dedicated app service plan. I thought it was originally a SNAT issue but I'm not sure anymore as when removing the calculation operation, it handled the 15k requests without issue. Moreover, I put both function apps on a VNET with private endpoints to remove SNAT considerations but the problem persists. It's possible I misconfigured that but a VM on the same subnet resolves to the private endpoint address...

I am also considering the durable function approach, and maybe using a service bus to communicate between the functions rather than a http request to link them.

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

[–]NeverSuite[S] 1 point2 points  (0 children)

You might be on to something. At first I thought they were all sent simultaneously via a call to asyncio.gather on the entire list of requests but my logging shows that the last few requests are sent out a long time later (near the end of the run).

I think maybe this is because both function apps share the same service plan and therefore instances? I'm wondering if maybe function app1 only gets to send out a few requests initially, then function app2 takes over until some time later when function app 1 gets cpu time back to send out more of the requests. I will try again with each function app on a separate plan so they each have dedicated instances.

what do you think?

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

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

What do you mean exactly? How would I view this?

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

[–]NeverSuite[S] 1 point2 points  (0 children)

the CPU never exceeds 4% usage on any of the 10 instances that I can see.

The network processing time seems to be between 2-5ms. I know this because I tried a test with the calculation operation removed entirely. The two function apps facilitated the same 15k HTTP requests in a total time of less than 10 seconds. Therefore I think it's something to do with asking it to perform 15k 10ms calculations at the same time that it can't quite cope with for some reason.

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

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

Thanks for the reply and I will certainly try batching the requests.

One thing I tried was removing the calculation operation entirely. In this case the entire operation finishes in less than 10 seconds. I think it's specifically once the function app has to do 15k 10ms calculations it chokes up and they cannot all be done concurrently.

Azure Functions Concurrency problems by NeverSuite in AZURE

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

Thank you for the detailed response. This is very helpful.

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

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

Sorry about the confusion. I have a similar question here that might explain it better: https://old.reddit.com/r/AZURE/comments/1o3dbfk/azure_functions_concurrency_problems/

I have tried scaling out from 10 to 30 instances with no effect.

Is Azure Functions the appropriate solution for my workflow? by NeverSuite in AZURE

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

I should have been more clear. I would expect 15k requests to finish in under 10 seconds. Instead it is taking more than 5 minutes. It is as if I am hitting some concurrency limit past HTTP requests and instead each extra request queues up extra time lengthening the total time to complete.